:root {
    --ink: #102019;
    --muted: #62746a;
    --line: #dce7df;
    --surface: #ffffff;
    --soft: #f3f7f3;
    --brand: #0b6b3f;
    --brand-dark: #062c1d;
    --brand-deep: #031b13;
    --accent: #d5a11e;
    --success: #0f7a4b;
    --shadow: 0 24px 70px rgba(3, 27, 19, .18);
    --hero-height: 840px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

main {
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
}

.preview-ribbon {
    background: var(--brand-deep);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 8px 20px;
    text-align: center;
}

.site-shell {
    position: sticky;
    top: 0;
    z-index: 20;
}

.topbar {
    align-items: center;
    background: var(--brand-deep);
    color: rgba(255, 255, 255, .76);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 18px;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 clamp(18px, 4vw, 56px);
}

.topbar-left {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px 0;
}

.topbar a {
    text-decoration: none;
}

.topbar-icon {
    align-items: center;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    line-height: 1;
    width: 38px;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.topbar-icon svg,
.reserved-link svg {
    display: block;
    fill: currentColor;
    height: 19px;
    width: 19px;
}

.topbar-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    color: var(--brand-deep);
    transform: translateY(-2px);
}

.topbar-icon:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(213, 161, 30, .28);
    outline: 0;
}

.topbar a:hover,
.reserved-link {
    color: #fff;
}

.reserved-link {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    min-height: 32px;
}

.reserved-link svg {
    color: var(--accent);
    height: 18px;
    width: 18px;
}

.reserved-link:hover svg {
    color: #fff;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 18px 48px rgba(3, 27, 19, .10);
    display: flex;
    gap: 34px;
    justify-content: space-between;
    min-height: 92px;
    padding: 0 clamp(18px, 4vw, 56px);
    position: relative;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    min-width: 240px;
    text-decoration: none;
}

.brand img {
    display: block;
    max-height: 64px;
    max-width: 240px;
    object-fit: contain;
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--brand), #0e8a51);
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    display: none;
    width: 64px;
}

.brand-text {
    display: grid;
    font-size: 13px;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 15px;
}

.main-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 2px;
    justify-content: flex-end;
    min-width: 0;
}

.main-nav ul {
    align-items: center;
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #244237;
    font-size: 13px;
    font-weight: 800;
    min-height: 48px;
    padding: 15px 11px;
    position: relative;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    white-space: nowrap;
}

.main-nav a::after {
    background: var(--brand);
    bottom: 7px;
    content: "";
    height: 2px;
    left: 11px;
    opacity: 0;
    position: absolute;
    right: 11px;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--brand);
    outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-nav .modern-menu > li > .modern-submenu {
    align-items: stretch;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 22px 58px rgba(3, 27, 19, .16);
    display: grid;
    gap: 0;
    left: 0;
    min-width: 320px;
    opacity: 0;
    padding: 14px 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 100;
}

.main-nav .modern-menu > li:hover > .modern-submenu,
.main-nav .modern-menu > li:focus-within > .modern-submenu,
.main-nav .modern-menu > li.submenu-open > .modern-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.main-nav .modern-submenu a {
    color: #244237;
    display: block;
    min-height: 0;
    padding: 11px 18px;
    white-space: nowrap;
}

.main-nav li.has-children > a,
.main-nav li.submenu-open > a {
    padding-right: 22px;
}

.main-nav li.has-children > a::before,
.main-nav li.submenu-open > a::before {
    color: var(--brand);
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-30%);
}

.main-nav .modern-submenu a::after {
    bottom: 6px;
    left: 18px;
    right: 18px;
}

.main-nav .modern-submenu .modern-submenu {
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 22px 58px rgba(3, 27, 19, .16);
    display: grid;
    left: calc(100% - 1px);
    min-width: 260px;
    opacity: 0;
    padding: 10px 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 110;
}

.main-nav .modern-submenu li:hover > .modern-submenu,
.main-nav .modern-submenu li:focus-within > .modern-submenu,
.main-nav .modern-submenu li.submenu-open > .modern-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 42px;
    padding: 8px;
    width: 42px;
}

.menu-toggle span {
    background: var(--ink);
    display: block;
    height: 2px;
    margin: 6px 0;
}

.hero {
    order: 1;
    height: var(--hero-height);
    min-height: var(--hero-height);
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
        linear-gradient(112deg, transparent 0 35%, rgba(255, 255, 255, .045) 35.1% 35.4%, transparent 35.5% 100%),
        linear-gradient(112deg, transparent 0 42%, rgba(11, 107, 63, .18) 42.1% 42.5%, transparent 42.6% 100%),
        radial-gradient(circle at 12% 18%, rgba(11, 107, 63, .28), transparent 34%),
        linear-gradient(135deg, #02170f 0%, #042617 52%, #031b13 100%);
}

.hero::before,
.hero::after {
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 4;
}

.hero::before {
    background: rgba(1, 18, 12, .9);
    clip-path: polygon(46.85% 0, 47.25% 0, 34.05% 100%, 33.65% 100%);
}

.hero::after {
    background: rgba(213, 161, 30, .74);
    clip-path: polygon(45.5% 10%, 45.77% 10%, 40.49% 50%, 40.22% 50%);
}

.hero--slidehome {
    display: block;
}

.hero--slidehome .slidehome-source {
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero--slidehome .hero-slider {
    display: none;
}

.hero--slidehome .rev-slider-container,
.hero--slidehome .rev-slider,
.hero--slidehome .rev-slider > ul,
.hero--slidehome .rev-slider > ul > li {
    height: 100%;
    min-height: var(--hero-height);
}

.hero--slidehome .rev-slider {
    display: block;
    overflow: hidden !important;
}

.hero--slidehome .rev-slider > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero--slidehome .rev-slider img {
    max-width: none;
}

.hero--slidehome .tp-bannertimer {
    background: var(--accent);
    height: 4px;
    opacity: .9;
    top: auto;
    bottom: 0;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    inset: 0;
    position: absolute;
}

.hero-slider {
    z-index: 1;
}

.hero-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    left: auto;
    opacity: 0;
    overflow: hidden;
    right: 0;
    transition: opacity 1250ms ease;
    width: 66%;
}

.hero-slide > img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.hero-slide.active {
    animation: heroImageFadeIn 1250ms ease both;
    opacity: 1;
}

@keyframes heroImageFadeIn {
    from {
        filter: saturate(.88) brightness(.92);
        opacity: 0;
    }

    to {
        filter: saturate(1) brightness(1);
        opacity: 1;
    }
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 27, 19, .98) 0%, rgba(3, 27, 19, .95) 32%, rgba(3, 27, 19, .62) 44%, rgba(3, 27, 19, .13) 61%, rgba(3, 27, 19, .04) 78%, rgba(3, 27, 19, .11) 100%),
        linear-gradient(0deg, rgba(3, 27, 19, .24), rgba(3, 27, 19, .02) 48%);
    z-index: 2;
}

.hero-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 46px;
    height: 70px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(.96);
    transition: opacity 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
    width: 70px;
    z-index: 5;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: rgba(11, 107, 63, .72);
    border-color: rgba(213, 161, 30, .86);
    outline: none;
    transform: translateY(-50%) scale(1);
}

.hero:hover .hero-arrow,
.hero:focus-within .hero-arrow {
    opacity: 1;
}

.hero-arrow-prev {
    left: clamp(14px, 3vw, 34px);
}

