:root {
    --mdo-black: #231f20;
    --mdo-orange: #f36c21;
    --mdo-white: #ffffff;
    --helwig-avocado: #686232;
    --mdo-content-width: 1200px;

    --font-content: avenir-next-world, sans-serif;
    --font-ui: bahnschrift, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-content);
    background: var(--mdo-white);
    color: var(--mdo-black);
}

.site-container {
    width: min(100% - 40px, var(--mdo-content-width));
    margin-inline: auto;
}

.site-header {
    background: var(--mdo-black);
    color: var(--mdo-white);
}

.header-brand-strip {
    padding-top: 18px;
}

.brand-strip-inner {
    display: flex;
    justify-content: flex-start;
}

.brand-family {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

/* MDO */

.brand-logo-mdo {
    height: 25px;
    transform: translateY(2px);
}

/* =========================
   BRAND LOGO COLOR SWAPS
========================= */

.brand-logo-swap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-swap .brand-logo-hover {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity 0.2s ease;
}

.brand-logo-swap .brand-logo-default {
    opacity: 1;

    transition: opacity 0.2s ease;
}


/* Default logos are white */

.brand-logo-swap .brand-logo-default {
    filter: brightness(0) invert(1);
}


/* Reveal official color logo */

.brand-link:hover .brand-logo-default {
    opacity: 0;
}

.brand-link:hover .brand-logo-hover {
    opacity: 1;
}


/* BO ANGLES */

.boangles-logo-wrap {
    position: relative;
    display: block;
    height: 29px;
}

.boangles-logo-wrap .brand-logo {
    height: 29px;
}

.boangles-color {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.boangles-white {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.brand-link-boangles:hover .boangles-white {
    opacity: 0;
}

.brand-link-boangles:hover .boangles-color {
    opacity: 1;
}


/* HELWIG */

.brand-logo-helwig {
    height: 15px;
    transform: translateY(2px);
}

/* Helwig green hover */

.header-main {
    padding: 12px 0 10px;
    margin-top: -32px;
}

.header-main-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-search {
    grid-column: 2;
    margin-top: 18px;
    width: 420px;
    max-width: 100%;
    position: relative;
    z-index: 6000;
}

.mobile-brand-menu {
    display: none;
}

.mdo-search-form {
    display: flex;
    width: 100%;
    height: 34px;
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
}

.mdo-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 12px;
    background: transparent;
    color: #333333;
    font-size: 13px;
}

.mdo-search-input::placeholder {
    color: #9b9b9b;
}

.mdo-search-button {
    width: 38px;
    flex: 0 0 38px;
    border: 0;
    background: #ffffff;
    color: #777777;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mdo-search-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.mdo-search-button:hover {
    color: var(--mdo-orange);
}

body.mdo-search-open {
    overflow: hidden;
}

.mdo-live-search-panel {
    overflow-y: auto;
}

/* =========================
   LIVE SITE SEARCH
========================= */

.mdo-live-search-panel {
    position: fixed;
    z-index: 5900;

    width: min(575px, calc(100% - 40px));
    padding: 40px 16px 18px;

    background: #dddddd;
    border-radius: 12px 12px;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.22);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-12px)
        scaleY(0.88);

    transform-origin: top center;

    transition:
        opacity 0.16s ease,
        transform 0.22s ease,
        visibility 0s linear 0.22s;
}

.mdo-live-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0)
        scaleY(1);

    transition:
        opacity 0.16s ease,
        transform 0.22s ease,
        visibility 0s;
}


.mdo-live-search-top {
    position: sticky;
    top: -40px;

    height: 50px;
    margin-top: -43px;

    margin-left: -16px;
    margin-right: -16px;

    padding-left: 16px;
    padding-right: 16px;

    z-index: 20;

    background: #dddddd;

    box-shadow:
        0 16px 10px -6px rgba(221, 221, 221, 1),
        0 27px 22px -10px rgba(221, 221, 221, 0.85);
}

.mdo-live-search-back {
    position: absolute;
    top: 15px;
    left: 12px;

    width: 28px;
    height: 28px;

    padding: 0;

    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;

    appearance: none;
    -webkit-appearance: none;

    color: #666666;
    transition: color 0.15s ease;

    z-index: 2;
}

.mdo-live-search-back:hover {
    color: var(--mdo-orange);
}

.mdo-live-search-back svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mdo-live-search-back:hover,
.mdo-live-search-back:focus {
    background: transparent;
    box-shadow: none;
}

.mdo-live-search-back:hover,
.mdo-live-search-back:focus-visible {
    color: var(--mdo-orange);
}

.mdo-live-search-form {
    display: none;
}

.mdo-live-search-input {
    flex: 1;
    min-width: 0;

    padding: 0 14px;

    border: 0;
    outline: 0;
    background: transparent;

    color: var(--mdo-black);
    font-family: var(--font-content);
    font-size: 16px;
}

.mdo-live-search-submit {
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: #ffffff;

    color: #999999;
    cursor: pointer;
}

.mdo-live-search-submit svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}


.mdo-live-search-section {
    padding: 16px 0;

    border-bottom: 1px solid #aaaaaa;
}

.mdo-live-search-section:last-child {
    padding-bottom: 16px 0;
}

.mdo-live-search-section h2 {
    margin: 0;

    color: #666666;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;

    text-transform: uppercase;
}

.mdo-live-search-results:empty {
    display: none;
}

.mdo-live-search-result {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;

    margin-top: 14px;

    color: var(--mdo-black);
    text-decoration: none;
}


.mdo-live-search-result-image {
    width: 180px;
    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.mdo-live-search-result-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.mdo-live-search-result-content {
    min-width: 0;
}


.mdo-live-search-result-category {
    margin-bottom: 5px;

    color: var(--mdo-orange);

    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
}


.mdo-live-search-result-title {
    margin-bottom: 8px;

    color: var(--mdo-black);

    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}


.mdo-live-search-result-meta {
    color: #777777;

    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
}


.mdo-live-search-result:hover
.mdo-live-search-result-title {
    color: var(--mdo-orange);
}

.mdo-search-input::-webkit-search-cancel-button,
.mdo-live-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;

    width: 10px;
    height: 10px;

    cursor: pointer;

    background:
        linear-gradient(
            45deg,
            transparent 42%,
            #888888 42%,
            #888888 58%,
            transparent 48%
        ),
        linear-gradient(
            -45deg,
            transparent 42%,
            #888888 42%,
            #888888 58%,
            transparent 48%
        );
}

.site-logo {
    grid-column: 2;
    display: block;
    justify-self: center;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.primary-navigation {
    padding: 10px 0 18px;
}

.primary-menu {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-ui);
    font-weight: 600;
}

.primary-menu a {
    color: var(--mdo-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.primary-menu a:hover {
    color: var(--mdo-orange);
}

.header-accent {
    height: 3px;
    background: var(--mdo-orange);
}

.mobile-menu-toggle,
.mobile-search-toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--mdo-white);
    font-size: 24px;
    cursor: pointer;
}

.about-menu-item {
    position: relative;
}

.about-menu-toggle {
    padding: 0;
    border: 0;
    background: none;

    color: var(--mdo-white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.about-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;

    width: 200px;
    padding: 0;

    background: #4b4546;
    border: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;

    z-index: 1100;
}

.about-menu-dropdown a {
    display: block;

    padding: 11px 16px;

    color: var(--mdo-white);
    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #3c393a;
}

.about-menu-dropdown a:last-child {
    border-bottom: 0;
}

.about-menu-dropdown a:hover,
.about-menu-dropdown a:focus-visible {
    background: var(--mdo-orange);
    color: var(--mdo-white);
}

.about-menu-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   COMPACT DESKTOP HEADER
   ========================= */

.compact-header {
    display: none;
}

.compact-header.search-active {
    z-index: 6000;
}

@media (min-width: 1024px) {

    .compact-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;

        display: block;
        height: 72px;

        background: var(--mdo-black);
        border-bottom: 2px solid var(--mdo-orange);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);

        transition:
            transform 0.28s ease,
            opacity 0.22s ease,
            visibility 0s linear 0.28s;

        pointer-events: none;
    }

    .compact-header.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);

        transition:
            transform 0.28s ease,
            opacity 0.22s ease,
            visibility 0s;

        pointer-events: auto;
    }


    /* Inner layout */

    .compact-header-inner {
        position: relative;
        height: 100%;
    }

    /* Logo */

    .compact-header-logo {
        position: absolute;
        left: 0;
        top: 50%;
    
        display: block;
        text-decoration: none;
    
        opacity: 0;
        transform: translateY(calc(-50% - 12px));
    
        transition:
            opacity 0.25s ease 0.06s,
            transform 0.30s ease 0.06s;
    }
    
    .compact-header.is-visible .compact-header-logo {
        opacity: 1;
        transform: translateY(-50%);
    }

    .compact-header-logo img {
        display: block;
        width: 175px;
        height: auto;
        max-height: 64px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }


    /* Search */

    .compact-search-form {
        position: absolute;
        left: 50%;
        top: 50%;
    
        display: flex;
        width: min(100%, 600px);
        height: 40px;
    
        margin: 0;
    
        background: #ffffff;
        border-radius: 3px;
        overflow: hidden;
    
        transform: translate(-50%, -50%);
    }

    .compact-search-input {
        flex: 1;
        min-width: 0;

        padding: 0 14px;

        border: 0;
        outline: 0;

        background: transparent;

        color: #333333;
        font-family: var(--font-content);
        font-size: 14px;
    }

    .compact-search-input::placeholder {
        color: #999999;
    }

    .compact-search-button {
        width: 42px;
        flex: 0 0 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        background: #ffffff;
        color: #777777;

        cursor: pointer;
    }

    .compact-search-button:hover {
        color: var(--mdo-orange);
    }

    .compact-search-icon {
        width: 18px;
        height: 18px;

        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    /* Account for WordPress admin bar while logged in */

    body.admin-bar .compact-header {
        top: 32px;
    }

}

/* FEATURED ARTICLE */

.featured-article-section {
    background: #f4f4f4;
    padding: 52px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: center;
}

.featured-article-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.featured-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-content {
    max-width: 500px;
}

