@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --green-950: #062d25;
    --green-900: #08392f;
    --green-800: #0d4b3e;
    --green-700: #17604f;
    --gold: #d8aa4d;
    --gold-soft: #f0cf84;
    --cream: #f7f4ed;
    --white: #ffffff;
    --ink: #0c1916;
    --muted: #66706c;
    --line: rgba(12, 25, 22, 0.1);
    --shadow: 0 14px 35px rgba(12, 25, 22, 0.08);
    --radius: 22px;
    --container: 1460px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--green-950), var(--green-900));
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.brand-mark {
    color: var(--gold-soft);
    font-size: 48px;
    line-height: 1;
    transform: translateY(-2px);
}

.brand-text strong {
    font-size: clamp(26px, 2.4vw, 46px);
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.brand-text span {
    color: var(--gold-soft);
}

.primary-nav {
    justify-self: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu a {
    position: relative;
    color: rgba(255,255,255,0.94);
    font-weight: 600;
    font-size: 15px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.menu a:hover::after,
.current-menu-item > a::after {
    transform: scaleX(1);
}

.header-cta,
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    font-weight: 700;
}

.header-cta {
    padding: 12px 18px;
    color: var(--ink);
    background: linear-gradient(135deg, #f7d68a, #e8bb5f);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.header-cta small,
.primary-cta small {
    display: block;
    font-size: 12px;
    line-height: 1.1;
    opacity: .75;
}

.header-cta strong,
.primary-cta strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
}

.wa-circle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.cta-arrow {
    font-size: 24px;
}

.nav-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(590px, 42vw, 820px);
    overflow: hidden;
    isolation: isolate;
    background: #f7f4ed;
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1.002);
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(250, 248, 241, 0.98) 0%,
            rgba(250, 248, 241, 0.91) 24%,
            rgba(250, 248, 241, 0.58) 39%,
            rgba(250, 248, 241, 0.14) 53%,
            rgba(250, 248, 241, 0) 66%
        );
}

.hero-inner {
    min-height: clamp(590px, 42vw, 820px);
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(40%, 590px);
    padding-block: 64px;
    transform: translateX(0px);
}

.hero-copy h1 {
    margin: 0 0 8px;
    font-size: clamp(56px, 5.5vw, 98px);
    line-height: .94;
    letter-spacing: -0.06em;
}

.hero-copy h1 span,
.why-copy h2 span {
    color: var(--gold);
}

.hero-copy h2 {
    margin: 14px 0 16px;
    font-size: clamp(26px, 2.15vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-copy p {
    max-width: 560px;
    margin: 0 0 34px;
    color: #27332f;
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.55;
}

.primary-cta {
    width: fit-content;
    padding: 15px 22px;
    background: linear-gradient(135deg, #f7d68a, #e8bb5f);
    color: var(--ink);
    box-shadow: var(--shadow);
}

/* Cards */
.game-links {
    padding: 22px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.game-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    min-height: 126px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(12,25,22,.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(216,170,77,.30);
    box-shadow: 0 18px 40px rgba(12,25,22,.12);
}

.game-card strong {
    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1.2;
}

.game-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 32% 24%, rgba(255,255,255,.09), transparent 42%),
        var(--green-950);
}

.game-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.game-arrow {
    font-size: 21px;
    line-height: 1;
    transition: transform .2s ease;
}

.game-card:hover .game-arrow {
    transform: translateX(3px);
}

/* Why */
.why-section {
    background: linear-gradient(120deg, var(--green-950), var(--green-800));
    color: white;
}

.why-grid {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: stretch;
}

.why-copy {
    padding: 48px 50px 48px 0;
}

.why-copy h2 {
    margin: 0 0 38px;
    font-size: clamp(34px, 3.2vw, 58px);
    letter-spacing: -0.05em;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit {
    min-height: 130px;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    gap: 12px;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(240,207,132,.55);
    border-radius: 50%;
    font-size: 24px;
}

.why-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.why-image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 16%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(6,45,37,0.82) 0%,
        rgba(6,45,37,0.34) 48%,
        rgba(6,45,37,0) 100%
    );
}

.why-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: 62% center;
}

/* Blog */
.latest-section {
    padding: 76px 0 90px;
    background: #fbfaf7;
}

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