.hero-arrow-next {
    right: clamp(14px, 3vw, 34px);
}

.hero-content {
    color: #fff;
    max-width: 41%;
    padding: clamp(74px, 9vw, 124px) clamp(20px, 6vw, 88px);
    position: relative;
    z-index: 3;
}

.hero-content > .eyebrow:not(.hero-kicker),
.hero-content > h1:not(.hero-title),
.hero-content > .hero-copy:not(.hero-live-copy),
.hero-content > .hero-actions:not(.hero-live-actions) {
    display: none;
}

.eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(42px, 4.55vw, 66px);
    line-height: 1.04;
    margin: 0;
    max-width: min(680px, 100%);
    overflow-wrap: anywhere;
}

.hero-copy {
    color: rgba(255, 255, 255, .84);
    display: -webkit-box;
    font-size: clamp(17px, 1.6vw, 21px);
    margin: 20px 0 0;
    max-width: min(620px, 100%);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    border: 1px solid transparent;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-width: 158px;
    padding: 13px 20px;
    text-decoration: none;
}

.button.primary {
    background: linear-gradient(135deg, #d9bd77, var(--accent));
    color: #102019;
    box-shadow: 0 18px 42px rgba(202, 164, 93, .25);
}

.button.secondary {
    border-color: rgba(255, 255, 255, .42);
    color: #fff;
}

.hero-indicators {
    display: flex;
    gap: 9px;
    margin-top: 42px;
}

.hero-indicators span {
    background: rgba(255, 255, 255, .42);
    display: block;
    height: 3px;
    transition: width 300ms ease, background 300ms ease;
    width: 28px;
}

.hero-indicators span.active {
    background: var(--accent);
    width: 54px;
}

.hero-panel {
    display: none;
    background: rgba(247, 250, 247, .92);
    border: 1px solid rgba(255, 255, 255, .5);
    bottom: clamp(24px, 5vw, 58px);
    box-shadow: var(--shadow);
    color: var(--brand-deep);
    max-width: 360px;
    padding: 24px;
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    z-index: 4;
}

.hero-panel-image {
    background: rgba(255, 255, 255, .72);
    display: block;
    height: 190px;
    margin: -8px 0 18px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.hero-panel span {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-panel strong {
    display: block;
    font-size: 22px;
    line-height: 1.18;
}

.section {
    padding: clamp(58px, 8vw, 94px) clamp(20px, 5vw, 72px);
}

.section-heading {
    max-width: 680px;
}

.section-heading.wide {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    max-width: none;
}

.section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin: 0;
}

.intro-section {
    background: linear-gradient(180deg, #fff, #f8fbf8);
    order: 6;
}

.benefits-section {
    background:
        linear-gradient(135deg, rgba(11, 107, 63, .10), transparent 36%),
        linear-gradient(180deg, #fff, #f5faf6);
}

.benefits-shell {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(260px, .72fr) 1.28fr;
}

.benefits-stage {
    min-height: 360px;
    position: relative;
}

.benefits-archive-button {
    margin-top: 24px;
}

.benefit-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(240, 249, 244, .94)),
        #fff;
    border: 1px solid rgba(11, 107, 63, .18);
    box-shadow: 0 24px 70px rgba(3, 27, 19, .12);
    inset: 0;
    opacity: 0;
    padding: clamp(28px, 4vw, 52px);
    pointer-events: none;
    position: absolute;
    transform: translateY(14px);
    transition: opacity 850ms ease, transform 850ms ease;
}

.benefit-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.benefit-tag {
    color: var(--accent);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.benefit-card h3 {
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.03;
    margin: 0 0 22px;
    max-width: 780px;
}

.benefit-card p {
    color: #315246;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.55;
    margin: 0 0 12px;
    max-width: 850px;
}

.benefits-indicators {
    display: flex;
    gap: 9px;
    grid-column: 2;
}

.benefits-indicators span {
    background: rgba(11, 107, 63, .24);
    height: 3px;
    width: 44px;
}

.benefits-indicators span.active {
    background: var(--brand);
}

.news-section {
    background: #fff;
    order: 4;
}

.kpi-section {
    background:
        linear-gradient(135deg, rgba(11, 107, 63, .08), transparent 34%),
        linear-gradient(180deg, #ffffff, #f5faf6);
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(260px, .72fr) 1.28fr;
    order: 2;
}

.kpi-heading {
    align-self: center;
    max-width: 520px;
}

.kpi-heading h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.08;
    margin: 0;
}

.kpi-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kpi-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(240, 249, 244, .92)),
        #fff;
    border: 1px solid rgba(11, 107, 63, .18);
    box-shadow: 0 20px 58px rgba(3, 27, 19, .10);
    min-height: 220px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.kpi-card-link {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kpi-card-link:hover,
.kpi-card-link:focus-visible {
    border-color: rgba(11, 107, 63, .42);
    box-shadow: 0 24px 64px rgba(3, 27, 19, .14);
    outline: none;
    transform: translateY(-3px);
}

.kpi-card::before {
    background: linear-gradient(90deg, var(--brand), rgba(11, 107, 63, .16));
    content: "";
    height: 4px;
    left: 30px;
    position: absolute;
    right: 30px;
    top: 0;
}

.kpi-card::after {
    background: radial-gradient(circle, rgba(11, 107, 63, .14), transparent 62%);
    content: "";
    height: 170px;
    position: absolute;
    right: -58px;
    top: -70px;
    width: 170px;
}

.kpi-label,
.kpi-note,
.kpi-cta {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.kpi-cta {
    color: var(--brand);
    margin-top: 18px;
}

.kpi-number {
    animation: kpiRise 700ms ease both;
    align-items: center;
    color: var(--brand-dark);
    display: flex;
    flex-wrap: wrap;
    gap: .08em;
    font-size: clamp(52px, 6.4vw, 86px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .92;
    margin: 28px 0 18px;
    position: relative;
    z-index: 1;
}

.kpi-number.is-enhanced {
    perspective: 900px;
}

.kpi-digit,
.kpi-separator {
    display: inline-flex;
    line-height: 1;
}

.kpi-digit {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0 49%, rgba(6, 44, 29, .09) 50%, rgba(255, 255, 255, .92) 51% 100%);
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: inset 0 -12px 22px rgba(3, 27, 19, .05), 0 14px 30px rgba(3, 27, 19, .08);
    justify-content: center;
    min-width: .72em;
    overflow: hidden;
    padding: .08em .11em .12em;
    position: relative;
    transform-origin: center;
}

.kpi-digit::after {
    background: rgba(3, 27, 19, .16);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
}

.kpi-digit span {
    animation: kpiFlip 1250ms cubic-bezier(.2, .72, .16, 1) both;
    animation-delay: var(--kpi-delay, 0ms);
    backface-visibility: hidden;
    display: block;
    transform-origin: center 52%;
}

.kpi-separator {
    align-items: flex-end;
    color: var(--brand);
    padding: 0 .02em .08em;
}

@keyframes kpiFlip {
    0% {
        opacity: 0;
        transform: rotateX(-88deg) translateY(.22em);
    }

    58% {
        opacity: 1;
        transform: rotateX(12deg) translateY(0);
    }

    100% {
        opacity: 1;
        transform: rotateX(0) translateY(0);
    }
}

@keyframes kpiRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kpi-note {
    color: #315246;
    font-size: 12px;
    line-height: 1.45;
}

.section-link,
.inline-link {
    color: var(--brand);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.section-link:hover,
.inline-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.news-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
}

.news-card {
    min-width: 0;
}

.news-card a,
.activity-card {
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.news-card a:hover,
.activity-card:hover {
    border-color: rgba(11, 107, 63, .32);
    box-shadow: 0 18px 44px rgba(3, 27, 19, .10);
    transform: translateY(-2px);
}

.news-card a {
    grid-template-rows: auto 1fr;
    min-height: 505px;
}

.news-image,
.activity-image {
    aspect-ratio: 16 / 9;
    background-color: var(--brand-deep);
    background-position: center top;
    background-size: cover;
    display: block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.news-image img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    width: 100%;
}

.news-body,
.activity-body {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 22px;
}

.news-date {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-body strong,
.activity-body h3 {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.16;
    margin: 0;
    overflow-wrap: anywhere;
}

.news-body span:last-child {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.news-more {
    align-self: end;
    color: var(--brand);
    font-size: 14px;
    font-weight: 900;
    margin-top: auto;
}

.news-more + .news-more {
    display: none;
}

.news-archive-page .news-archive-section {
    background: linear-gradient(180deg, #fff, #f7fbf8);
}

.news-archive-count {
    border: 1px solid rgba(11, 107, 63, .22);
    color: var(--brand);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 10px 14px;
    text-transform: uppercase;
}

.news-archive-grid {
    align-items: stretch;
}

.news-archive-card a {
    min-height: 470px;
}

.news-archive-card .news-body {
    align-content: start;
}

.news-archive-card .news-more {
    border-top: 1px solid var(--line);
    display: inline-flex;
    justify-self: start;
    padding-top: 14px;
}

.activity-section {
    background: linear-gradient(180deg, #f8fbf8, #edf5ee);
    order: 5;
}

.activity-section .section-heading h2 {
    font-size: clamp(30px, 3.2vw, 44px);
    white-space: nowrap;
}

.activity-carousel {
    margin-top: 36px;
    position: relative;
}

.activity-track {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.activity-track::-webkit-scrollbar {
    height: 8px;
}

.activity-track::-webkit-scrollbar-thumb {
    background: rgba(11, 107, 63, .28);
}

.activity-grid {
    display: flex;
    gap: 22px;
    min-width: max-content;
}

.activity-card {
    flex: 0 0 calc((100vw - clamp(40px, 10vw, 144px) - 44px) / 3);
    max-width: 460px;
    min-width: 340px;
    scroll-snap-align: start;
}

.activity-body p {
    color: var(--muted);
    margin: 10px 0 0;
}

.activity-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(11, 107, 63, .22);
    box-shadow: 0 14px 38px rgba(3, 27, 19, .14);
    color: var(--brand);
    cursor: pointer;
    display: inline-flex;
    font-size: 34px;
    height: 52px;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 52px;
    z-index: 3;
}

.activity-arrow:hover,
.activity-arrow:focus-visible {
    background: var(--brand);
    color: #fff;
    outline: none;
    transform: translateY(-50%) scale(1.04);
}

.activity-arrow-prev {
    left: -18px;
}

.activity-arrow-next {
    right: -18px;
}

.cms-content {
    color: var(--muted);
    font-size: 18px;
    margin-top: 22px;
    max-width: 760px;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .90), rgba(11, 107, 63, .78)),
        url("../images/content/main-slide6.jpg") center top / cover;
    color: #fff;
    padding: clamp(26px, 4vw, 46px) clamp(20px, 5vw, 72px);
}

.page-hero h1 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.08;
    margin: 0;
    max-width: 920px;
}

.page-breadcrumb {
    align-items: center;
    color: rgba(255, 255, 255, .78);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
    margin-top: 14px;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-section {
    background:
        linear-gradient(180deg, #fff, #f5faf6 68%, #fff);
}

.page-layout {
    align-items: start;
    display: grid;
    gap: clamp(28px, 5vw, 64px);
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    margin: 0 auto;
    max-width: 1240px;
}

.page-content {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 18px 54px rgba(3, 27, 19, .08);
    color: #29483c;
    font-size: 18px;
    line-height: 1.72;
    min-width: 0;
    padding: clamp(26px, 4vw, 54px);
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--brand-dark);
    line-height: 1.14;
}

.page-content h2 {
    font-size: clamp(28px, 3.2vw, 42px);
}

.page-content h3 {
    font-size: 25px;
}

.page-content a {
    color: var(--brand);
    font-weight: 800;
}

.page-content img,
.page-content iframe,
.page-content video {
    max-width: 100%;
}

.page-content img,
.page-content video {
    height: auto;
}

.page-content > p:has(img) {
    margin: 28px 0;
}

.page-content > p:has(img) img {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 18px 46px rgba(3, 27, 19, .08);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-content > p:has(img[style*="width: 100%"]) img,
.page-content > p:has(img[style*="width:100%"]) img {
    height: auto !important;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    width: 100% !important;
}

.page-content img[style*="float"] {
    float: none !important;
    margin: 0 auto 22px !important;
}

.page-content iframe {
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    min-height: 420px;
    width: 100%;
}

.page-content table {
    border-collapse: collapse;
    display: block;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.page-content th,
.page-content td {
    border: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
}

.page-content th {
    background: rgba(11, 107, 63, .08);
    color: var(--brand-dark);
}

.support-form-hero {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .96), rgba(11, 107, 63, .76)),
        url("../images/content/main-slide6.jpg") center 42% / cover;
}

.support-form-layout {
    align-items: start;
    display: grid;
    gap: clamp(28px, 5vw, 58px);
    grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
    margin: 0 auto;
    max-width: 1240px;
}

.support-form-copy {
    position: relative;
}

.support-form-copy::before {
    background: linear-gradient(180deg, var(--brand), var(--accent));
    content: "";
    height: 96px;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.support-form-note {
    background: rgba(11, 107, 63, .06);
    border: 1px solid rgba(11, 107, 63, .14);
    margin-top: 28px;
    padding: 18px 20px;
}

.support-form-note span {
    color: var(--brand-dark);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.support-form-note p {
    color: #365b4c;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.support-form-card {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 22px 62px rgba(3, 27, 19, .10);
    min-width: 0;
    overflow: hidden;
}

.support-form-card-head {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .98), rgba(11, 107, 63, .90)),
        linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .08) 48%, transparent 49%);
    color: #fff;
    padding: clamp(24px, 4vw, 40px);
    position: relative;
}

.support-form-card-head::after {
    background: linear-gradient(90deg, var(--accent), var(--brand));
    bottom: 0;
    content: "";
    height: 4px;
    left: clamp(24px, 4vw, 40px);
    position: absolute;
    right: clamp(24px, 4vw, 40px);
}

.support-form-card-head .eyebrow {
    color: var(--accent);
    margin-bottom: 10px;
}

.support-form-card-head h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.06;
    margin: 0;
}

.support-form-card-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, .78);
    line-height: 1.58;
    margin: 14px 0 0;
    max-width: 620px;
}

.support-form {
    padding: clamp(24px, 4vw, 40px);
}

.support-form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-field {
    color: var(--brand-dark);
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.support-field-full {
    grid-column: 1 / -1;
}

.support-field input,
.support-field select,
.support-field textarea {
    appearance: none;
    background: #f8fbf9;
    border: 1px solid rgba(11, 107, 63, .18);
    color: #17352a;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    min-height: 50px;
    padding: 13px 14px;
    text-transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    width: 100%;
}

.support-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--brand) 50%),
        linear-gradient(135deg, var(--brand) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 12px) 21px;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-right: 38px;
}

