:root {
    --rbn-ea-green: #103f2c;
    --rbn-ea-green-2: #18583e;
    --rbn-ea-gold: #d4af37;
    --rbn-ea-cream: #f7f1e3;
    --rbn-ea-ink: #17211d;
    --rbn-ea-muted: #647069;
    --rbn-ea-white: #ffffff;
    --rbn-ea-border: rgba(16, 63, 44, 0.14);
    --rbn-ea-shadow: 0 18px 45px rgba(16, 63, 44, 0.10);
}

.rbn-ea-page,
.rbn-ea-page * {
    box-sizing: border-box;
}

.rbn-ea-page {
    width: min(100%, 1440px);
    margin: 0 auto;
    color: var(--rbn-ea-ink);
    font-family: inherit;
}

.rbn-ea-hero {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: clamp(42px, 8vw, 100px);
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(8, 40, 27, .96), rgba(8, 40, 27, .68)),
        radial-gradient(circle at 82% 25%, rgba(212, 175, 55, .35), transparent 30%),
        var(--rbn-ea-green);
    color: var(--rbn-ea-white);
    border-radius: 0 0 28px 28px;
}

.rbn-ea-hero__content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.rbn-ea-eyebrow,
.rbn-ea-kicker {
    display: inline-block;
    color: var(--rbn-ea-gold);
    font-size: .78rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rbn-ea-hero h1 {
    margin: 12px 0 16px;
    color: var(--rbn-ea-gold);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.04em;
}

.rbn-ea-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.rbn-ea-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.rbn-ea-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--rbn-ea-gold);
    color: #12271e !important;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.rbn-ea-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.rbn-ea-button--outline {
    background: transparent;
    color: var(--rbn-ea-white) !important;
    border: 1px solid rgba(255,255,255,.5);
}

.rbn-ea-hero__facts {
    position: absolute;
    right: clamp(22px, 5vw, 70px);
    top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 440px;
    justify-content: flex-end;
}

.rbn-ea-hero__facts span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.88);
    font-size: .78rem;
}

.rbn-ea-ticker {
    margin: 18px auto 0;
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: auto 1fr;
    overflow: hidden;
    border-radius: 10px;
    background: #8f1717;
    color: white;
}

.rbn-ea-ticker strong {
    padding: 12px 18px;
    background: #621010;
    color: var(--rbn-ea-gold);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.rbn-ea-ticker__track {
    display: flex;
    gap: 36px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 18px;
}

.rbn-ea-ticker__track a {
    color: white !important;
    text-decoration: none !important;
    animation: rbnTicker 28s linear infinite;
}

@keyframes rbnTicker {
    from { transform: translateX(100%); }
    to { transform: translateX(-220%); }
}

.rbn-ea-section {
    padding: clamp(44px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.rbn-ea-section--dark {
    background: var(--rbn-ea-green);
    color: var(--rbn-ea-white);
    border-radius: 28px;
}

.rbn-ea-section--dark h2,
.rbn-ea-section--dark h3,
.rbn-ea-section--dark .rbn-ea-card h3 a {
    color: var(--rbn-ea-gold);
}

.rbn-ea-section--dark p,
.rbn-ea-section--dark .rbn-ea-meta,
.rbn-ea-section--dark .rbn-ea-section-heading > a {
    color: rgba(255,255,255,.86);
}

.rbn-ea-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.rbn-ea-section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.rbn-ea-section-heading > a {
    color: var(--rbn-ea-green);
    font-weight: 800;
}

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

.rbn-ea-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rbn-ea-card,
.rbn-ea-featured__lead,
.rbn-ea-mini-card,
.rbn-ea-region {
    overflow: hidden;
    border: 1px solid var(--rbn-ea-border);
    border-radius: 18px;
    background: var(--rbn-ea-white);
    box-shadow: var(--rbn-ea-shadow);
}

.rbn-ea-card__image,
.rbn-ea-featured__image,
.rbn-ea-mini-card__image,
.rbn-ea-list-card__image {
    display: block;
    overflow: hidden;
    background: #dfe9e3;
}

.rbn-ea-card__image {
    aspect-ratio: 16 / 10;
}

.rbn-ea-featured__image {
    aspect-ratio: 16 / 9;
}

.rbn-ea-card__image img,
.rbn-ea-featured__image img,
.rbn-ea-mini-card__image img,
.rbn-ea-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.rbn-ea-card:hover img,
.rbn-ea-featured__lead:hover img,
.rbn-ea-mini-card:hover img {
    transform: scale(1.045);
}

.rbn-ea-card__body,
.rbn-ea-featured__body {
    padding: 20px;
}

.rbn-ea-card h3,
.rbn-ea-featured h3,
.rbn-ea-mini-card h3,
.rbn-ea-list-card h4 {
    margin: 8px 0 0;
    line-height: 1.26;
}

.rbn-ea-card h3 a,
.rbn-ea-featured h3 a,
.rbn-ea-mini-card h3 a,
.rbn-ea-list-card h4 a {
    color: var(--rbn-ea-ink);
    text-decoration: none;
}

.rbn-ea-card p,
.rbn-ea-featured p {
    color: var(--rbn-ea-muted);
    line-height: 1.65;
}

.rbn-ea-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--rbn-ea-muted);
    font-size: .78rem;
}

.rbn-ea-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, .8fr);
    gap: 24px;
}