.featured-article-label {
    margin: 0;
    color: var(--mdo-orange);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-article-title {
    margin: 10px 0 5px 0;
    color: var(--mdo-black);
    font-family: var(--font-content);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.featured-article-title a {
    color: inherit;
    text-decoration: none;
}

.featured-article-author {
    margin-bottom: 0px;
    color: #666666;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-article-excerpt {
    margin: 0 0 22px;
    color: #444444;
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

/* =========================
   SINGLE ARTICLE
   ========================= */

.article-page {
    background: var(--mdo-white);
}

.article-single {
    padding: 16px 0 56px;
}

.article-header {
    text-align: center;
    margin-bottom: 16px;
}

.article-category {
    margin-bottom: 8px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--mdo-orange);
    text-transform: uppercase;
}

.article-category a {
    color: inherit;
    text-decoration: none;
}

.article-title {
    max-width: 1100px;
    margin: 0 auto 10px;
    font-family: var(--font-content);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
}

.article-hero {
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 24px;
}

.article-author-avatar img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.article-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.article-author {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.article-date {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    color: #777777;
    text-transform: uppercase;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 50px;
    row-gap: 0;
    align-items: start;
    margin-top: 20px;
}

.article-content p {
    margin: 0 0 22px;
    font-family: var(--font-content);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--mdo-black);
}

.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.article-content figure {
    margin: 28px 0;
}

.article-sidebar {
    width: 100%;
    position: sticky;
    top: 88px;
    align-self: start;
}

.article-side-image {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid #000000;
}

.article-side-image img {
    display: block;
    width: 100%;
    height: auto;
}

.article-related {
    margin-top: 32px;
}

.article-related-heading {
    margin: 0 0 12px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.article-related-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 300 / 170;
    margin-bottom: 14px;
    overflow: hidden;
    color: var(--mdo-white);
    text-decoration: none;
}

.article-related-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.2) 52%,
        rgba(0, 0, 0, 0.88) 100%
    );
}

.article-related-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
}

.article-related-title {
    margin: 0 0 5px;
    font-family: var(--font-content);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--mdo-white);
}

.article-related-author {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    color: var(--mdo-white);
    text-transform: uppercase;
}

.mdo-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--mdo-orange);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.mdo-button:hover {
    background: #d95c18;
}

/* =========================
   MORE ARTICLES FOR YOU
   ========================= */

   .more-articles-section {
    background: #dddddd;
    padding: 42px 0 52px;
}

.section-title {
    margin: 0 0 14px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.more-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.more-articles-right {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 22px;
}

.article-card {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    padding: 16px;
}

.article-card > a {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-card > a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 12px 0 0;
}

.article-card-category {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--mdo-orange);
    text-transform: uppercase;
}

.article-card-title {
    margin: 8px 0 4px 0;
    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--mdo-black);
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-author {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
}


/* Top-right horizontal card */

.article-card-wide {
    display: grid;
    grid-template-columns: 46% 1fr;
    align-items: start;
}

.article-card-wide .article-card-content {
    padding: 0 0 0 16px;
}


/* Two smaller cards */

.article-card-small-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.article-card-small .article-card-title {
    font-size: 18px;
}

.section-see-more {
    display: table;
    margin: 28px auto 0;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    color: var(--mdo-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}

.section-see-more:hover {
    color: var(--mdo-orange);
}

/* =========================
   FEATURED VIDEOS
   ========================= */

   .featured-videos-section {
    background: var(--mdo-black);
    padding: 42px 0 52px;
}

.featured-videos-heading {
    margin: 0 0 14px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--mdo-orange);
    text-align: left;
    text-transform: uppercase;
}

.featured-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.featured-videos-left {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 22px;
}

.featured-videos-small-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.video-card {
    display: block;
    background: #514d4e;
    color: var(--mdo-white);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    padding: 16px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumbnail > img:first-child {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
}

.video-card-content {
    padding-top: 12px;
}

.video-card-category {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    color: var(--mdo-orange);
    text-transform: uppercase;
}

.video-card-title {
    margin: 8px 0 6px 0;
    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--mdo-white);
}

.video-card-channel {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: #c5c1c2;
    text-transform: uppercase;
}

/* Top-left horizontal card */

.video-card-wide {
    display: grid;
    grid-template-columns: 46% 1fr;
    gap: 16px;
    align-items: start;
}

.video-card-wide .video-card-content {
    padding-top: 0;
}

/* Two smaller cards */

.video-card-small .video-card-title {
    font-size: 17px;
}

/* Large featured video */

.video-card-large .video-card-title {
    font-size: 24px;
}

.featured-videos-see-more {
    color: var(--mdo-white);
}

.featured-videos-see-more:hover {
    color: var(--mdo-orange);
}

/* =========================
   THE BUCKET LIST
   ========================= */

.bucket-list-section {
    background: #eeeeee;
    padding: 42px 0 52px;
}

.bucket-list-heading {
    margin: 0 0 14px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.bucket-list-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.bucket-list-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

.bucket-card {
    position: relative;
    flex: 0 0 auto;
    height: 360px;
    overflow: hidden;
    text-decoration: none;
    color: var(--mdo-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    scroll-snap-align: start;
}

.bucket-card-vertical {
    width: 300px;
}

.bucket-card-wide {
    width: 640px;
}

.bucket-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bucket-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.18) 62%,
        rgba(0, 0, 0, 0.78) 100%
    );
    pointer-events: none;
}

.bucket-card-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
}

.bucket-card-overlay h3 {
    margin: 0 0 12px;
    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--mdo-white);
    text-transform: uppercase;
}

.bucket-card-button {
    display: inline-block;
    padding: 10px 18px;
    background: var(--mdo-orange);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--mdo-white);
    text-transform: uppercase;
}

.bucket-list-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--mdo-orange);
    color: var(--mdo-white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bucket-list-arrow-prev {
    left: -17px;
}

.bucket-list-arrow-next {
    right: -17px;
}

.bucket-list-arrow:hover {
    background: #d95c18;
}

.bucket-list-arrow.is-hidden,
.travel-arrow.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

    /* Swipe indicators are only used on tablet/mobile */

.bucket-swipe-indicator {
    display: none;
}

/* =========================
   TRAVEL
   ========================= */

   .travel-section {
    background: #dddddd;
    padding: 42px 0 52px;
}

.travel-heading {
    margin: 0 0 14px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.travel-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.travel-track {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

.travel-track::-webkit-scrollbar {
    display: none;
}

.travel-card {
    flex: 0 0 282px;
    background: #ffffff;
    padding: 14px;
    color: var(--mdo-black);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    scroll-snap-align: start;
    overflow: hidden;
}

.travel-card img {
    display: block;
    width: 100%;
    height: 254px;
    object-fit: cover;
}

.travel-card-content {
    padding-top: 12px;
}

.travel-card-title {
    margin: 4px 0 2px;
    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--mdo-black);
}

.travel-card-tagline {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    color: var(--mdo-orange);
    text-transform: uppercase;
}

.travel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--mdo-orange);
    color: var(--mdo-white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-arrow-prev {
    left: -17px;
}

.travel-arrow-next {
    right: -17px;
}

.travel-arrow:hover {
    background: #d95c18;
}

/* Swipe indicators only appear on tablet/mobile */

.travel-swipe-indicator {
    display: none;
}

/* =========================
   FOOTER
   ========================= */

   .site-footer {
    background: var(--mdo-black);
    color: var(--mdo-white);
    padding-top: 42px;
}


/* Logo */

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.footer-logo img {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}


/* Main footer columns */

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: center;
    column-gap: 120px;
    width: 100%;
    margin-inline: auto;
    padding-bottom: 42px;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    margin: 0 0 10px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    color: var(--mdo-white);
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-content);
    font-size: 15px;
    font-weight: 400;
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--mdo-orange);
}

.footer-column-toggle {
    display: block;
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--mdo-white);
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
}

.footer-column-chevron {
    display: none;
}

.footer-column-links {
    display: block;
}

/* Bottom footer bar */

.footer-bottom {
    background: #111111;
}

.footer-bottom-inner {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    justify-self: start;
    font-family: var(--font-content);
    font-size: 14px;
    color: #999999;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: var(--font-content);
    font-size: 14px;
    color: #999999;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: var(--mdo-orange);
}

/* Temporary social icons */