.support-field textarea {
    min-height: 154px;
    resize: vertical;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(11, 107, 63, .10);
    outline: none;
}

.support-file-field input {
    background: #fff;
    cursor: pointer;
    padding: 11px 12px;
}

.support-file-field small {
    color: #587266;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.support-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.support-form-status {
    color: #365b4c;
    flex: 1 1 250px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
    min-height: 20px;
}

.support-form-status.is-loading {
    color: var(--brand-dark);
}

.support-form-status.is-success {
    color: var(--brand);
}

.support-form-status.is-error {
    color: #9b2d20;
}

.support-form.is-submitting {
    opacity: .78;
}

.support-form.is-submitting button[type="submit"] {
    cursor: wait;
}

.contact-form-hero {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .96), rgba(11, 107, 63, .72)),
        url("../images/content/main-slide3.jpg") center 48% / cover;
}

.contact-map {
    background: #f7fbf8;
    border-bottom: 1px solid rgba(11, 107, 63, .12);
}

.contact-map iframe {
    border: 0;
    display: block;
    height: min(420px, 46vw);
    min-height: 300px;
    width: 100%;
}

.contact-form-layout {
    grid-template-columns: minmax(360px, .96fr) minmax(360px, 1.04fr);
}

.contact-info-content {
    align-self: start;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 251, 248, .96)),
        #fff;
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 22px 62px rgba(3, 27, 19, .08);
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 40px);
}