.section-kicker {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(34px, 3.2vw, 56px);
    letter-spacing: -0.05em;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.post-thumb {
    min-height: 230px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #e7ece9;
    color: var(--muted);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 24px;
}

.post-card h2,
.post-card h3 {
    margin: 5px 0 8px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.post-card p {
    margin: 0;
    color: var(--muted);
}

.post-meta {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 700;
}

.empty-posts {
    grid-column: 1 / -1;
    padding: 42px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    text-align: center;
    color: var(--muted);
}

/* Content */
.content-shell {
    padding: 68px 0 90px;
    background: #fbfaf7;
}

.article-layout {
    max-width: 960px;
}

.article-card,
.page-card,
.error-card {
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow);
}

.article-header h1,
.archive-header h1,
.error-card h1 {
    margin: 4px 0 24px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.article-featured {
    overflow: hidden;
    margin: 0 0 30px;
    border-radius: 22px;
}

.article-content {
    font-size: 18px;
}

.article-content h2 {
    margin-top: 42px;
    font-size: 34px;
}

.article-content h3 {
    margin-top: 32px;
    font-size: 25px;
}

.article-content p,
.article-content li {
    color: #29332f;
}

.archive-header {
    margin-bottom: 30px;
}

.archive-description {
    max-width: 720px;
    color: var(--muted);
}

.pagination {
    margin-top: 36px;
}

.error-card {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.error-code {
    color: var(--gold);
    font-size: 80px;
    font-weight: 800;
}

/* Footer */
.site-footer {
    padding: 58px 0 20px;
    background: #041f1a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 48px;
}

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

.footer-brand .brand-mark {
    font-size: 34px;
}

.site-footer h3 {
    margin-top: 0;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,.72);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li + li {
    margin-top: 8px;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.52);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .primary-nav {
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 24px 26px;
        background: var(--green-950);
    }

    .primary-nav.is-open {
        display: block;
    }

    .menu {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .menu a {
        display: block;
        padding: 12px 0;
    }

    .menu a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        gap: 5px;
        border: 1px solid rgba(255,255,255,.22);
        border-radius: 12px;
        background: transparent;
    }

    .nav-toggle span:not(.screen-reader-text) {
        width: 21px;
        height: 2px;
        background: white;
    }

    .game-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-mark {
        font-size: 36px;
    }

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

    .primary-nav {
        top: 76px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 720px;
    }

    .hero-art {
        background-size: auto 58%;
        background-position: 65% bottom;
        background-color: #f7f4ed;
    }

    .hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(250, 248, 241, 0.99) 0%,
                rgba(250, 248, 241, 0.96) 43%,
                rgba(250, 248, 241, 0.70) 56%,
                rgba(250, 248, 241, 0.08) 74%,
                rgba(250, 248, 241, 0) 100%
            );
    }

    .hero-inner {
        min-height: 720px;
        align-items: flex-start;
    }

    .hero-copy {
        width: 100%;
        max-width: 660px;
        padding: 52px 0 320px;
        transform: none;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 14vw, 76px);
    }

    .hero-copy h2 {
        font-size: clamp(25px, 7vw, 36px);
    }

    .game-links-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        min-height: 104px;
        grid-template-columns: 68px 1fr auto;
        gap: 15px;
        padding: 13px 16px;
    }

    .game-icon {
        width: 68px;
        height: 68px;
        border-radius: 15px;
    }

    .game-icon img {
        width: 60px;
        height: 60px;
    }

    .why-copy {
        padding: 42px 0;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-image {
        min-height: 250px;
    }

    .why-image::before {
        width: 100%;
        height: 22%;
        inset: 0 0 auto 0;
        background: linear-gradient(
            180deg,
            rgba(6,45,37,0.75) 0%,
            rgba(6,45,37,0) 100%
        );
    }

    .why-image img {
        min-height: 250px;
        height: 250px;
        object-position: 66% center;
    }

    .post-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* Games hub */
.games-hub,
.category-landing {
    background: #fbfaf7;
}

.games-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(216,170,77,.18), transparent 30%),
        linear-gradient(120deg, var(--green-950), var(--green-800));
    color: var(--white);
}

.games-hero-inner {
    min-height: 330px;
    padding-block: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.games-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.games-hero h1,
.category-hero h1 {
    margin: 0;
    font-size: clamp(48px, 5vw, 82px);
    line-height: .98;
    letter-spacing: -0.055em;
}

.games-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 1.2vw, 20px);
}

.games-hero-cta {
    flex: 0 0 auto;
}

.games-categories-section,
.category-posts-section {
    padding: 76px 0 92px;
}

.games-section-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.games-section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.games-section-heading > p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
}

.games-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.games-category-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.games-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(12,25,22,.12);
}

.games-category-media {
    position: relative;
    min-height: 245px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 35% 22%, rgba(240,207,132,.15), transparent 34%),
        linear-gradient(135deg, var(--green-950), var(--green-800));
}

.games-category-media img {
    width: 100%;
    height: 245px;
    padding: 22px;
    object-fit: contain;
    transition: transform .25s ease;
}

.games-category-card:hover .games-category-media img {
    transform: scale(1.035);
}

.games-category-count {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(4,31,26,.72);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.games-category-body {
    padding: 24px;
}

.games-category-body h2 {
    margin: 0 0 9px;
    font-size: 25px;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.games-category-body p {
    min-height: 52px;
    margin: 0 0 22px;
    color: var(--muted);
}

.games-category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-800);
    font-weight: 800;
}

.games-category-link span {
    transition: transform .2s ease;
}

.games-category-card:hover .games-category-link span {
    transform: translateX(4px);
}