.footer-social-icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icons a {
    display: block;
    width: 20px;
    height: 20px;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.footer-social-icons img {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.mobile-article-promo {
    display: none;
}

.article-related-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 50px;
}

.article-related-bottom {
    grid-column: 1;
    margin-top: 48px;
    width: 100%;
}

.article-related-bottom-heading {
    margin: 0 0 18px;
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 700;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.article-related-bottom-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;

    padding: 16px 0;

    border-bottom: 1px solid #dddddd;

    color: var(--mdo-black);
    text-decoration: none;
}

.article-related-bottom-card:last-child {
    border-bottom: none;
}

.article-related-bottom-card:first-of-type {
    padding-top: 0;
}

.article-related-bottom-image {
    width: 160px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-related-bottom-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-bottom-content {
    min-width: 0;
    margin-top: -5px;
}

.article-related-bottom-category {
    margin-bottom: 5px;

    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;

    color: var(--mdo-orange);
    text-transform: uppercase;
}

.article-related-bottom-title {
    margin: 0 0 6px;

    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;

    color: var(--mdo-black);
}

.article-related-bottom-excerpt {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #777777;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    
}

/* =========================
   ARTICLES PAGE
   ========================= */

.articles-page-heading {
    background: #eeeeee;
    padding: 26px 0;
}

.articles-page-heading h1 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 38px;
    font-weight: 700;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.articles-page-content {
    background: #dddddd;
    padding: 34px 0 52px;
}

.articles-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.articles-latest-card,
.articles-archive-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

.articles-latest-image,
.articles-archive-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.articles-latest-image img,
.articles-archive-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-latest-content {
    padding: 16px;
}

.articles-card-category {
    margin-bottom: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--mdo-orange);
    text-transform: uppercase;
}

.articles-latest-title {
    margin: 0 0 8px;
    font-family: var(--font-content);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
}

.articles-latest-title a,
.articles-archive-title a {
    color: inherit;
    text-decoration: none;
}

.articles-card-author {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
}

.articles-banner-promo {
    display: block;
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid #000000;
    box-sizing: border-box;
}

.articles-banner-promo img {
    display: block;
    width: 100%;
    height: auto;
}

.articles-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.articles-archive-content {
    padding: 14px;
}

.articles-archive-title {
    margin: 0 0 7px;
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

/* =========================
   ARTICLES FILTER
   ========================= */

.articles-filter {
    background: #ffffff;
    border-bottom: 1px solid #d0d0d0;
}

.articles-filter .site-container {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.articles-filter-link {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

    color: var(--mdo-black);
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.articles-filter-link:hover {
    color: var(--mdo-orange);
}

.articles-filter-link.is-active {
    color: var(--mdo-orange);
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-sidebar-related .article-related-card {
    display: block;
    border-radius: 6px;
    overflow: hidden;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.video-sidebar-related .article-related-card img {
    display: block;
    width: 100%;
    height: auto;
}

.video-sidebar-related .article-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.video-page .article-related-card::after {
    display: none;
}

.video-related-divider {
    width: 100%;
    height: 6px;
    margin: 32px 0;
    background: #eeeeee;
}

.video-page .article-related-bottom {
    width: 100%;
    margin-top: 0;
}

.video-sidebar-related .article-related-card img {
    display: block;
    width: 100%;
    height: auto;
}

.video-sidebar-related .article-related-card,
.video-page .article-related-bottom-image {
    position: relative;
}

.video-thumbnail-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);

    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;

    pointer-events: none;
}

/* Play triangle */
.video-thumbnail-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;

    transform: translate(-50%, -50%);

    width: 0;
    height: 0;

    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ffffff;
}

.video-page .article-related-bottom-image .video-thumbnail-play {
    width: 28px;
    height: 28px;
}

.video-page .article-related-bottom-image .video-thumbnail-play::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
}

.video-sidebar-related .video-thumbnail-play {
    top: 10px;
    right: 10px;
    left: auto;

    width: 40px;
    height: 40px;

    transform: none;
    border: 1px solid #dadada;
}

.video-sidebar-related .video-thumbnail-play::after {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
}

.videos-page .articles-latest-image,
.videos-page .articles-archive-image {
    position: relative;
}

/* =========================
   PARTNERSHIPS PAGE
========================= */

.partnership-hero {
    position: relative;

    width: 100vw;
    height: 450px;

    margin-left: calc(50% - 50vw);

    overflow: hidden;
}

.partnership-hero picture {
    display: block;
    width: 100%;
    height: 100%
}

.partnership-hero img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.partnership-intro {
    padding: 40px 0 32px;
}

.partnership-intro h1 {
    margin: 0 0 18px;
    font-family: var(--font-content);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--mdo-black);
    text-transform: uppercase;
}

.partnership-intro p {
    margin: 0 0 14px;
    font-family: var(--font-content);
    font-size: 17px;
    line-height: 1.5;
    color: #444444;
}

.partnership-intro p:last-child {
    margin-bottom: 0;
}

/* =========================
   PARTNERSHIP FORM
========================= */

.partnership-form-section {
    padding: 10px 0 64px;
}

.partnership-section-heading {
    margin: 0 0 6px;

    font-family: var(--font-content);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.partnership-section-intro {
    margin: 0 0 26px;

    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;

    color: #555555;
}

.partnership-form-wrap {
    border: 1px solid #d8d8d8;
    background: #ffffff;
}

.partnership-form-title {
    margin: 0;
    padding: 18px 22px;

    border-bottom: 1px solid #d8d8d8;
    border-top: 5px solid var(--mdo-orange);

    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 700;

    color: var(--mdo-black);
}

.partnership-form {
    padding: 28px 22px 30px;
}

.partnership-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

    margin-bottom: 22px;
}

.partnership-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-bottom: 22px;
}

.partnership-form-field label,
.partnership-form-field legend {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.partnership-form-field label span,
.partnership-form-field legend span {
    color: var(--mdo-orange);
}

.partnership-form-field input,
.partnership-form-field select,
.partnership-form-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #cfcfcf;
    background: #ffffff;

    font-family: var(--font-content);
    font-size: 16px;
    color: var(--mdo-black);

    box-sizing: border-box;
}

.partnership-form-field textarea {
    resize: vertical;
}

.partnership-form-options {
    padding: 0;
    border: 0;
}

.partnership-form-options legend {
    margin-bottom: 12px;
}

.partnership-form-options label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;

    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;

    text-transform: none;
}

.partnership-form-options input {
    width: auto;
}

.partnership-form-submit {
    padding: 13px 22px;

    border: 0;
    background: var(--mdo-orange);

    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
    text-transform: uppercase;

    cursor: pointer;
}

.partnership-form-submit:hover {
    background: var(--mdo-black);
}

.partnership-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.partnership-form-message {
    margin: 0 0 24px;
    padding: 18px 20px;

    border-left: 5px solid var(--mdo-orange);
    background: #f4f4f4;

    font-family: var(--font-content);
    color: var(--mdo-black);
}

.partnership-form-message strong {
    display: block;
    margin-bottom: 4px;

    font-family: var(--font-ui);
    font-size: 16px;
}

.partnership-form-message p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.partnership-form-message.is-error {
    border-left-color: #b3261e;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-main {
    padding: 52px 0 64px;
}