.contact-info-content > .eyebrow {
    margin: 0;
}

.contact-info-content > div {
    border-top: 1px solid rgba(11, 107, 63, .14);
    color: #315246;
    line-height: 1.58;
    min-width: 0;
    padding-top: 18px;
}

.contact-info-content strong {
    color: var(--brand-dark);
}

.contact-info-content img {
    background: rgba(11, 107, 63, .06);
    border: 1px solid rgba(11, 107, 63, .12);
    box-shadow: none;
    height: 44px !important;
    margin: 0 0 8px !important;
    padding: 8px;
    width: 44px !important;
}

.contact-info-content ul {
    list-style: none;
    margin: 6px 0 0 !important;
    padding: 0;
}

.contact-info-content li {
    color: #315246;
    margin: 0;
}

.antf-legacy-cards {
    display: grid;
    gap: 18px;
    margin: 32px 0;
}

.antf-honours {
    gap: 14px;
    grid-template-columns: 1fr;
}

.antf-honour-card,
.antf-milestone-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 249, .98)),
        radial-gradient(circle at 0 0, rgba(11, 107, 63, .14), transparent 44%);
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 18px 46px rgba(3, 27, 19, .08);
    color: var(--brand-dark);
    overflow: hidden;
    position: relative;
}

.antf-honour-card::before,
.antf-milestone-card::before {
    background: linear-gradient(90deg, var(--brand), rgba(11, 107, 63, .08));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.antf-honour-card {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-areas: "main stat portraits";
    grid-template-columns: minmax(220px, 1fr) minmax(92px, auto) minmax(150px, .72fr);
    min-height: 0;
    padding: 22px 24px 22px 28px;
}

.antf-honour-main {
    grid-area: main;
}

.antf-card-kicker {
    color: var(--accent);
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.antf-honour-main h3 {
    color: var(--brand-dark);
    font-size: clamp(22px, 2.1vw, 30px);
    margin: 0 0 12px;
}

.antf-honour-trainers {
    display: grid;
    gap: 8px;
}

.antf-honour-trainers span {
    align-items: center;
    color: #16392e;
    display: flex;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.antf-honour-trainers span::before {
    background: var(--brand);
    content: "";
    display: inline-block;
    height: 8px;
    margin-right: 10px;
    width: 8px;
}

.antf-honour-stat {
    align-self: center;
    background: var(--brand-deep);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    color: #fff;
    display: grid;
    grid-area: stat;
    justify-items: center;
    min-width: 92px;
    padding: 14px 16px;
}

.antf-honour-stat strong {
    color: #fff;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1;
}

.antf-honour-stat span {
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-top: 8px;
    text-transform: uppercase;
}

.antf-honour-portraits {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-area: portraits;
    justify-content: flex-end;
}

.antf-honour-portraits img,
.antf-milestone-portrait img,
.antf-portrait-placeholder {
    background: #eef5f1;
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(3, 27, 19, .14);
    object-fit: cover;
}

.antf-honour-portraits img,
.antf-honour-portraits .antf-portrait-placeholder {
    height: 104px;
    width: 82px;
}

.antf-portrait-placeholder {
    align-items: center;
    color: rgba(11, 107, 63, .72);
    display: inline-flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
}

.antf-milestones {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.antf-milestone-card {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 168px;
    padding: 24px;
}

.antf-milestone-portrait {
    align-items: center;
    display: flex;
}

.antf-milestone-portrait img,
.antf-milestone-portrait .antf-portrait-placeholder {
    border-radius: 999px;
    height: 112px;
    width: 112px;
}

.antf-milestone-value {
    color: var(--accent);
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.antf-milestone-body h3 {
    color: var(--brand-dark);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.12;
    margin: 0;
}

.antf-season-records {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 249, .98)),
        radial-gradient(circle at 100% 0, rgba(11, 107, 63, .12), transparent 34%);
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 18px 50px rgba(3, 27, 19, .08);
    margin: 34px 0;
    overflow: hidden;
}

.antf-season-records-head {
    align-items: end;
    border-bottom: 1px solid rgba(11, 107, 63, .14);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 24px 28px 20px;
}

.antf-season-records-head h3 {
    color: var(--brand-dark);
    font-size: clamp(24px, 3vw, 36px);
    margin: 0;
}

.antf-season-records-head > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.antf-season-table {
    display: grid;
}

.antf-season-row {
    align-items: center;
    border-top: 1px solid rgba(11, 107, 63, .1);
    display: grid;
    gap: 18px;
    grid-template-columns: 142px minmax(0, 1.25fr) minmax(0, 1fr);
    padding: 16px 28px;
}

.antf-season-row:nth-child(odd):not(.antf-season-row-head) {
    background: rgba(11, 107, 63, .035);
}

.antf-season-row-head {
    background: var(--brand-deep);
    border-top: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    padding-bottom: 13px;
    padding-top: 13px;
    text-transform: uppercase;
}

.antf-season-year {
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    padding: 9px 12px;
    width: fit-content;
}

.antf-season-club {
    color: #16392e;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.antf-season-coaches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.antf-season-coaches > span {
    background: rgba(11, 107, 63, .08);
    border: 1px solid rgba(11, 107, 63, .13);
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    padding: 7px 9px;
}

.antf-gallery {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 249, .96)),
        radial-gradient(circle at 0 0, rgba(11, 107, 63, .12), transparent 38%);
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 16px 46px rgba(3, 27, 19, .08);
    margin: 34px 0;
    padding: clamp(18px, 3vw, 28px);
}

.antf-gallery-head {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
}

.antf-gallery-head .eyebrow {
    margin-bottom: 6px;
}

.antf-gallery-head h3 {
    color: var(--brand-dark);
    font-size: clamp(24px, 3vw, 34px);
    margin: 0;
}

.antf-gallery-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.antf-gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
}

.antf-gallery:not(.is-expanded) .antf-gallery-item-collapsed {
    display: none;
}