.games-category-fallback {
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(240,207,132,.32);
    border-radius: 28px;
    color: var(--gold-soft);
    font-size: 68px;
}

.games-empty-state {
    padding: 52px;
    border: 1px dashed rgba(12,25,22,.18);
    border-radius: 24px;
    background: var(--white);
    text-align: center;
}

.games-empty-state h2 {
    margin-top: 0;
}

.games-empty-state p {
    margin-bottom: 0;
    color: var(--muted);
}

.games-support-strip {
    padding: 44px 0;
    background: linear-gradient(120deg, #f7efd9, #f2d48f);
}

.games-support-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.games-support-inner h2 {
    margin: 4px 0 0;
    font-size: clamp(30px, 2.8vw, 48px);
    letter-spacing: -0.045em;
}

/* Category landing */
.category-hero {
    padding: 52px 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(216,170,77,.16), transparent 28%),
        linear-gradient(120deg, #f9f6ee, #eef2ec);
}

.category-hero-grid {
    min-height: 430px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 52px;
}

.category-hero-copy {
    max-width: 720px;
}

.category-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--green-700);
    font-weight: 800;
}

.category-hero-copy p {
    max-width: 650px;
    margin: 18px 0 28px;
    color: #35403c;
    font-size: 18px;
}

.category-hero-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 35% 22%, rgba(240,207,132,.14), transparent 34%),
        linear-gradient(135deg, var(--green-950), var(--green-800));
    box-shadow: var(--shadow);
}

.category-hero-media img {
    width: 100%;
    height: 360px;
    padding: 26px;
    object-fit: contain;
}

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

    .category-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .games-hero-inner,
    .games-section-heading,
    .games-support-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .games-hero-inner {
        min-height: auto;
        padding-block: 46px;
    }

    .games-hero h1,
    .category-hero h1 {
        font-size: clamp(44px, 13vw, 68px);
    }

    .games-category-grid {
        grid-template-columns: 1fr;
    }

    .games-category-media,
    .games-category-media img {
        height: 220px;
        min-height: 220px;
    }

    .games-section-heading > p {
        max-width: none;
    }

    .category-hero {
        padding: 34px 0 48px;
    }

    .category-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-hero-media,
    .category-hero-media img {
        min-height: 260px;
        height: 260px;
    }

    .games-categories-section,
    .category-posts-section {
        padding: 56px 0 68px;
    }
}

/* Games hub — compact layout */
.games-hero-inner {
    min-height: 235px;
    padding-block: 38px;
    justify-content: flex-start;
}

.games-hero h1 {
    font-size: clamp(44px, 4.4vw, 70px);
}

.games-hero p {
    max-width: 820px;
    margin-top: 12px;
    line-height: 1.45;
}

.games-categories-section {
    padding: 48px 0 62px;
}

.games-section-heading {
    margin-bottom: 22px;
}

.games-section-heading h2 {
    font-size: clamp(32px, 2.8vw, 48px);
}

.games-category-grid {
    gap: 20px;
}

.games-category-media {
    min-height: 205px;
}

.games-category-media img {
    height: 205px;
    padding: 18px;
}

.games-category-body {
    padding: 20px;
}

.games-category-body h2 {
    margin-bottom: 7px;
    font-size: 23px;
}

.games-category-body p {
    min-height: 44px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.games-support-strip {
    padding: 32px 0;
}

@media (max-width: 820px) {
    .games-hero-inner {
        min-height: auto;
        padding-block: 34px;
    }

    .games-categories-section {
        padding: 40px 0 52px;
    }

    .games-section-heading {
        gap: 14px;
        margin-bottom: 20px;
    }

    .games-category-media,
    .games-category-media img {
        height: 195px;
        min-height: 195px;
    }

    .games-category-body {
        padding: 18px;
    }

    .games-support-strip {
        padding: 28px 0;
    }
}

/* Featured posts */
.featured-section {
    padding-top: 62px;
}

.featured-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-page {
    background: #fbfaf7;
}

.featured-page-hero {
    background:
        radial-gradient(circle at 78% 20%, rgba(216,170,77,.15), transparent 30%),
        linear-gradient(120deg, var(--green-950), var(--green-800));
    color: var(--white);
}

.featured-page-hero-inner {
    padding-block: 54px;
}

.featured-page-hero h1 {
    margin: 0;
    font-size: clamp(46px, 4.6vw, 72px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.featured-page-hero p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

.featured-page-content {
    padding: 58px 0 82px;
}

.featured-pagination {
    margin-top: 34px;
}

.featured-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.featured-pagination a,
.featured-pagination span {
    display: grid;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.featured-pagination .current {
    border-color: var(--green-800);
    background: var(--green-800);
    color: var(--white);
}

@media (max-width: 820px) {
    .featured-section {
        padding-top: 50px;
    }

    .featured-post-grid {
        grid-template-columns: 1fr;
    }

    .featured-page-hero-inner {
        padding-block: 42px;
    }

    .featured-page-content {
        padding: 46px 0 64px;
    }
}