.contact-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-header h1 {
    margin: 0 0 10px;

    font-family: var(--font-content);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.contact-header p {
    margin: 0;

    font-family: var(--font-content);
    font-size: 17px;
    line-height: 1.5;

    color: #555555;
}

.contact-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

/* Partnership CTA */

.contact-partnership-cta {
    padding: 48px 0 52px;

    background: #eeeeee;
    text-align: center;
}

.contact-partnership-cta h2 {
    margin: 0 0 10px;

    font-family: var(--font-content);
    font-size: 28px;
    font-weight: 700;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.contact-partnership-cta p {
    margin: 0 0 22px;

    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;

    color: #555555;
}

/* =========================
   MDO SAFETY TOGGLE
========================= */

.mdo-safety-control {
    margin: 4px 0 16px;
}

.mdo-safety-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 0;
    border: 0;
    background: none;

    font-family: var(--font-content);
    font-size: 15px;
    font-style: italic;
    color: var(--mdo-black);

    cursor: pointer;
}

.mdo-safety-indicator {
    position: relative;

    width: 23px;
    height: 23px;

    border: 2px solid var(--mdo-black);
    border-radius: 50%;

    box-sizing: border-box;
}

/* Red indicator when safety is off */

.mdo-safety-toggle.is-off .mdo-safety-indicator::after {
    content: "";

    position: absolute;
    inset: 3px;

    border-radius: 50%;
    background: #c62828;
}

/* Submit button while safety is ON */

.partnership-form-submit:disabled {
    background: #aaaaaa;
    cursor: not-allowed;
    opacity: 1;
}

/* Enabled button */

.partnership-form-submit:not(:disabled) {
    background: var(--mdo-orange);
    cursor: pointer;
}

.partnership-form-submit:not(:disabled):hover {
    background: var(--mdo-black);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-content {
    padding: 56px 0 72px;
}

.legal-header {
    margin-bottom: 42px;
}

.legal-header h1 {
    margin: 0 0 8px;

    font-family: var(--font-content);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.legal-updated {
    margin: 0;

    font-family: var(--font-content);
    font-size: 14px;
    line-height: 1.5;

    color: #777777;
}

.legal-body {
    max-width: 1200px;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 12px;

    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.legal-section h3 {
    margin: 24px 0 8px;

    font-family: var(--font-content);
    font-size: 17px;
    font-weight: 700;

    color: var(--mdo-black);
}

.legal-section p,
.legal-section li {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.65;

    color: #444444;
}

.legal-section p {
    margin: 0 0 14px;
}

.legal-section ul {
    margin: 8px 0 18px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 7px;
}

.legal-section a {
    color: var(--mdo-orange);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--mdo-black);
}

/* =========================
   OUR BRANDS PAGE
========================= */

.brands-intro {
    padding: 52px 0 34px;
}

.brands-header h1 {
    margin: 0 0 18px;

    font-family: var(--font-content);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.brands-header p {
    margin: 0;

    font-family: var(--font-content);
    font-size: 17px;
    line-height: 1.6;

    color: #444444;
}


/* Grid */

.brands-grid-section {
    padding: 0 0 72px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}


/* Card */

.brand-card {
    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid #dddddd;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* Logo area */

.brand-card-logo {
    position: relative;

    height: 210px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;

    cursor: pointer;
}

.brand-card-logo-image {
    position: absolute;

    max-width: 72%;
    max-height: 125px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.brand-logo-mono {
    opacity: 1;
}

.brand-logo-color {
    opacity: 0;
}


/* Desktop hover */

@media (min-width: 1024px) {

    .brand-card-logo:hover .brand-logo-mono {
        opacity: 0;
    }

    .brand-card-logo:hover .brand-logo-color {
        opacity: 1;
    }

    .brand-card-logo:hover .brand-card-logo-image {
        transform: scale(1.03);
    }

}


/* Tablet/mobile tapped state */

.brand-card-logo.is-color .brand-logo-mono {
    opacity: 0;
}

.brand-card-logo.is-color .brand-logo-color {
    opacity: 1;
}


/* Content */

.brand-card-content {
    flex: 1;

    padding: 24px 22px 42px;
}

.brand-card-content h2 {
    margin: 0 0 5px;

    font-family: var(--font-content);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;

    color: var(--mdo-black);
}

.brand-card-tagline {
    margin: 0 0 18px;

    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;

    color: var(--mdo-orange);
    text-transform: uppercase;
}

.brand-card-content p:not(.brand-card-tagline) {
    margin: 0;

    font-family: var(--font-content);
    font-size: 15px;
    line-height: 1.55;

    color: #555555;
}


/* CTA */

.brand-card-link {
    display: block;

    padding: 14px 18px;

    background: var(--mdo-orange);

    color: #ffffff;
    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.brand-card-link:hover {
    background: var(--mdo-black);
    color: #ffffff;
}

/* =========================
   ABOUT MDO
========================= */

.about-mdo-section {
    padding: 70px 0;
}

.about-mdo-section-alt {
    background: #f5f5f5;
}

.about-mdo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-mdo-heading {
    margin: 0 0 28px;

    color: var(--mdo-black);
    font-family: "Bahnschrift", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;

    text-transform: uppercase;
}

/* COPY */

.about-mdo-copy h1,
.about-mdo-copy h2 {
    margin: 0 0 24px;

    color: var(--mdo-black);
    font-family: "Bahnschrift", sans-serif;
    font-weight: 700;
    line-height: 1.05;

    text-transform: uppercase;
}

.about-mdo-copy h1 {
    font-size: 26px;
}

.about-mdo-copy h2 {
    font-size: 26px;
}

.about-mdo-copy p {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.65;

    color: #444444;
}

.about-mdo-copy p:last-child {
    margin-bottom: 0;
}


/* IMAGE PLACEHOLDERS */

.about-mdo-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-mdo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-mdo-image-brenton {
    aspect-ratio: auto;
}

.about-mdo-image-brenton img {
    width: 100%;
    height: auto;
    object-fit: initial;
}

/* =========================
   OFFICIAL PARTNERS
========================= */

.partners-title-bar {
    background: #eeeeee;
    padding: 36px 0;
}

.partners-page-heading {
    margin: 0;

    color: var(--mdo-black);
    font-family: "Bahnschrift", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;

    text-transform: uppercase;
}

.partners-section {
    padding: 0 0 90px;
}

.partners-empty {
    max-width: 780px;
    margin: 90px auto 60px;
    text-align: center;
}

.partners-empty h2 {
    margin: 0 0 24px;

    color: var(--mdo-black);
    font-family: "Bahnschrift", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;

    text-transform: uppercase;
}

.partners-empty p {
    margin: 0 auto 18px;

    color: #444444;
    font-size: 16px;
    line-height: 1.65;
}

.partners-empty .partners-question {
    margin-top: 30px;
    margin-bottom: 18px;

    color: var(--mdo-black);
    font-weight: 700;
}

.partners-cta {
    display: inline-block;

    padding: 13px 24px;

    background: var(--mdo-orange);

    color: var(--mdo-white);
    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    text-transform: uppercase;

    transition: background 0.2s ease;
}

.partners-cta:hover,
.partners-cta:focus-visible {
    background: var(--mdo-black);
    color: var(--mdo-white);
}

/* =========================
   SPECIES ARCHIVE
========================= */

.species-archive-title-bar {
    padding: 22px 0 32px;
    background: #eeeeee;
}

.species-archive-title-bar h1 {
    margin: 0;

    font-family: "Bahnschrift", sans-serif;
    font-size: 38px;
    font-weight: 700;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.species-archive-description {
    margin: 8px 0 0;
    max-width: 750px;

    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;

    color: #555555;
}


/* Filters */

.species-filter-section {
    background: #ffffff;
    padding: 24px;
}

.species-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.species-filter-group + .species-filter-group {
    margin-top: 12px;
}

.species-filter-link {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;

    cursor: pointer;

    color: var(--mdo-black);
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.species-filter-link:hover,
.species-filter-link.is-active {
    color: var(--mdo-orange);
}
/* Grid */

.species-grid-section {
    background: #dddddd;
    padding: 34px 0 80px;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}


/* =========================
   SPECIES CARDS
========================= */

.species-card {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);

    overflow: hidden;
}


/* IMAGE AREA */

.species-card-image {
    position: relative;

    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
}


/* FEATURED FISH IMAGE ONLY */

.species-card-image > img:not(.species-card-catch-badge) {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.25s ease;
}

.species-card:hover
.species-card-image > img:not(.species-card-catch-badge) {
    transform: scale(1.03);
}


/* CHECK / X BADGE */

.species-card-image > .species-card-catch-badge {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 32px;
    height: 32px;

    display: block;
    object-fit: contain;

    filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 1.00));

    z-index: 2;
    pointer-events: none;
}


/* CONTENT */

.species-card-content {
    padding: 12px 16px 13px;
}


/* TAXONOMY TAGS */

.species-card-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 7px;
}

.species-card-tags span {
    padding: 4px 7px;

    background: #eeeeee;

    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;

    color: var(--mdo-black);
}


/* SPECIES NAME */

.species-card h2 {
    margin: 10px 0 -2px;
}

.species-card h2 a {
    color: var(--mdo-black);

    font-family: var(--font-content);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;

    text-decoration: none;
}


/* CATCH DETAILS */

.species-card-catch-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 4px;

    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.2;

    color: #777777;
}

.species-card-catch-line strong {
    font-weight: 700;
}

.species-card-catch-line.is-caught strong {
    color: #4f9f2f;
}

.species-card-catch-line.is-not-caught strong {
    color: #d5221e;
}

/* =========================
   SINGLE SPECIES
========================= */

.species-single-page {
    padding: 20px 0 80px;
}


/* Breadcrumb */

.species-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 24px;

    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
}

.species-breadcrumb a,
.species-breadcrumb span {
    color: var(--mdo-black);
}

.species-breadcrumb a {
    text-decoration: underline;
}

.species-breadcrumb a:hover {
    color: var(--mdo-orange);
}


/* Hero */

.species-hero {
    position: relative;

    width: 100%;
    overflow: hidden;
}

.species-hero > img:first-child {
    display: block;

    width: 100%;
    height: auto;
}

.species-status-graphic {
    position: absolute;

    top: 20px;
    right: 0;

    width: 225px;
    height: auto;
}


/* Main layout */

.species-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 28px;

    margin-top: 24px;

    align-items: start;
}


/* Main column */

.species-main-column h1 {
    margin: 0;

    font-family: "Bahnschrift", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;

    color: var(--mdo-black);
}

.species-scientific-name {
    margin: 5px 0 18px;

    font-style: italic;
    font-size: 18px;

    color: #666666;
}

.species-intro-copy p,
.species-story-section p {
    margin: 0 0 16px;

    font-size: 18px;
    line-height: 1.6;

    color: #444444;
}


/* Section headings */

.species-gallery-section,
.species-story-section {
    margin-top: 34px;
}

.species-gallery-section h2,
.species-story-section h2,
.species-info-card h2 {
    margin: 0 0 14px;

    font-family: "Bahnschrift", sans-serif;
    font-size: 21px;
    font-weight: 600;

    text-transform: uppercase;

    color: var(--mdo-black);
}


/* Other photos */

.species-gallery-carousel {
    position: relative;

    padding-bottom: 26px;

    border-bottom: 1px solid #cccccc;
}

.species-gallery-viewport {
    overflow: hidden;
}

.species-gallery-track {
    display: flex;

    gap: 12px;

    transition: transform 0.35s ease;
}

.species-gallery-photo {
    flex: 0 0 calc((100% - 30px) / 3.35);

    aspect-ratio: 16 / 9;

    padding: 0;

    overflow: hidden;

    border: 0;
    background: none;

    cursor: pointer;
}

.species-gallery-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.2s ease;
}

.species-gallery-photo:hover img {
    transform: scale(1.03);
}


/* Gallery arrows */

.species-gallery-arrow {
    position: absolute;
    top: calc(50% - 13px);

    z-index: 2;

    width: 36px;
    height: 48px;

    padding: 0;

    border: 0;

    background: rgba(35, 31, 32, 0.8);
    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);
}

.species-gallery-arrow-prev {
    left: 0;
}

.species-gallery-arrow-next {
    right: 0;
}

.species-gallery-arrow:hover {
    background: var(--mdo-orange);
}

.species-gallery-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}


/* Sidebar */