.antf-gallery-item {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .12);
    color: var(--brand-dark);
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.antf-gallery-item:hover,
.antf-gallery-item:focus-visible {
    border-color: rgba(11, 107, 63, .45);
    box-shadow: 0 14px 34px rgba(3, 27, 19, .14);
    outline: none;
    transform: translateY(-2px);
}

.antf-gallery-image {
    background-color: rgba(11, 107, 63, .08);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.antf-gallery-caption {
    color: #29483c;
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    padding: 10px 12px;
}

.antf-gallery-image-missing {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .94), rgba(11, 107, 63, .72));
    color: rgba(255, 255, 255, .8);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: center;
    padding: 18px;
    text-align: center;
}

.antf-gallery-empty {
    color: var(--muted);
    padding: 22px;
}

.antf-gallery-empty p {
    margin: 0;
}

.antf-gallery-actions {
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
    margin-top: 18px;
    padding-top: 18px;
}

.antf-gallery-toggle {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: 1px solid rgba(11, 107, 63, .34);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    padding: 13px 22px;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.antf-gallery-toggle:hover,
.antf-gallery-toggle:focus-visible {
    background: linear-gradient(135deg, #e3b63a, var(--accent));
    border-color: rgba(213, 161, 30, .62);
    box-shadow: 0 14px 32px rgba(3, 27, 19, .14);
    color: var(--brand-deep);
    outline: none;
    transform: translateY(-1px);
}

.antf-gallery.is-expanded .antf-gallery-toggle {
    background: #fff;
    color: var(--brand-dark);
}

.antf-lightbox[hidden] {
    display: none;
}

.antf-lightbox-open {
    overflow: hidden;
}

.antf-lightbox {
    align-items: center;
    background: rgba(2, 20, 13, .92);
    display: grid;
    inset: 0;
    justify-items: center;
    padding: clamp(16px, 4vw, 42px);
    position: fixed;
    z-index: 9999;
}

.antf-lightbox-figure {
    display: grid;
    gap: 14px;
    margin: 0;
    max-width: min(1180px, 92vw);
}

.antf-lightbox-img {
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
    display: block;
    max-height: 78vh;
    max-width: 100%;
    object-fit: contain;
}

.antf-lightbox-caption {
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.antf-lightbox button {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .32);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    position: absolute;
}

.antf-lightbox button:hover,
.antf-lightbox button:focus-visible {
    background: var(--brand);
    outline: none;
}

.antf-lightbox-close {
    min-height: 42px;
    padding: 0 16px;
    right: 20px;
    top: 20px;
}

.antf-lightbox-prev,
.antf-lightbox-next {
    font-size: 38px;
    height: 62px;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
}

.antf-lightbox-prev {
    left: 20px;
}

.antf-lightbox-next {
    right: 20px;
}

.page-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 150px;
}

.page-sidebar-card {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .16);
    box-shadow: 0 14px 38px rgba(3, 27, 19, .07);
    display: grid;
    gap: 6px;
    padding: 22px;
}

.page-sidebar-card a {
    border-top: 1px solid var(--line);
    color: #244237;
    font-weight: 800;
    padding: 12px 0 6px;
    text-decoration: none;
}

.page-sidebar-card a:hover {
    color: var(--brand);
}

.page-sidebar-card a.active {
    color: var(--brand);
}

.nucleo-hero {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .94), rgba(11, 107, 63, .78)),
        url("../images/content/main-slide6.jpg") center 36% / cover;
}

.nucleo-layout {
    align-items: start;
    display: grid;
    gap: clamp(28px, 5vw, 62px);
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
    margin: 0 auto;
    max-width: 1240px;
}

.nucleo-shell {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 18px 54px rgba(3, 27, 19, .08);
    min-width: 0;
    overflow: hidden;
}

.nucleo-head {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .98), rgba(11, 107, 63, .92)),
        linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .08) 48%, transparent 49%);
    color: #fff;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: clamp(24px, 4vw, 42px);
    position: relative;
}

.nucleo-head::after {
    background: linear-gradient(135deg, var(--accent), rgba(11, 107, 63, .95));
    bottom: 0;
    content: "";
    height: 4px;
    left: clamp(24px, 4vw, 42px);
    position: absolute;
    right: clamp(24px, 4vw, 42px);
}

.nucleo-head .eyebrow {
    color: var(--accent);
    margin: 0 0 8px;
}

.nucleo-head h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.05;
    margin: 0;
}

.nucleo-badge {
    border: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .82);
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    padding: 10px 13px;
    text-transform: uppercase;
}

.nucleo-intro {
    border-bottom: 1px solid var(--line);
    color: #29483c;
    line-height: 1.72;
    padding: clamp(24px, 4vw, 42px);
}

.nucleo-tabs {
    display: grid;
}

.nucleo-menu-card {
    gap: 0;
    padding: 22px 22px 18px;
}

.nucleo-tab-list {
    background: transparent;
    border-bottom: 0;
    display: grid;
    gap: 0;
    overflow: visible;
    padding: 0;
}

.nucleo-tab-button {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    color: #244237;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.3;
    min-height: 0;
    padding: 13px 0 10px;
    text-align: left;
    width: 100%;
}

.nucleo-tab-button::after {
    color: rgba(11, 107, 63, .72);
    content: ">";
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    transform: translateY(1px);
}

.nucleo-tab-button:hover,
.nucleo-tab-button:focus-visible {
    color: var(--brand);
    outline: none;
}

.nucleo-tab-button.active {
    background: rgba(11, 107, 63, .06);
    border-left: 4px solid var(--brand);
    border-top-color: transparent;
    color: var(--brand-dark);
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.nucleo-tab-button.active::after {
    color: var(--brand);
}

.nucleo-tab-panel {
    padding: clamp(24px, 4vw, 44px);
}

.nucleo-tab-panel[hidden] {
    display: none;
}

.nucleo-remote-content {
    color: #29483c;
    font-size: 17px;
    line-height: 1.72;
}

.nucleo-remote-content p {
    margin: 0 0 18px;
}

.nucleo-remote-content p:empty {
    display: none;
}

.nucleo-remote-content > *:first-child {
    margin-top: 0;
}

.nucleo-remote-content > *:last-child {
    margin-bottom: 0;
}

.nucleo-remote-content h1,
.nucleo-remote-content h2,
.nucleo-remote-content h3,
.nucleo-remote-content h4 {
    color: var(--brand-dark);
    line-height: 1.14;
}

.nucleo-remote-content a {
    color: var(--brand);
    font-weight: 800;
}

.nucleo-remote-content img,
.nucleo-remote-content iframe,
.nucleo-remote-content video {
    max-width: 100%;
}

.nucleo-remote-content img,
.nucleo-remote-content video {
    height: auto !important;
}

.nucleo-remote-content img {
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 14px 38px rgba(3, 27, 19, .08);
    display: block;
    margin: 18px auto;
    max-height: 720px;
    object-fit: contain;
    width: auto !important;
}

.nucleo-remote-content img[style*="float"] {
    float: none !important;
    margin: 0 auto 22px !important;
}

.nucleo-remote-content iframe {
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    min-height: 360px;
    width: 100%;
}

.nucleo-remote-content table {
    border-collapse: collapse;
    display: block;
    margin: 24px 0;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.nucleo-remote-content th,
.nucleo-remote-content td {
    border: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
}

.nucleo-remote-content th,
.nucleo-remote-content tr:first-child td {
    background: rgba(11, 107, 63, .08);
    color: var(--brand-dark);
    font-weight: 900;
}

.nucleo-remote-content ul,
.nucleo-remote-content ol {
    padding-left: 22px;
}

.nucleo-remote-content a[href$=".pdf"],
.nucleo-remote-content a[href*=".pdf?"],
.nucleo-remote-content a[href$=".PDF"],
.nucleo-remote-content a[href*=".PDF?"] {
    align-items: center;
    background: rgba(11, 107, 63, .06);
    border: 1px solid rgba(11, 107, 63, .16);
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 900;
    gap: 10px;
    margin: 6px 8px 6px 0;
    padding: 10px 13px;
    text-decoration: none;
}

.nucleo-remote-content a[href$=".pdf"]::before,
.nucleo-remote-content a[href*=".pdf?"]::before,
.nucleo-remote-content a[href$=".PDF"]::before,
.nucleo-remote-content a[href*=".PDF?"]::before {
    background: var(--accent);
    color: #102019;
    content: "PDF";
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 3px 5px;
}

.nucleo-inline-gallery {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr));
    margin: 26px 0 0;
}