.rbn-ea-featured__side {
    display: grid;
    gap: 20px;
}

.rbn-ea-mini-card {
    display: grid;
    grid-template-columns: 130px 1fr;
}

.rbn-ea-mini-card__image {
    min-height: 130px;
}

.rbn-ea-mini-card > div {
    padding: 16px;
}

.rbn-ea-regions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rbn-ea-region {
    padding: 22px;
}

.rbn-ea-region__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rbn-ea-border);
}

.rbn-ea-region__heading h3 {
    margin: 0;
    color: var(--rbn-ea-green);
}

.rbn-ea-region__heading a {
    color: var(--rbn-ea-green);
    font-size: .86rem;
    font-weight: 800;
}

.rbn-ea-region__list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.rbn-ea-list-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: center;
}

.rbn-ea-list-card__image {
    width: 88px;
    aspect-ratio: 1;
    border-radius: 10px;
}

.rbn-ea-country-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rbn-ea-country-links a {
    padding: 10px 14px;
    border: 1px solid var(--rbn-ea-border);
    border-radius: 999px;
    background: var(--rbn-ea-white);
    color: var(--rbn-ea-green);
    font-weight: 750;
    text-decoration: none;
}

.rbn-ea-section--about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background: var(--rbn-ea-cream);
    border-radius: 28px;
}

.rbn-ea-section--about > div {
    max-width: 820px;
}

.rbn-ea-section--about h2 {
    color: var(--rbn-ea-green);
}

.rbn-ea-section--about p {
    line-height: 1.75;
}

.rbn-ea-updated {
    color: var(--rbn-ea-muted);
    font-size: .84rem;
}

.rbn-ea-empty {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px dashed var(--rbn-ea-border);
    border-radius: 14px;
    background: rgba(247, 241, 227, .55);
    color: var(--rbn-ea-muted);
    text-align: center;
}

.rbn-ea-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 25%, rgba(212,175,55,.38), transparent 25%),
        linear-gradient(135deg, var(--rbn-ea-green), var(--rbn-ea-green-2));
}

.rbn-ea-image-placeholder span {
    color: var(--rbn-ea-gold);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .12em;
}

@media (max-width: 1100px) {
    .rbn-ea-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rbn-ea-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .rbn-ea-hero {
        min-height: 520px;
        align-items: center;
    }

    .rbn-ea-hero__facts {
        position: static;
        justify-content: flex-start;
        margin-top: 28px;
    }

    .rbn-ea-featured,
    .rbn-ea-regions {
        grid-template-columns: 1fr;
    }

    .rbn-ea-section--about {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .rbn-ea-hero {
        padding: 38px 22px;
        border-radius: 0 0 20px 20px;
    }

    .rbn-ea-grid,
    .rbn-ea-grid--three {
        grid-template-columns: 1fr;
    }

    .rbn-ea-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .rbn-ea-mini-card {
        grid-template-columns: 105px 1fr;
    }

    .rbn-ea-ticker {
        grid-template-columns: 1fr;
    }

    .rbn-ea-ticker strong {
        text-align: center;
    }
}