.species-sidebar {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.species-info-card {
    padding: 20px;

    background: #eeeeee;
}

.species-info-card h2 {
    padding-bottom: 10px;

    border-bottom: 2px solid #777777;

    color: #777777;
}

.species-info-list p {
    margin: 0 0 15px;

    font-size: 15px;
    line-height: 1.45;

    color: #444444;
}

.species-info-list p:last-child {
    margin-bottom: 20px;
}


/* Map placeholder */

.species-map-placeholder {
    aspect-ratio: 4 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #999999;

    font-family: "Bahnschrift", sans-serif;
    font-size: 12px;
}


/* Size graphic placeholder */

.species-size-placeholder {
    aspect-ratio: 16 / 9;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #999999;

    font-family: "Bahnschrift", sans-serif;
    font-size: 12px;
}

.species-range-map img,
.species-size-comparison img {
    display: block;

    width: 100%;
    height: auto;
}

.species-single-page .article-related-bottom-image {
    position: relative;
}

/* =========================
   SPECIES PHOTO LIGHTBOX
========================= */

.species-lightbox {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px 70px;

    background: rgba(0, 0, 0, 0.82);
}

.species-lightbox.is-open {
    display: flex;
}

.species-lightbox-image-wrap {
    position: relative;

    display: inline-block;

    max-width: 78vw;
    max-height: 72vh;
}

.species-lightbox-image {
    display: block;

    max-width: 78vw;
    max-height: 72vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* LIGHTBOX CONTROLS */

.species-lightbox-close,
.species-lightbox-prev,
.species-lightbox-next {
    position: absolute;
    z-index: 3;

    padding: 0;
    border: 0;
    background: transparent;

    color: #ffffff;
    font-family: var(--font-ui);
    line-height: 1;

    cursor: pointer;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Close */

.species-lightbox-close {
    position: absolute;

    top: 0px;
    right: 10px;

    z-index: 3;

    padding: 0;
    border: 0;
    background: transparent;

    color: #ffffff;

    font-family: var(--font-ui);
    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

/* Previous / Next */

.species-lightbox-prev,
.species-lightbox-next {
    top: 50%;

    font-size: 48px;

    transform: translateY(-50%);
}

.species-lightbox-prev {
    left: calc(5vw + 8px);
}

.species-lightbox-next {
    right: calc(5vw + 8px);
}

/* Hover */

.species-lightbox-close:hover,
.species-lightbox-prev:hover,
.species-lightbox-next:hover {
    color: var(--mdo-orange);
}

body.species-lightbox-open {
    overflow: hidden;
}

/* Lightbox thumbnail row */

.species-lightbox-thumbnails {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;

    display: flex;
    justify-content: center;
    gap: 8px;

    max-width: 100%;

    transform: translateX(-50%);

    overflow-x: auto;

    z-index: 4;
}

.species-lightbox-thumbnail {
    flex: 0 0 auto;

    width: 90px;

    aspect-ratio: 16 / 9;

    padding: 0;

    overflow: hidden;

    border: 2px solid transparent;
    background: transparent;

    opacity: 0.50;

    cursor: pointer;
}

.species-lightbox-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.species-lightbox-thumbnail:hover {
    opacity: 0.85;
}

.species-lightbox-thumbnail.is-active {
    opacity: 1;
}

.species-related-video .article-related-bottom-title {
    font-size: 18px;
}

/* =========================
   UNDER CONSTRUCTION PAGE
========================= */

.under-construction-page {
    min-height: 60vh;

    display: flex;
    align-items: center;

    padding: 80px 0;

    background: #eeeeee;
}

.under-construction-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.under-construction-eyebrow {
    margin-top: -50px;
    margin-bottom: 0px;

    font-family: var(--font-ui);
    font-size: 200px;
    font-weight: 700;

    color: var(--mdo-orange);

    text-transform: uppercase;
}

.under-construction-content h1 {
    margin: 0 0 14px;

    font-family: var(--font-ui);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;

    color: var(--mdo-black);

    text-transform: uppercase;
}

.under-construction-content p {
    margin: 0 0 26px;

    font-family: var(--font-content);
    font-size: 18px;
    line-height: 1.5;

    color: #555555;
}

/* =========================
   DESTINATIONS ARCHIVE
========================= */

.destination-archive-page {
    padding: 0;
    background: #ffffff;
}


/* Header */

.destination-archive-header {
    padding-top: 24px;
    padding-bottom: 34px;
    margin-bottom: 0;

    background: #eeeeee;

    box-shadow:
        0 0 0 100vmax #eeeeee;

    clip-path:
        inset(0 -100vmax);
}

.destination-archive-header h1 {
    margin: 0 0 8px;

    font-family: var(--font-ui);
    font-size: 38px;
    font-weight: 700;

    color: var(--mdo-black);
    text-transform: uppercase;
}

.destination-archive-header p {
    max-width: 700px;
    margin: 0;

    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;

    color: #555555;
}


/* =========================
   FILTERS
========================= */

.destination-filters {
    margin-bottom: 0;
    padding: 24px;
}

.destination-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;

    margin-bottom: 12px;
}

.destination-filter-group:last-child {
    margin-bottom: 0;
}

.destination-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.destination-filter-link {
    appearance: none;

    padding: 0;
    border: 0;
    background: none;

    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 700;

    color: var(--mdo-black);
    text-transform: uppercase;

    cursor: pointer;

    transition: color 0.2s ease;
}

.destination-filter-link:hover,
.destination-filter-link.active {
    color: var(--mdo-orange);
}


/* =========================
   DESTINATION GRID
========================= */

.destination-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    /*
     * Creates the full-width grey archive background
     * while keeping the cards aligned to site-container.
     */
    padding-top: 32px;
    padding-bottom: 56px;

    background: #dddddd;

    box-shadow:
        0 0 0 100vmax #dddddd;

    clip-path:
        inset(0 -100vmax);
}


/* Card */

.destination-archive-card {
    min-width: 0;

    background: #ffffff;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.14);

    overflow: hidden;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.destination-archive-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.18);
}

.destination-archive-card > a {
    display: block;

    padding: 14px;

    color: inherit;
    text-decoration: none;
}


/* Square destination image */

.destination-archive-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.destination-card-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.25s ease;
}

.destination-archive-card:hover
.destination-card-image {
    transform: scale(1.015);
}


/* Card copy */

.destination-archive-card-content {
    padding-top: 12px;
}


/* Continent tag */

.destination-archive-card-continent {
    display: inline-block;

    margin-bottom: 9px;
    padding: 5px 8px;

    background: #f2f2f2;

    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    color: var(--mdo-black);
    text-transform: uppercase;
}


/* Destination name */

.destination-archive-card h2 {
    margin: 3px 0 3px;

    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;

    color: var(--mdo-black);
}


/* Travel style */

.destination-archive-card-tagline {
    margin-top: 0;
    
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    color: var(--mdo-orange);

    text-transform: uppercase;
}

/* =========================================================
   SINGLE DESTINATION
========================================================= */


/* =========================
   DESTINATION HERO
========================= */

.destination-hero {
    position: relative;

    width: 100%;
    height: 400px;

    background-image: var(--destination-hero-desktop);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Darkens the image so white text stays readable */

.destination-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.30) 35%,
        rgba(0, 0, 0, 0.05) 70%,
        rgba(0, 0, 0, 0) 100%
    );    
}


/* Keeps hero text aligned with the site's 1200px content */

.destination-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* Destination name */

.destination-hero-title {
    margin: 0;

    color: #fff;

    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}


/* Adventure / Language / Family tagline */

.destination-hero-tagline {
    margin-top: 8px;

    color: var(--mdo-orange);

    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}


/* Short destination introduction */

.destination-hero-blurb {
    width: 100%;
    max-width: 460px;
    margin-top: 18px;

    color: #fff;

    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;

    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.40);
}

/* =========================
   DESTINATION INTRO
========================= */

.destination-intro {
    width: 100%;
    padding: 40px 20px 10px;
}

.destination-intro-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;

    align-items: start;
}


/* OUR EXPERIENCE */

.destination-experience h2,
.destination-at-a-glance h2 {
    margin: 0 0 16px;

    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.destination-experience-text {
    font-size: 16px;
    line-height: 1.6;
}

.destination-experience-text p {
    margin: 0 0 16px;
}

.destination-experience-text p:last-child {
    margin-bottom: 0;
}


/* AT A GLANCE */

.destination-at-a-glance {
    background: #eeeeee;
    padding: 22px 26px 26px;
}

.destination-glance-list {
    border-top: 2px solid #777;
}

.destination-glance-row {
    display: grid;
    grid-template-columns: 180px 1fr;

    padding: 8px 0;

    border-bottom: 1px solid #fff;
}

.destination-glance-row strong {
    font-size: 14px;
    line-height: 1.3;
}

.destination-glance-row span {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

/* At a Glance pictograms */

.destination-glance-row strong {
    display: flex;
    align-items: center;
    gap: 12px;
}

.destination-glance-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    flex: 0 0 18px;

    color: var(--mdo-black);
}

.destination-glance-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    fill: currentColor;
}

/* =========================
   EXPLORE DESTINATION
========================= */

.destination-explore {
    width: 100%;
    padding: 0 20px 32px;
    margin-top: -8px;
    background: #ffffff;
}

.destination-explore-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-explore h2 {
    margin: 10px 0 20px;

    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.destination-map {
    width: 100%;
    height: 500px;
}

.destination-explore-inner {
    position: relative;
}

.destination-map-panel {
    position: absolute;

    top: 62px;
    left: 20px;

    z-index: 500;

    width: 225px;

    padding: 18px;

    background: #ffffff;

    border-radius: 4px;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.28);

    font-family: var(--font-content);
}

.destination-map-panel-intro {
    margin: 0 0 16px;

    font-size: 15px;
    line-height: 1.35;

    color: var(--mdo-black);
}

.destination-map-panel-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.destination-map-panel-location {
    display: flex;
    align-items: center;

    gap: 9px;

    width: 100%;

    padding: 0;

    border: 0;
    background: transparent;

    color: var(--mdo-black);

    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;
}

.destination-map-panel-location:hover {
    color: var(--mdo-orange);
}

.destination-map-panel-location.is-active {
    color: var(--mdo-orange);
}

.destination-map-panel-pin {
    position: relative;

    width: 13px;
    height: 13px;

    flex: 0 0 13px;

    background: var(--mdo-orange);

    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);
}

.destination-map-panel-pin::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 4px;
    height: 4px;

    background: #ffffff;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


/* Detail state */

.destination-map-panel-detail {
    position: relative;
}

.destination-map-panel-close {
    position: absolute;

    top: -5px;
    right: -2px;

    padding: 0;

    border: 0;
    background: transparent;

    color: #777777;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
}

.destination-map-panel-title {
    margin: 0 24px 12px 0;

    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;

    text-transform: uppercase;
}

.destination-map-panel-image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    margin-bottom: 10px;

    object-fit: cover;
}

.destination-map-panel-description {
    margin: 0 0 12px;

    font-size: 14px;
    line-height: 1.35;

    color: var(--mdo-black);
}

.destination-map-panel-see-more {
    padding: 0;

    border: 0;
    background: transparent;

    color: var(--mdo-orange);

    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 3px;

    cursor: pointer;
}