.nucleo-inline-gallery a {
    aspect-ratio: 4 / 3;
    background: #eaf2ee;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 12px 28px rgba(3, 27, 19, .07);
    display: block;
    overflow: hidden;
}

.nucleo-inline-gallery img {
    border: 0;
    box-shadow: none;
    height: 100% !important;
    margin: 0;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
    width: 100% !important;
}

.nucleo-inline-gallery a:hover img,
.nucleo-inline-gallery a:focus-visible img {
    filter: saturate(1.08);
    transform: scale(1.04);
}

.nucleo-sidebar .page-sidebar-card:first-child {
    max-height: 64vh;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.nucleo-sidebar .page-sidebar-card a.active {
    background: rgba(11, 107, 63, .06);
    border-left: 4px solid var(--brand);
    color: var(--brand);
    margin-left: -10px;
    padding-left: 10px;
}

.nucleo-empty {
    border: 1px dashed rgba(11, 107, 63, .28);
    margin: 0;
}

.nucleo-empty-link {
    border-color: rgba(11, 107, 63, .24);
    color: var(--brand-dark);
    margin-top: 14px;
    min-width: 0;
}

.quick-links {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    max-width: 1120px;
}

.quick-links a {
    background: #fff;
    border: 1px solid var(--line);
    min-height: 132px;
    padding: 24px;
    text-decoration: none;
}

.quick-links span {
    color: var(--brand);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.quick-links strong {
    font-size: 20px;
}

.training-section {
    background:
        linear-gradient(180deg, rgba(11, 107, 63, .06), transparent 260px),
        var(--soft);
    order: 7;
}

.opinion-section {
    background: #fff;
    order: 8;
}

.opinion-section .news-card,
.opinion-section .news-card a {
    min-height: 515px;
    overflow: hidden;
}

.opinion-section .news-image {
    aspect-ratio: 16 / 7.5;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    width: 100%;
}

.opinion-section .news-image img {
    object-fit: contain;
    object-position: center;
}

.opinion-section .news-body span:not(.news-date):not(.news-more) {
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opinion-section .news-more {
    color: var(--brand);
    display: inline-flex;
    -webkit-line-clamp: initial;
    overflow: visible;
}

.filter-tabs {
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    padding: 4px;
}

.filter-tabs a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 14px;
    text-decoration: none;
}

.filter-tabs a.active {
    background: linear-gradient(135deg, var(--brand), #0d8350);
    color: #fff;
}

.notice {
    background: #fff7dd;
    border: 1px solid #ead08a;
    color: #6d5512;
    margin: 26px 0 0;
    max-width: 840px;
    padding: 14px 16px;
}

.notice.live {
    background: #e8f4ee;
    border-color: #bbdac9;
    color: #174b32;
}

.course-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.course-card {
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    min-height: 505px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(3, 27, 19, .08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.course-card:hover {
    border-color: rgba(11, 107, 63, .30);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.course-image {
    aspect-ratio: 16 / 9;
    background-color: #d7e1ea;
    background-position: center top;
    background-size: cover;
}

.course-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.course-type {
    align-self: flex-start;
    background: #e8f4ee;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
    text-transform: uppercase;
}

.course-card h3 {
    display: -webkit-box;
    font-size: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.16;
    margin: 12px 0 14px;
    overflow: hidden;
}

.course-meta {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1.4fr;
    margin: 0 0 12px;
    padding: 10px 0;
}

.course-meta dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.course-meta dd {
    margin: 2px 0 0;
}

.course-extra {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin: -2px 0 12px;
}

.course-extra + .course-extra {
    display: none;
}

.course-card-inicial .course-extra {
    display: none;
}

.course-extra div {
    background: #f4faf6;
    border: 1px solid #d8e8de;
    padding: 8px;
}

.course-extra dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.course-extra dd {
    color: var(--brand);
    font-weight: 800;
    margin: 2px 0 0;
}

.course-body p {
    display: none;
}

.course-link {
    color: var(--brand);
    font-size: 0;
    font-weight: 800;
    margin-top: auto;
    text-decoration: none;
}

.course-link::after {
    content: "Ver detalhes";
    font-size: 14px;
}

.course-link:hover {
    color: var(--brand-dark);
}

.empty-state {
    background: #fff;
    border: 1px solid var(--line);
    margin-top: 34px;
    padding: 32px;
}

.tool-section {
    padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.tool-container {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
}

.tool-hero .eyebrow {
    color: var(--accent);
    margin: 0 0 10px;
}

.modern-filter-panel {
    align-items: end;
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 18px 54px rgba(3, 27, 19, .08);
    display: grid;
    gap: 16px;
    grid-template-columns: 1.2fr .9fr .8fr .8fr auto;
    margin: 30px 0 0;
    padding: 20px;
}

.modern-filter-panel label {
    color: var(--brand-dark);
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.modern-filter-panel input,
.modern-filter-panel select {
    background: #f9fcfa;
    border: 1px solid var(--line);
    color: var(--ink);
    font: inherit;
    min-height: 46px;
    padding: 10px 12px;
    text-transform: none;
    width: 100%;
}

.modern-filter-panel input:focus,
.modern-filter-panel select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(11, 107, 63, .12);
    outline: none;
}

.modern-filter-actions {
    display: flex;
    gap: 10px;
}

.button.ghost,
.button.secondary-dark {
    background: #fff;
    border-color: rgba(11, 107, 63, .24);
    color: var(--brand-dark);
    min-width: auto;
}

.button.ghost:hover,
.button.secondary-dark:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.tool-course-grid {
    align-items: stretch;
}

.tool-course-card {
    cursor: pointer;
    min-height: 455px;
}

.tool-course-card:focus-visible {
    outline: 3px solid rgba(213, 161, 30, .55);
    outline-offset: 4px;
}

.tool-course-card .course-link {
    cursor: pointer;
}

.tool-modal[hidden] {
    display: none;
}

.tool-modal-open {
    overflow: hidden;
}

.tool-modal {
    align-items: center;
    background: rgba(2, 20, 13, .78);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: clamp(16px, 4vw, 42px);
    position: fixed;
    z-index: 9999;
}

.tool-modal-panel {
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
    max-height: min(86vh, 860px);
    max-width: 1040px;
    overflow: auto;
    position: relative;
    width: min(100%, 1040px);
}

.tool-modal-close {
    background: var(--brand-dark);
    border: 0;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    padding: 11px 16px;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
}

.tool-modal-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    min-height: 520px;
}

.tool-modal-image {
    background:
        linear-gradient(135deg, rgba(3, 27, 19, .72), rgba(11, 107, 63, .12)),
        var(--brand-dark);
    background-position: center top;
    background-size: cover;
    min-height: 420px;
}

.tool-modal-content {
    padding: clamp(28px, 5vw, 56px);
}

.tool-modal-content h2 {
    color: var(--brand-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    margin: 12px 0 22px;
}

.tool-detail-list dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.tool-detail-list div {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 6px;
    padding-top: 12px;
}

.tool-detail-list dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tool-detail-list dd {
    color: #244237;
    font-weight: 800;
    margin: 0;
}

.tool-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.document-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.document-item {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(11, 107, 63, .14);
    box-shadow: 0 12px 34px rgba(3, 27, 19, .06);
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px;
}

.document-item h3 {
    color: var(--brand-dark);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.18;
    margin: 7px 0 6px;
}

.document-item p {
    color: var(--muted);
    font-weight: 800;
    margin: 0;
}

.document-type {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.document-unavailable {
    color: var(--muted);
    font-weight: 800;
}

.service-band {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(202, 164, 93, .10), transparent 38%),
        var(--brand-dark);
    color: #fff;
    display: grid;
    gap: 32px;
    grid-template-columns: 1.2fr 1fr;
    order: 3;
}

.service-list {
    display: grid;
    gap: 10px;
}

.service-list a {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 800;
    padding: 16px 18px;
    text-decoration: none;
}

.service-list a:hover {
    background: rgba(255, 255, 255, .16);
}

.service-list a.service-contact-link {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(37, 211, 102, .22), rgba(217, 165, 27, .22)),
        rgba(255, 255, 255, .14);
    border-color: rgba(37, 211, 102, .42);
    display: grid;
    gap: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 76px;
}

.service-list a.service-contact-link:hover {
    background:
        linear-gradient(135deg, rgba(37, 211, 102, .30), rgba(217, 165, 27, .28)),
        rgba(255, 255, 255, .18);
    border-color: rgba(37, 211, 102, .62);
}

.service-contact-link svg {
    background: #25d366;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(3, 27, 19, .24);
    fill: #062c20;
    height: 42px;
    padding: 8px;
    width: 42px;
}

.service-contact-copy {
    display: grid;
    gap: 3px;
}

.service-contact-copy small {
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sponsor-section {
    background:
        linear-gradient(180deg, #fff, #f5faf6),
        var(--surface);
    order: 9;
}

.sponsor-carousel {
    margin-top: 34px;
    position: relative;
}

.sponsor-track {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.sponsor-track::-webkit-scrollbar {
    height: 8px;
}

.sponsor-track::-webkit-scrollbar-thumb {
    background: rgba(11, 107, 63, .26);
}

.sponsor-grid {
    display: flex;
    gap: 16px;
    min-width: max-content;
}

.sponsor-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(3, 27, 19, .06);
    display: flex;
    flex: 0 0 220px;
    height: 132px;
    justify-content: center;
    padding: 28px;
    scroll-snap-align: start;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sponsor-card:hover {
    border-color: rgba(11, 107, 63, .28);
    box-shadow: 0 18px 44px rgba(3, 27, 19, .10);
    transform: translateY(-2px);
}

.sponsor-card img {
    display: block;
    max-height: 76px;
    max-width: 100%;
    object-fit: contain;
}

.sponsor-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(11, 107, 63, .22);
    box-shadow: 0 14px 38px rgba(3, 27, 19, .14);
    color: var(--brand);
    cursor: pointer;
    display: inline-flex;
    font-size: 32px;
    height: 48px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 48px;
    z-index: 3;
}

.sponsor-arrow:hover,
.sponsor-arrow:focus-visible {
    background: var(--brand);
    color: #fff;
    outline: none;
    transform: translateY(-50%) scale(1.04);
}

.sponsor-arrow-prev {
    left: -18px;
}

.sponsor-arrow-next {
    right: -18px;
}

.site-footer {
    align-items: center;
    background: var(--brand-deep);
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 30px clamp(20px, 5vw, 72px);
}

.site-footer p {
    color: rgba(255, 255, 255, .72);
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

@media (max-width: 1180px) {
    .site-header {
        gap: 18px;
    }

    .main-nav a {
        font-size: 12px;
        padding-left: 9px;
        padding-right: 9px;
    }

    .main-nav a::after {
        left: 9px;
        right: 9px;
    }

    .main-nav .modern-submenu a {
        font-size: 13px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 900px) {
    .site-header {
        gap: 16px;
        min-height: 86px;
        z-index: 125;
    }

    .brand {
        flex: 1;
        min-width: 0;
    }

    .menu-toggle {
        align-items: center;
        display: block;
        flex: 0 0 auto;
        position: relative;
        z-index: 122;
    }

    .main-nav {
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 26px 56px rgba(3, 27, 19, .16);
        display: none;
        flex-direction: column;
        height: min(72vh, calc(100vh - 118px));
        height: min(72dvh, calc(100dvh - 118px));
        left: 0;
        max-height: min(72vh, calc(100vh - 118px));
        max-height: min(72dvh, calc(100dvh - 118px));
        overscroll-behavior: contain;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 10px 20px 22px;
        position: absolute;
        right: 0;
        touch-action: pan-y;
        top: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 120;
    }

    .main-nav ul {
        align-items: stretch;
        display: grid;
        gap: 0;
        width: 100%;
    }

    .main-nav .modern-menu > li {
        border-bottom: 1px solid rgba(11, 107, 63, .09);
    }

    .main-nav .modern-menu > li > .modern-submenu,
    .main-nav .modern-menu > li:hover > .modern-submenu,
    .main-nav .modern-menu > li:focus-within > .modern-submenu,
    .main-nav .modern-submenu .modern-submenu,
    .main-nav .modern-submenu li:hover > .modern-submenu,
    .main-nav .modern-submenu li:focus-within > .modern-submenu {
        background: rgba(11, 107, 63, .04);
        border: 0;
        box-shadow: none;
        display: none;
        left: auto;
        margin: 0 0 6px 14px;
        min-width: 0;
        opacity: 0;
        padding: 0;
        pointer-events: none;
        position: static;
        transform: none;
        visibility: hidden;
        width: auto;
    }

    .main-nav .modern-menu li.submenu-open > .modern-submenu {
        display: grid;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav a {
        align-items: center;
        display: flex;
        min-height: 46px;
        overflow-wrap: anywhere;
        padding: 13px 28px 13px 0;
        white-space: normal;
        width: 100%;
    }

    .main-nav a::after {
        bottom: 4px;
        left: 0;
        right: 28px;
    }

    .main-nav .modern-submenu a {
        border-top: 1px solid rgba(11, 107, 63, .07);
        font-size: 13px;
        padding: 11px 28px 11px 14px;
    }

    .main-nav .modern-submenu .modern-submenu {
        background: rgba(11, 107, 63, .06);
        margin-left: 16px;
    }

    .main-nav li.has-children > a::before,
    .main-nav li.submenu-open > a::before {
        right: 8px;
        transition: transform 180ms ease;
    }

    .main-nav li.submenu-open > a::before {
        transform: translateY(-30%) rotate(180deg);
    }

    .section-heading.wide,
    .benefits-shell,
    .kpi-section,
    .nucleo-layout,
    .page-layout,
    .support-form-layout,
    .service-band,
    .site-footer {
        align-items: flex-start;
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }

    .nucleo-head {
        align-items: flex-start;
        display: grid;
    }

    .nucleo-badge {
        justify-self: start;
    }

    .nucleo-sidebar {
        order: -1;
    }

    .nucleo-sidebar .page-sidebar-card:first-child {
        max-height: none;
    }

    .benefits-stage {
        min-height: 430px;
    }

    .benefits-indicators {
        grid-column: auto;
    }

    .news-grid,
    .quick-links,
    .course-grid {
        grid-template-columns: 1fr;
    }

    .modern-filter-panel {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .modern-filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tool-modal {
        align-items: stretch;
        padding: 0;
    }

    .tool-modal-panel {
        max-height: 100vh;
        width: 100%;
    }

    .tool-modal-grid {
        grid-template-columns: 1fr;
    }

    .tool-modal-image {
        min-height: 260px;
    }

    .document-item {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .document-item .button {
        width: fit-content;
    }

    .antf-honour-card {
        grid-template-areas:
            "main stat"
            "portraits portraits";
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .antf-honour-portraits {
        justify-content: flex-start;
    }

    .news-card a,
    .opinion-section .news-card,
    .opinion-section .news-card a {
        min-height: 0;
    }

    .news-body {
        padding: 18px;
    }

    .news-body strong {
        font-size: 18px;
        line-height: 1.22;
    }

    .news-body span:not(.news-date):not(.news-more),
    .opinion-section .news-body span:not(.news-date):not(.news-more) {
        display: block;
        overflow: visible;
    }

    .opinion-section .news-image {
        aspect-ratio: 16 / 10;
        background-size: contain;
    }

    .activity-card {
        flex-basis: min(82vw, 400px);
    }

    .activity-arrow-prev {
        left: 4px;
    }

    .activity-arrow-next {
        right: 4px;
    }

    .sponsor-card {
        flex-basis: 190px;
    }

    .sponsor-arrow-prev {
        left: 4px;
    }

    .sponsor-arrow-next {
        right: 4px;
    }
}

@media (max-width: 760px) {
    .hero {
        background: var(--brand-deep);
        display: block;
        height: auto;
        min-height: 0;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-slider {
        height: 300px;
        position: relative;
    }

    .hero-slide {
        background-position: center top;
        background-size: cover;
        clip-path: none;
        left: 0;
        width: 100%;
    }

    .hero-slide > img {
        object-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(3, 27, 19, .12), rgba(3, 27, 19, .02) 44%, rgba(3, 27, 19, .16));
        bottom: auto;
        height: 300px;
        top: 0;
    }

    .hero-content {
        background:
            linear-gradient(180deg, rgba(3, 27, 19, .96), rgba(3, 27, 19, 1)),
            radial-gradient(circle at 20% 0%, rgba(11, 107, 63, .32), transparent 48%);
        max-width: none;
        padding: 34px 28px 44px;
    }

    .antf-honour-card {
        gap: 16px;
        grid-template-areas:
            "main"
            "stat"
            "portraits";
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .antf-honour-stat {
        justify-self: start;
        min-width: 84px;
    }

    .antf-honour-portraits img,
    .antf-honour-portraits .antf-portrait-placeholder {
        height: 104px;
        width: 82px;
    }

    .antf-milestone-card {
        gap: 14px;
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .antf-milestone-portrait img,
    .antf-milestone-portrait .antf-portrait-placeholder {
        height: 104px;
        width: 104px;
    }

    .antf-season-records-head {
        align-items: start;
        display: grid;
        padding: 22px;
    }

    .antf-season-row-head {
        display: none;
    }

    .antf-season-row {
        gap: 12px;
        grid-template-columns: 1fr;
        padding: 18px 22px;
    }

    .antf-season-row > span::before {
        color: var(--muted);
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .12em;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .antf-season-year {
        width: fit-content;
    }
}

@media (max-width: 560px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .kpi-card {
        min-height: 190px;
        padding: 24px;
    }

    .kpi-card::before {
        left: 24px;
        right: 24px;
    }

    .activity-section .section-heading h2 {
        white-space: normal;
    }

    .topbar {
        align-items: flex-start;
        display: grid;
        gap: 6px;
        padding-bottom: 8px;
        padding-top: 8px;
    }

    .topbar-left {
        gap: 6px;
    }

    .topbar-icon {
        height: 34px;
        width: 34px;
    }

    .topbar-icon svg {
        height: 18px;
        width: 18px;
    }

    .reserved-link {
        min-height: 28px;
    }

    .site-header {
        padding: 0 14px;
    }

    .main-nav {
        height: min(70vh, calc(100vh - 146px));
        height: min(70dvh, calc(100dvh - 146px));
        max-height: min(70vh, calc(100vh - 146px));
        max-height: min(70dvh, calc(100dvh - 146px));
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        max-height: 48px;
        max-width: 178px;
    }

    .brand-text span {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    .hero-slider {
        height: 250px;
    }

    .hero-overlay {
        height: 250px;
    }

    .page-hero {
        padding: 28px 20px;
    }

    .page-hero h1 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .page-breadcrumb {
        margin-top: 10px;
    }

    .page-content {
        font-size: 16px;
        padding: 22px;
    }

    .support-form-card-head,
    .support-form {
        padding: 22px;
    }

    .support-form-grid {
        grid-template-columns: 1fr;
    }

    .support-form-actions {
        align-items: stretch;
        display: grid;
    }

    .modern-filter-actions,
    .tool-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .support-form-actions .button {
        width: 100%;
    }

    .modern-filter-actions .button,
    .tool-modal-actions .button,
    .document-item .button {
        width: 100%;
    }

    .page-content iframe {
        min-height: 260px;
    }

    .nucleo-tab-list {
        padding: 0;
    }

    .nucleo-tab-button {
        font-size: 15px;
        min-height: 0;
        padding: 12px 0 9px;
    }

    .nucleo-tab-panel,
    .nucleo-intro {
        padding: 22px;
    }

    .nucleo-remote-content {
        font-size: 16px;
    }

    .nucleo-remote-content iframe {
        min-height: 250px;
    }

    .antf-gallery-head {
        align-items: flex-start;
        display: grid;
    }

    .antf-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(138px, 100%), 1fr));
    }

    .antf-gallery-actions {
        justify-content: stretch;
    }

    .antf-gallery-toggle {
        width: 100%;
    }

    .antf-lightbox {
        padding: 54px 12px 72px;
    }

    .antf-lightbox-img {
        max-height: 70vh;
    }

    .antf-lightbox-close {
        right: 12px;
        top: 12px;
    }

    .antf-lightbox-prev,
    .antf-lightbox-next {
        bottom: 12px;
        height: 48px;
        top: auto;
        transform: none;
        width: 48px;
    }

    .antf-lightbox-prev {
        left: calc(50% - 58px);
    }

    .antf-lightbox-next {
        right: calc(50% - 58px);
    }

    .hero-content {
        padding-bottom: 42px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .filter-tabs {
        overflow-x: auto;
        width: 100%;
    }

    .course-meta {
        grid-template-columns: 1fr;
    }

    .news-grid {
        gap: 18px;
    }

    .news-image,
    .opinion-section .news-image {
        aspect-ratio: 16 / 10.5;
    }

    .news-body {
        padding: 16px;
    }
}