.destination-map-reset {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.destination-map-reset-icon {
    width: 17px;
    height: 17px;

    fill: #111;
}

/* =========================
   DESTINATION MAP MARKERS
========================= */

.mdo-map-marker-wrapper {
    background: none;
    border: none;
}

.mdo-map-marker {
    position: relative;

    width: 26px;
    height: 26px;

    background: var(--mdo-orange);
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.mdo-map-marker-active {
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.45);

    filter: brightness(1.08);
}

.mdo-map-marker-center {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    background: #fff;
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

/* =========================
   THINGS TO DO
========================= */

.destination-things {
    width: 100%;
    padding: 0 20px 48px;
    background: #ffffff;
}

.destination-things-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-things h2 {
    margin: 0 0 14px;

    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}


/* Accordion list */

.destination-things-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Individual row */

.destination-thing-card {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 52px;
    font-family: var(--font-content);

    width: 100%;
    min-height: 118px;

    padding: 0;

    border: 0;
    background: #eeeeee;
    color: var(--mdo-black);

    text-align: left;
    cursor: pointer;

    overflow: hidden;

    transition:
        background 0.2s ease,
        min-height 0.3s ease;  
}

.destination-thing-card-content,
.destination-thing-card-content h3,
.destination-thing-card-content p,
.destination-thing-learn-more {
    font-family: inherit;
}

.destination-thing-card:hover {
    background: #e7e7e7;
}

/* Thumbnail */

.destination-thing-thumbnail {
    width: 210px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.destination-thing-thumbnail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Text */

.destination-thing-card-content {
    min-width: 0;
    padding: 19px 20px 16px;
}

.destination-thing-card-content h3 {
    margin: 0 0 5px;

    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;

    text-transform: uppercase;
}

.destination-thing-card-content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.35;

    color: #444444;
}


/* Chevron */

.destination-thing-card::after {
    content: "";

    position: absolute;
    top: 22px;
    right: 22px;

    width: 9px;
    height: 9px;

    border-right: 2px solid var(--mdo-black);
    border-bottom: 2px solid var(--mdo-black);

    transform: rotate(45deg);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


/* Selected / expanded item */

.destination-thing-card.is-active::after {
    border-color: var(--mdo-orange);

    transform: rotate(225deg);
}

/* Expanded content starts hidden */

.destination-thing-expanded-content {
    display: none;

    margin-top: 12px;
}

.destination-thing-full-description {
    margin: 0 0 14px;

    font-size: 14px;
    line-height: 1.5;

    color: #444444;
}

.destination-thing-short-description {
    max-width: 820px;

    margin: 0;

    font-size: 14px;
    line-height: 1.4;

    color: #444444;
}


/* Learn More button */

.destination-thing-learn-more {
    display: inline-block;

    padding: 8px 14px;
    margin: 15px 0 0;
    border: 2px solid var(--mdo-orange);

    color: var(--mdo-black);

    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;
}

.destination-thing-learn-more:hover {
    background: var(--mdo-orange);
    color: #ffffff;
}

.destination-thing-back-to-map {
    display: inline-block;

    margin: 15px 0 0 10px;
    padding: 8px 14px;

    border: 2px solid var(--mdo-black);
    background: transparent;

    color: var(--mdo-black);

    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 800;

    text-transform: uppercase;

    cursor: pointer;
}

.destination-thing-back-to-map:hover {
    background: var(--mdo-black);
    color: #ffffff;
}


/* Expanded accordion state */

.destination-thing-card.is-active {
    background: #eeeeee;
}

.destination-thing-card.is-active
.destination-thing-thumbnail {
    aspect-ratio: auto;
}

.destination-thing-card.is-active
.destination-thing-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-thing-card.is-active
.destination-thing-card-content {
    padding: 18px 20px;
}

.destination-thing-card.is-active
.destination-thing-expanded-content {
    display: block;
    margin-top: 12px;
}

/* Tablet */
@media (max-width: 1023px) {

    .header-brand-strip {
        display: none;
    }

    .header-main {
        padding: 8px 0 6px;
        margin-top: 0;
    }

    .header-main-inner {
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
    }

    .mobile-menu-toggle,
    .mobile-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        position: absolute;
        top: 0;
        right: 0;

        width: 44px;
        height: 50px;
        padding: 0;
    }

    .mobile-menu-toggle {
        grid-column: 1;
        justify-self: start;
        font-size: 28px;
        line-height: 1;
    }

    .site-logo {
        grid-column: 2;
        display: block;
        justify-self: center;
        text-decoration: none;
    }

    .site-logo-image {
        display: block;
        width: 210px;
        max-width: 100%;
        height: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-icon,
    .mobile-search-toggle-icon {
        display: block;

        width: 26px;
        height: 26px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }

    .header-search {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
        max-width: none;
        max-height: 0;
        margin: 0;
        overflow: hidden;
        opacity: 0;

        transition:
            max-height 0.22s ease,
            margin 0.22s ease,
            opacity 0.16s ease;
    }

    .header-main.search-open .header-search {
        max-height: 50px;
        margin: 8px 0 6px;
        opacity: 1;
    }

    .primary-navigation {
        overflow: visible;
        padding: 6px 0 10px;
    }

    .primary-navigation::-webkit-scrollbar {
        display: none;
    }

    .primary-menu {
        justify-content: center;
        width: max-content;
        min-width: 100%;
        gap: 8px;
        padding-inline: 14px;
    }

    .primary-menu li {
        flex: 0 0 auto;
    }

    .primary-menu a,
    .primary-menu .about-menu-toggle {
        display: block;
        padding: 8px 12px;
        border: 0;
        background: #4b4546;

        color: var(--mdo-white);
        font-family: var(--font-ui);
        font-size: 12px;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
        text-decoration: none;

        white-space: nowrap;
        appearance: none;
        -webkit-appearance: none;
    }

    .primary-menu a:hover,
    .primary-menu a:focus-visible,
    .primary-menu a:active,
    .primary-menu .about-menu-toggle:hover,
    .primary-menu .about-menu-toggle:focus-visible,
    .primary-menu .about-menu-toggle:active {
        background: var(--mdo-orange);
        color: var(--mdo-white);
    }

    .about-menu-dropdown {
        left: auto;
        right: 0;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    body.admin-bar .site-header {
        top: 32px;
    }
    
    .site-container {
        width: min(100% - 32px, var(--mdo-content-width));
    }

    .brand-family {
        gap: 16px;
    }

    .brand-logo-mdo {
        height: 22px;
    }

    .boangles-logo-wrap {
        height: 26px;
    }

    .boangles-logo-wrap .brand-logo {
        height: 26px;
    }

    .brand-logo-helwig {
        height: 14px;
    }

    .header-main {
        margin-top: -28px;
    }

    .primary-menu {
        gap: 22px;
    }

    .primary-menu a {
        font-size: 12px;
    }

    .header-main-inner {
        align-items: center;
    }
    
    .mobile-menu-toggle {
        font-size: 28px;
        line-height: 1;
        align-self: center;
    }

    .mobile-search-icon {
        width: 22px;
        height: 22px;
    }

    .featured-article-section {
        padding: 60px 0 40px;
    }
    
    .featured-article {
        grid-template-columns: 1.1fr 1fr;
        gap: 28px;
    }
    
    .featured-article-title {
        font-size: 28px;
    }
    
    .featured-article-excerpt {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .featured-article-content {
        max-width: none;
    }

    .more-articles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    
    .more-articles-right {
        display: contents;
    }
    
    .article-card-wide {
        display: block;
    }
    
    .article-card-small-row {
        display: contents;
    }
    
    .article-card,
    .article-card-wide,
    .article-card-small,
    .article-card-large {
        display: block;
    }
    
    .article-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    
    .article-card-content {
        padding: 12px 0 0;
    }
    
    .article-card-title,
    .article-card-small .article-card-title {
        font-size: 18px;
    }
    
    .article-card-category {
        font-size: 13px;
    }
    
    .article-card-author {
        font-size: 12px;
    }

    .article-card-wide .article-card-content {
        padding: 12px 0 0;
    }

    /* FEATURED VIDEOS - TABLET */

    .featured-videos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .featured-videos-left {
        display: contents;
    }

    .featured-videos-small-row {
        display: contents;
    }

    .video-card,
    .video-card-wide,
    .video-card-small,
    .video-card-large {
        display: block;
    }

    .video-card-wide {
        grid-template-columns: none;
        gap: 0;
    }

    .video-card-wide .video-card-content {
        padding-top: 12px;
    }

    .video-card-title,
    .video-card-small .video-card-title,
    .video-card-large .video-card-title {
        font-size: 18px;
    }

    .video-card-category {
        font-size: 13px;
    }

    .video-card-channel {
        font-size: 12px;
    }

    .video-play-icon {
        width: 30px;
        height: 30px;
    }

    /* BUCKET LIST - TABLET / TOUCH */

    .bucket-list-arrow {
        display: none;
    }

    .bucket-list-track {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        gap: 14px;
        padding-bottom: 4px;
    }

    .bucket-card {
        height: 320px;
        scroll-snap-align: start;
    }

    .bucket-card-vertical {
        width: 267px;
    }

    .bucket-card-wide {
        width: 569px;
    }

    /* BUCKET LIST - SWIPE INDICATORS */

    .bucket-swipe-indicator {
        position: absolute;
        top: 50%;
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 1px;
        transform: translateY(-50%);
        color: #f7f7f7;
        font-family: Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
    }

    .bucket-swipe-indicator.is-visible {
        opacity: 1;
    }

    .bucket-swipe-indicator-left {
        left: 10px;
    }

    .bucket-swipe-indicator-right {
        right: 10px;
    }

    /* =========================
    TRAVEL - TABLET / TOUCH
    ========================= */

    .travel-arrow {
        display: none;
    }

    .travel-track {
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .travel-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    .travel-swipe-indicator {
        position: absolute;
        top: 50%;
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 1px;
        transform: translateY(-50%);
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
    }

    .travel-swipe-indicator.is-visible {
        opacity: 1;
    }

    .travel-swipe-indicator-left {
        left: 10px;
    }

    .travel-swipe-indicator-right {
        right: 10px;
    }

    .footer-columns {
        column-gap: 70px;
    }

    .footer-logo img {
        width: 260px;
    }

    .mobile-brand-menu {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 1500;

        display: block;
        width: 250px;
        max-height: none;

        padding: 10px;

        background: #1b1819;
        border: 1px solid #4b4546;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);

        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0s linear 0.18s;

        pointer-events: none;
    }

    .mobile-brand-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);

        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0s;

        pointer-events: auto;
    }

    .mobile-brand-menu-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0;
        }

    .mobile-brand-link {
            display: flex;
            align-items: center;
            width: 100%;
            height: 52px;
            padding: 6px 38px;
            overflow: hidden;
            border-bottom: 1px solid #3d393a;
            text-decoration: none;
        }

        .mobile-brand-link:last-child {
            border-bottom: 0;
            padding-bottom: 0px;
        }

        .mobile-brand-link img {
            display: block;
            width: auto !important;
            height: auto !important;
            max-width: 170px !important;
            max-height: 30px !important;
            object-fit: contain;
        }

        .mobile-brand-link:nth-child(2) img,
        .mobile-brand-link:nth-child(4) img {
            filter: brightness(0) invert(1) !important;
        }

        .mobile-brand-link:nth-child(3) img {
            filter: none !important;
        }

        .mobile-brand-link:hover,
        .mobile-brand-link:active {
            background: #343031;
        }

        .mobile-brand-menu-title {
            height: 32px;
            padding: 0 38px 15px;
            display: flex;
            align-items: center;
            justify-content: flex-start;

            font-family: var(--font-ui);
            font-size: 14px;
            font-weight: 500;
            color: var(--mdo-white);
            text-transform: uppercase;

            border-bottom: 1px solid #3d393a;
        }

        .mobile-menu-toggle {
            position: relative;
            z-index: 1600;
        }

        .mobile-menu-toggle[aria-expanded="true"] {
            color: var(--mdo-white);
        }

        .article-layout {
            column-gap: 32px;
        }

        .article-single {
            padding-top: 44px;
        }

        .articles-latest-grid,
        .articles-archive-grid {
            gap: 18px;
        }

        .articles-latest-title {
            font-size: 21px;
        }

        .articles-archive-title {
            font-size: 18px;
        }

        .article-related-layout {
            column-gap: 32px;
        }

        .brands-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-mdo-row {
            gap: 36px;
            grid-template-columns: 1fr 1fr;
        }

        .about-mdo-copy h1 {
            font-size: 32px;
        }

        .about-mdo-copy h2 {
            font-size: 28px;
        }

        /* Tablet */
        .species-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Mobile */
        .species-grid {
            grid-template-columns: 1fr;
        }

        .species-detail-grid {
            grid-template-columns:
                minmax(0, 1.1fr)
                minmax(280px, 0.9fr);

            gap: 22px;
        }

        .species-status-graphic {
            width: 200px;
        }

        .destination-grid {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));
        }

        .destination-filter-group {
            display: block;
        }

        .destination-filter-label {
            margin-bottom: 8px;
        }

        .destination-archive-header {
            padding-top: 28px;
            padding-bottom: 30px;
        }

        /* =========================
        HORIZONTAL SCROLL FADES
        ========================= */

        .mdo-scroll-fade {
            --scroll-fade-size: 36px;
        }

        /* Can only scroll right */
        .mdo-scroll-fade.can-scroll-right:not(.can-scroll-left) {
            -webkit-mask-image: linear-gradient(
                to right,
                #000 0,
                #000 calc(100% - var(--scroll-fade-size)),
                transparent 100%
            );

            mask-image: linear-gradient(
                to right,
                #000 0,
                #000 calc(100% - var(--scroll-fade-size)),
                transparent 100%
            );
        }

        /* Can only scroll left */
        .mdo-scroll-fade.can-scroll-left:not(.can-scroll-right) {
            -webkit-mask-image: linear-gradient(
                to right,
                transparent 0,
                #000 var(--scroll-fade-size),
                #000 100%
            );

            mask-image: linear-gradient(
                to right,
                transparent 0,
                #000 var(--scroll-fade-size),
                #000 100%
            );
        }

        /* Can scroll both directions */
        .mdo-scroll-fade.can-scroll-left.can-scroll-right {
            -webkit-mask-image: linear-gradient(
                to right,
                transparent 0,
                #000 var(--scroll-fade-size),
                #000 calc(100% - var(--scroll-fade-size)),
                transparent 100%
            );

            mask-image: linear-gradient(
                to right,
                transparent 0,
                #000 var(--scroll-fade-size),
                #000 calc(100% - var(--scroll-fade-size)),
                transparent 100%
            );
        }

        /* Nothing to scroll */
        .mdo-scroll-fade:not(.can-scroll-left):not(.can-scroll-right) {
            -webkit-mask-image: none;
            mask-image: none;
        }

        .about-menu-item.is-open .about-menu-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-search-toggle {
            display: none !important;
        }

}

/* Mobile */
@media (max-width: 767px) {

    .header-main {
        min-height: 58px;
        padding: 10px 0 0;
        margin-top: 0;
    }
    
    .header-main-inner {
        position: relative;
        
        height: 100%;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
    }

    .header-main.search-open .header-search {
    transform: translateY(-3px);
    }

    .header-search {
        width: 250px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .site-logo {
        transform: none;
    }
    
    .site-logo-image {
        width: 180px;
        max-width: 100%;
        max-height: 42px;
        height: auto;
        filter: brightness(0) invert(1);
    }
    
    .mobile-menu-toggle,
    .mobile-search-toggle {
        width: 44px;
        height: 50px;

        padding: 0;
        margin: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-icon,
    .mobile-search-toggle-icon {
        display: block;

        width: 24px;
        height: 24px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 0;
        right: auto;

        width: 44px;
        height: 50px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        margin: 0;
        padding: 0;
    }

    .mobile-search-toggle {
        position: absolute;
        right: 0;
        left: auto;

        width: 44px;
        height: 50px;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        margin: 0;
        padding: 0;
    }
    
    .mobile-search-icon {
        width: 27px;
        height: 27px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }
    
    .site-container {
        width: min(100% - 28px, var(--mdo-content-width));
    }

    .featured-article-section {
        padding: 18px 0 24px;
    }
    
    .featured-article {
        display: block;
    }
    
    .featured-article-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    .featured-article-content {
        max-width: none;
        padding: 16px 0 0;
    }
    
    .featured-article-label {
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    .featured-article-title {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 1.08;
    }
    
    .featured-article-author {
        margin-bottom: 0px;
        font-size: 12px;
    }
    
    .featured-article-excerpt {
        font-size: 17px;
        line-height: 1.5;
    }
    
    .mdo-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .primary-navigation {
        position: relative;

        width: calc(100% - 26px);
        margin-left: 13px;
        margin-right: 13px;

        height: 43px;
        overflow-x: auto;
        overflow-y: hidden;

        padding: 5px 0;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .primary-navigation .site-container {
        width: 100%;
        margin-inline: 0;
    }
    
    .primary-menu {
        height: 100%;
        align-items: center;
        justify-content: flex-start;

        width: max-content;
        min-width: 100%;

        gap: 8px;

        padding-left: 0;
        padding-right: 0;
    }
    
    .primary-menu a,
    .primary-menu .about-menu-toggle {
        display: block;
        padding: 7px 11px;
        background: #4b4546;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .primary-navigation:has(.about-menu-item.is-open) {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .about-menu-dropdown {
        position: fixed;

        top: 103px;
        right: 14px;
        left: auto;

        width: 220px;

        z-index: 5000;
    }

    .about-menu-dropdown a {
        min-height: 44px;

        display: flex;
        align-items: center;

        padding: 12px 16px;

        font-size: 14px;
        line-height: 1.2;
    }

    /* MORE ARTICLES FOR YOU - MOBILE */

    .more-articles-section {
        padding: 32px 0 36px;
    }

    .more-articles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-card,
    .article-card-wide,
    .article-card-small,
    .article-card-large {
        display: grid;
        grid-template-columns: 1fr 42%;
        gap: 14px;
        padding: 14px;
        align-items: start;
    }

    .article-card > a {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .article-card > a img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .article-card-content,
    .article-card-wide .article-card-content {
        grid-column: 1;
        grid-row: 1;
        padding: 0;
    }

    .article-card-category {
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: 700;
    }

    .article-card-title,
    .article-card-small .article-card-title {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.1;
    }

    .article-card-author {
        font-size: 12px;
    }

    .section-see-more {
        margin-top: 24px;
    }

    /* FEATURED VIDEOS - MOBILE */

    .featured-videos-section {
        padding: 32px 0 36px;
    }

    .featured-videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .featured-videos-left,
    .featured-videos-small-row {
        display: contents;
    }

    .video-card,
    .video-card-wide,
    .video-card-small,
    .video-card-large {
        display: grid;
        grid-template-columns: 1fr 42%;
        gap: 14px;
        padding: 14px;
        align-items: start;
    }

    .video-thumbnail {
        grid-column: 2;
        grid-row: 1;
    }

    .video-thumbnail > img:first-child {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .video-card-content,
    .video-card-wide .video-card-content {
        grid-column: 1;
        grid-row: 1;
        padding: 0;
    }

    .video-card-category {
        font-size: 13px;
        font-weight: 700;
    }

    .video-card-title,
    .video-card-small .video-card-title,
    .video-card-large .video-card-title {
        font-size: 16px;
        line-height: 1.1;
    }

    .video-card-channel {
        font-size: 12px;
    }

    .video-play-icon {
        top: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
    }

    .featured-videos-see-more {
        margin-top: 24px;
    }

    /* BUCKET LIST - MOBILE */

    .bucket-list-section {
        padding: 32px 0 36px;
    }

    .bucket-list-track {
        gap: 12px;
    }

    .bucket-card {
        height: 280px;
    }

    .bucket-card-vertical {
        width: 233px;
    }

    .bucket-card-wide {
        width: 498px;
    }

    .bucket-card-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .bucket-card-overlay h3 {
        font-size: 20px;
    }

    .bucket-card-button {
        padding: 9px 16px;
        font-size: 12px;
    }

    /* TRAVEL - MOBILE */

    .travel-section {
        padding: 32px 0 36px;
    }

    .travel-track {
        gap: 14px;
    }

    .travel-card {
        flex: 0 0 235px;
        padding: 12px;
    }

    .travel-card-content {
        padding-top: 8px;
    }

    .travel-card-title {
        font-size: 20px;
    }

    .travel-card-tagline {
        font-size: 13px;
        line-height: 1.15;
    }

    .site-footer {
        padding-top: 28px;
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-logo img {
        width: 240px;
    }

    .footer-columns {
        display: block;
        width: 100%;
        padding-bottom: 0;
    }

    .footer-column {
        border-bottom: 1px solid #4a4748;
    }

    .footer-column-toggle {
        width: 100%;
        min-height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--mdo-white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-ui);
        font-size: 15px;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
    }

    .footer-column-chevron {
        display: block;
        width: 0;
        height: 0;

        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #777777;

        margin-right: 4px;

        transition:
            transform 0.2s ease,
            border-top-color 0.15s ease;
    }

    .footer-column-links {
        display: none;
        padding: 0 0 12px;
    }

    .footer-column.is-open .footer-column-links {
        display: block;
    }

    .footer-column.is-open .footer-column-chevron {
        transform: rotate(180deg);
        border-top-color: #999999;
    }

    .footer-column-toggle:active .footer-column-chevron {
        border-top-color: var(--mdo-orange);
    }

    .footer-column-toggle:active {
        color: #cccccc;
    }

    .footer-column-links a {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .footer-bottom-inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
        text-align: center;
    }

    .footer-copyright,
    .footer-social-icons {
        justify-self: auto;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social-icons {
        justify-content: center;
    }

    /* =========================
    ARTICLES FILTER - MOBILE
    ========================= */

    .articles-filter {
        position: relative;
        overflow: hidden;
    }

    .articles-filter .site-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;

        gap: 8px;

        padding-top: 10px;
        padding-bottom: 10px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .articles-filter .site-container::-webkit-scrollbar {
        display: none;
    }

    .articles-filter-link {
        flex: 0 0 auto;

        padding: 7px 11px;

        background: #ffffff;
        border: 1px solid var(--mdo-black);
        border-radius: 3px;

        color: var(--mdo-black);

        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;

        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
    }

    .articles-filter-link:hover,
    .articles-filter-link.is-active {
        border-color: var(--mdo-orange);
        color: var(--mdo-orange);
    }

    .article-layout {
        display: block;
        margin-top: 0;
    }

    .article-sidebar {
        width: 100%;
        margin-top: 28px;
        position: static;
        top: auto;
    }

    .article-title {
    font-size: 21px;
    line-height: 1.08;
    }

    .article-hero {
        margin-bottom: 14px;
    }

    .article-byline {
        margin: 12px 0 20px;
    }

    .article-content {
        width: 100%;
    }

    .article-content p {
        font-size: 18px;
        line-height: 1.75;
    }

    .article-single {
        padding-top: 16px;
    }

    .article-side-image {
        width: 300px;
        max-width: 100%;
        margin: 28px auto;
    }

    .article-side-image img {
        width: 300px;
        max-width: 100%;
        height: auto;
    }

    .mobile-article-promo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 28px 0;
    }

    .mobile-article-promo-link {
        display: block;
        width: 300px;
        max-width: 100%;
    }

    .mobile-article-promo img {
        display: block;
        width: 300px;
        max-width: 100%;
        height: auto;
    }

    .article-sidebar > .article-side-image {
        display: none;
    }

    .article-related-bottom {
        width: 100%;
        padding: 0 14px;
        box-sizing: border-box;
    }

    .article-related-layout {
        display: block;
    }

    .article-related-bottom-card {
        display: block;
        width: 100%;
        padding: 0 0 18px;
        margin-bottom: 18px;
    }

    .article-related-bottom-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .article-related-bottom-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .article-related-bottom-content {
        margin-top: 0;
        padding: 12px 0 0;
    }

    .article-related-bottom-category {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .article-related-bottom-title {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 7px;
    }

    .article-related-bottom-excerpt {
        font-size: 16px;
        line-height: 1.45;
    }

    .articles-page-heading {
        padding: 20px 0;
    }

    .articles-page-heading h1 {
        font-size: 30px;
    }

    .articles-page-content {
        padding: 20px 0 32px;
    }

    .articles-latest-grid,
    .articles-archive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .articles-latest-content,
    .articles-archive-content {
        padding: 14px;
    }

    .articles-latest-title {
        font-size: 22px;
    }

    .articles-archive-title {
        font-size: 20px;
    }

    .articles-banner {
        min-height: 120px;
        margin: 24px 0;
    }

    .partnership-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card-logo {
        height: 190px;
    }

    .about-mdo-section {
        padding: 48px 0;
    }

    .about-mdo-row,
    .about-mdo-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-mdo-row .about-mdo-image {
        order: 1;
    }

    .about-mdo-row .about-mdo-copy {
        order: 2;
    }

    .about-mdo-copy h1 {
        font-size: 30px;
    }

    .about-mdo-copy h2 {
        font-size: 26px;
    }

    .about-mdo-image-brenton {
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .about-mdo-image-brenton img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* =========================
    SPECIES FILTER - MOBILE
    ========================= */

    .species-filter-section {
        padding: 10px 0;
    }

    .species-filter-group {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;

        gap: 8px;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .species-filter-group::-webkit-scrollbar {
        display: none;
    }

    .species-filter-group + .species-filter-group {
        margin-top: 10px;
    }

    .species-filter-link {
        flex: 0 0 auto;

        padding: 7px 11px;

        background: #ffffff;
        border: 1px solid var(--mdo-black);
        border-radius: 3px;

        color: var(--mdo-black);

        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;

        white-space: nowrap;
    }

    .species-filter-link:hover,
    .species-filter-link.is-active {
        border-color: var(--mdo-orange);
        color: var(--mdo-orange);
    }

    .species-detail-grid {
        grid-template-columns: 1fr;
    }

    .species-status-graphic {
        top: 12px;
        width: 165px;
    }

    .species-main-column h1 {
        font-size: 34px;
    }

    .species-sidebar {
        margin-top: 10px;
    }

    .species-archive-title-bar {
        padding: 18px 0 20px;
    }

    .species-archive-description {
        font-size: 15px;
        line-height: 1.4;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    /* =========================
    DESTINATION INTRO - MOBILE
    ========================= */

    .destination-intro-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .destination-at-a-glance {
        width: 100%;
    }

    .destination-explore {
        margin-top: 24px;
    }

    /* =========================
    DESTINATION - THINGS TO DO
    MOBILE
    ========================= */

    .destination-things {
        padding-left: 14px;
        padding-right: 14px;
    }

    .destination-things-grid {
        gap: 12px;
    }

    .destination-thing-card,
    .destination-thing-card.is-active {
        display: block;

        width: 100%;
        min-height: 0;

        grid-template-columns: none !important;
    }

    .destination-thing-learn-more,
    .destination-thing-back-to-map {
        padding: 8px 11px;
        font-size: 15px;
    }

    .destination-thing-back-to-map {
        margin-left: 6px;
    }


    /* Image always stays 16:9 on mobile */

    .destination-thing-thumbnail,
    .destination-thing-card.is-active
    .destination-thing-thumbnail {
        width: 100% !important;
        height: auto !important;

        aspect-ratio: 16 / 9 !important;

        overflow: hidden;
    }

    .destination-thing-thumbnail-image,
    .destination-thing-card.is-active
    .destination-thing-thumbnail-image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* Text moves underneath the image */

    .destination-thing-card-content,
    .destination-thing-card.is-active
    .destination-thing-card-content {
        width: 100%;

        padding: 16px 44px 16px 16px;
    }

    .destination-thing-card-content h3 {
        font-size: 17px;
        line-height: 1.15;
    }

    .destination-thing-card-content p {
        font-size: 16px;
        line-height: 1.4;
    }


    /* Keep chevron in top-right of text area */

    .destination-thing-card::after {
        top: auto;
        right: 18px;

        /*
        * 16:9 image height + text padding.
        * Position is reset below using the card width.
        */
        margin-top: 0;
    }

    .destination-thing-expanded-content {
        margin-top: 12px;
    }

    .destination-thing-card::after {
        top: calc(
            ((100vw - 28px) * 9 / 16) + 21px
        );
    }

    .destination-hero {
        background-image: var(--destination-hero-mobile);
    }

    .destination-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    /* =========================
    DESTINATIONS ARCHIVE - MOBILE
    ========================= */

    .destination-archive-header {
        padding-top: 18px;
        padding-bottom: 20px;
    }

    .destination-archive-header h1 {
        font-size: 34px;
    }

    .destination-archive-header p {
        max-width: none;

        font-size: 15px;
        line-height: 1.4;

        text-wrap: balance;
    }


    /* Filters */

    .destination-filters {
        padding: 10px 0;
    }

    .destination-filter-group {
        display: block;
        margin-bottom: 10px;
    }

    .destination-filter-group + .destination-filter-group {
        margin-top: 10px;
    }

    .destination-filter-group:last-child {
        margin-bottom: 0;
    }

    .destination-filter-options {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;

        gap: 8px;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .destination-filter-link {
        flex: 0 0 auto;

        padding: 7px 11px;

        background: #ffffff;
        border: 1px solid var(--mdo-black);
        border-radius: 3px;

        color: var(--mdo-black);

        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;

        white-space: nowrap;
    }

    .destination-filter-options::-webkit-scrollbar {
        display: none;
    }

    .destination-filter-link:hover,
    .destination-filter-link.active {
        background: #ffffff;
        border-color: var(--mdo-orange);
        color: var(--mdo-orange);
    }


    /* Two-column postcard grid */

    .destination-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;

        padding-top: 28px;
        padding-bottom: 40px;
    }

    .destination-archive-card > a {
        padding: 10px;
    }

    .destination-archive-card-content {
        padding-top: 9px;
    }

    .destination-archive-card-continent {
        margin-bottom: 7px;
        padding: 4px 6px;

        font-size: 9px;
    }

    .destination-archive-card h2 {
        margin-bottom: 6px;

        font-size: 19px;
        line-height: 1.05;
    }

    .destination-archive-card-tagline {
        font-size: 10px;
        line-height: 1.25;
    }

    .species-main-column,
    .species-sidebar {
        display: contents;
    }
    
    .species-info-card {
        width: 100%;
        align-self: stretch;
    }

    .species-size-comparison {
        width: 100%;
    }

    .species-detail-grid {
        display: flex;
        flex-direction: column;
    }

    .species-intro {
        order: 1;
    }

    .species-gallery-section {
        order: 2;
    }  

    .species-sidebar .species-info-card:first-child {
        order: 3;
    }

    .species-size-card {
        order: 4;
    }

    .species-story-section {
        order: 5;
    }

    @media (max-width: 900px) and (max-height: 500px) {

        .species-lightbox {
            padding: 16px 50px 54px;
        }

        .species-lightbox-image-wrap {
            max-width: 68vw;
            max-height: 62vh;
        }

        .species-lightbox-image {
            max-width: 68vw;
            max-height: 62vh;
        }

        .species-lightbox-thumbnail {
            width: 64px;
        }

        .species-lightbox-thumbnails {
            gap: 6px;
            top: calc(100% + 6px);
        }

        .species-lightbox-prev {
            left: 18px;
        }

        .species-lightbox-next {
            right: 18px;
        }

        .species-lightbox-prev,
        .species-lightbox-next {
            font-size: 38px;
        }

        .species-lightbox-close {
            top: 6px;
            right: 12px;
            font-size: 28px;
        }
    }

    .species-lightbox-thumbnails {
        justify-content: flex-start;
        width: max-content;
        max-width: 100%;
    }

    .species-gallery-photo {
        flex: 0 0 calc((100% - 18px) / 2.5);
    }

    .species-gallery-section {
        margin-top: 0px;
    }

    .under-construction-eyebrow {
        font-size: 140px;
    }

    .partners-empty h2 {
        margin: -50px 0 24px;
    }

    .partnership-intro h1 {
        font-size: 35px;        
    }
}

/* Compact desktop header disabled */
.compact-header {
    display: none !important;
}