/* =========================================================
   NARINA SAFARIS
   DYNAMIC BLOG ARTICLE
========================================================= */

.article-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.article-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #173429;
}


.article-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.article-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 25, 16, 0.28),
            rgba(2, 25, 16, 0.74)
        );
}


.article-hero-content {
    position: relative;

    z-index: 2;

    width: calc(100% - (var(--site-gutter) * 2));
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


/* BACK */

.article-back {
    display: inline-block;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,0.72);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* CATEGORY */

.article-category {
    display: table;

    margin:
        0
        auto
        18px;

    padding:
        8px
        13px;

    color: #ffffff;

    background: var(--narina-red);

    border-radius: 3px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* TITLE */

.article-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size:
        clamp(
            48px,
            6vw,
            86px
        );

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.04em;
}


/* INTRO */

.article-hero-content > p {
    max-width: 720px;

    margin:
        25px
        auto
        0;

    color:
        rgba(255,255,255,0.82);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   ARTICLE
========================================================= */

.article-section {
    padding:
        clamp(75px, 8vw, 115px)
        var(--site-gutter);

    background: #ffffff;
}


.article-container {
    width: 100%;

    max-width: 850px;

    margin: 0 auto;
}


/* =========================================================
   ARTICLE META
========================================================= */

.article-meta {
    margin-bottom: 45px;

    padding-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    border-bottom:
        1px solid
        #dce1de;

    color: #77807a;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.article-meta-dot {
    width: 4px;
    height: 4px;

    background: var(--narina-red);

    border-radius: 50%;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    color: #4f5d56;
}


/* LEAD */

.article-content .article-lead {
    margin:
        0
        0
        34px;

    color: #173f30;

    font-family: var(--font-heading);

    font-size:
        clamp(
            24px,
            2.5vw,
            32px
        );

    line-height: 1.5;
}


/* PARAGRAPHS */

.article-content p {
    margin:
        0
        0
        24px;

    font-size: 16px;

    line-height: 1.9;
}


/* ARTICLE HEADINGS */

.article-content h2 {
    margin:
        55px
        0
        18px;

    color: #173f30;

    font-family: var(--font-heading);

    font-size:
        clamp(
            32px,
            3vw,
            43px
        );

    font-weight: 500;

    line-height: 1.15;
}


.article-content h3 {
    margin:
        38px
        0
        13px;

    color: #173f30;

    font-family: var(--font-heading);

    font-size: 27px;

    font-weight: 500;
}


/* ARTICLE IMAGE */

.article-content figure {
    margin:
        48px
        0;
}


.article-content figure img {
    width: 100%;

    display: block;
}


.article-content figcaption {
    margin-top: 10px;

    color: #89918c;

    font-size: 10px;

    line-height: 1.5;
}


/* QUOTE */

.article-content blockquote {
    margin:
        45px
        0;

    padding:
        30px
        35px;

    color: #173f30;

    background: #f7f5ef;

    border-left:
        3px solid
        var(--narina-red);

    font-family: var(--font-heading);

    font-size: 25px;

    line-height: 1.5;
}


/* LIST */

.article-content ul {
    margin:
        20px
        0
        30px;

    padding-left: 23px;
}


.article-content li {
    margin-bottom: 12px;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   RELATED ARTICLE
========================================================= */

.related-section {
    padding:
        clamp(75px, 8vw, 110px)
        var(--site-gutter);

    background: #f7f5ef;
}


.related-container {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto;
}


.related-heading {
    margin-bottom: 32px;

    text-align: center;
}


.related-heading > span {
    color: var(--narina-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.related-heading h2 {
    margin: 10px 0 0;

    color: #173f30;

    font-family: var(--font-heading);

    font-size: 43px;

    font-weight: 500;
}


/* CARD */

.related-card {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    background: #ffffff;

    border:
        1.5px solid
        #d7ddd9;

    overflow: hidden;
}


.related-image {
    min-height: 330px;

    overflow: hidden;
}


.related-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform
        0.6s ease;
}


.related-card:hover
.related-image img {
    transform: scale(1.035);
}


.related-content {
    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.related-content > span {
    color: var(--narina-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.related-content h3 {
    margin:
        12px
        0
        0;

    color: #173f30;

    font-family: var(--font-heading);

    font-size: 35px;

    font-weight: 500;

    line-height: 1.1;
}


.related-content p {
    margin-top: 15px;

    color: #747d77;

    font-size: 13px;

    line-height: 1.7;
}


.related-content strong {
    margin-top: 22px;

    color: #0b553c;

    font-size: 10px;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* =========================================================
   CTA
========================================================= */

.article-cta {
    padding:
        85px
        var(--site-gutter);

    background: #ffffff;
}


.article-cta-box {
    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    padding:
        40px
        48px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    background: #0b553c;

    border-radius: 14px;
}


.article-cta-box > div {
    max-width: 650px;
}


.article-cta-box > div > span {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,0.62);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.article-cta h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size:
        clamp(
            30px,
            3vw,
            42px
        );

    font-weight: 600;
}


.article-cta p {
    margin-top: 10px;

    color:
        rgba(255,255,255,0.65);

    font-size: 12px;
}


/* BUTTON */

.article-cta-button {
    min-width: 180px;
    min-height: 52px;

    padding:
        0
        24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    color: #173429;

    background: #ffffff;

    border-radius: 30px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.article-cta-button svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .article-hero {
        min-height: 520px;
    }


    .article-hero h1 {
        font-size: 44px;
    }


    .article-hero-content > p {
        font-size: 14px;
    }


    .article-section {
        padding:
            60px
            var(--site-gutter);
    }


    .article-content p {
        font-size: 15px;
    }


    .article-content h2 {
        margin-top: 42px;
    }


    .article-content blockquote {
        padding:
            25px
            22px;

        font-size: 22px;
    }


    .related-card {
        grid-template-columns: 1fr;
    }


    .related-image {
        min-height: 250px;
    }


    .related-content {
        padding:
            28px
            23px;
    }


    .related-content h3 {
        font-size: 30px;
    }


    .article-cta-box {
        padding:
            32px
            24px;

        flex-direction: column;

        align-items: flex-start;
    }


    .article-cta-button {
        width: 100%;
    }

}


/* =========================================================
   ARTICLE HERO - COMPACT VERSION
========================================================= */

.article-hero {
    position: relative;

    /* REDUCED FROM 620PX */
    min-height: 430px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #173429;
}


.article-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.article-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 25, 16, 0.22),
            rgba(2, 25, 16, 0.62)
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.article-hero-content {
    position: relative;

    z-index: 2;

    width: calc(100% - (var(--site-gutter) * 2));

    /* PREVENT TITLE FROM BECOMING TOO WIDE */
    max-width: 850px;

    margin: 0 auto;

    padding: 35px 0;

    text-align: center;
}


/* =========================================================
   BACK TO JOURNAL
========================================================= */

.article-back {
    display: inline-block;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: color 0.3s ease;
}


.article-back:hover {
    color: #ffffff;
}


/* =========================================================
   CATEGORY
========================================================= */

.article-category {
    display: table;

    margin:
        0
        auto
        15px;

    padding:
        7px
        12px;

    color: #ffffff;

    background: var(--narina-red);

    border-radius: 3px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE TITLE
========================================================= */

.article-hero h1 {
    max-width: 820px;

    margin: 0 auto;

    color: #ffffff;

    font-family: var(--font-heading);

    /*
        MUCH SMALLER.
        OLD MAX WAS AROUND 86PX.
    */
    font-size: clamp(40px, 4.4vw, 62px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.035em;
}


/* =========================================================
   ARTICLE INTRO
========================================================= */

.article-hero-content > p {
    max-width: 680px;

    margin:
        17px
        auto
        0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   ARTICLE SECTION
   ALSO REDUCE GAP AFTER BANNER
========================================================= */

.article-section {
    padding:
        55px
        var(--site-gutter)
        clamp(75px, 7vw, 100px);

    background: #ffffff;
}


/* META */

.article-meta {
    margin-bottom: 38px;

    padding-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    border-bottom:
        1px solid
        #dce1de;

    color: #77807a;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}



/* =========================================================
   NARINA SAFARIS
   ARTICLE PAGE — CINEMATIC DARK / EDITORIAL READING EXPERIENCE
   These overrides are intentionally appended after the original
   stylesheet so they win without requiring HTML changes.
========================================================= */

:root {
    --article-bg: #06110d;
    --article-bg-deep: #030b08;
    --article-charcoal: #151916;
    --article-charcoal-soft: #1b211e;
    --article-forest: #073323;

    --article-cream: #f5f1e7;
    --article-sage: #c7d5cc;
    --article-muted: #97a79d;

    --article-line: rgba(255, 255, 255, 0.08);
    --article-line-strong: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   PAGE
========================================================= */

.article-page {
    position: relative;
    overflow: hidden;

    color: var(--article-cream);

    background:
        radial-gradient(circle at 16% 15%, rgba(99, 112, 77, .10), transparent 25%),
        radial-gradient(circle at 84% 62%, rgba(17, 87, 61, .12), transparent 30%),
        linear-gradient(
            to bottom,
            #111613 0%,
            #0b130f 24%,
            #06110d 62%,
            #030b08 100%
        );
}


/* =========================================================
   HERO — CINEMATIC ARTICLE HEADER
========================================================= */

.article-hero {
    position: relative;

    min-height: 430px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #173429;

    border-bottom: 1px solid rgba(255,255,255,.055);
}


.article-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(.94)
        brightness(.86)
        contrast(1.04);

    transform: scale(1.01);
}


.article-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2,18,11,.92) 0%,
            rgba(2,18,11,.48) 40%,
            rgba(2,18,11,.19) 72%,
            rgba(2,18,11,.38) 100%
        ),
        linear-gradient(
            to right,
            rgba(3,28,19,.32),
            rgba(3,28,19,.04) 52%,
            rgba(3,21,14,.28)
        ),
        radial-gradient(
            circle at 50% 42%,
            transparent 18%,
            rgba(0,0,0,.30) 100%
        );
}


.article-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 115px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8,18,14,.52)
        );
}


.article-hero-content {
    position: relative;
    z-index: 2;

    width: calc(100% - (var(--site-gutter) * 2));
    max-width: 850px;

    margin: 0 auto;
    padding: 35px 0;

    text-align: center;
}


.article-back {
    display: inline-block;

    margin-bottom: 18px;

    color: rgba(245,241,231,.62);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        color .3s ease,
        transform .3s ease;
}


.article-back:hover {
    color: #ffffff;

    transform: translateX(-3px);
}


.article-category {
    display: table;

    margin:
        0
        auto
        15px;

    padding:
        7px
        12px;

    color: #ffffff;

    background:
        rgba(211,0,23,.88);

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 999px;

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.16);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.article-hero h1 {
    max-width: 820px;

    margin: 0 auto;

    color: var(--article-cream);

    font-family: var(--font-heading);

    font-size:
        clamp(
            40px,
            4.4vw,
            62px
        );

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.035em;

    text-shadow:
        0 12px 42px
        rgba(0,0,0,.30);
}


.article-hero-content > p {
    max-width: 680px;

    margin:
        17px
        auto
        0;

    color: rgba(245,241,231,.76);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   ARTICLE READING SECTION
   Warm charcoal around a calm editorial reading column.
========================================================= */

.article-section {
    position: relative;

    padding:
        68px
        var(--site-gutter)
        clamp(90px, 7vw, 115px);

    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(127,100,58,.07),
            transparent 34%
        ),
        radial-gradient(
            circle at 84% 58%,
            rgba(20,79,56,.09),
            transparent 30%
        ),
        linear-gradient(
            to bottom,
            #151916 0%,
            #101612 34%,
            #0b130f 100%
        );

    border-bottom: 1px solid rgba(255,255,255,.055);
}


.article-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .55;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.014),
            transparent 28%,
            transparent 74%,
            rgba(255,255,255,.010)
        );
}


.article-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


/* =========================================================
   ARTICLE META
========================================================= */

.article-meta {
    margin-bottom: 42px;

    padding:
        15px
        18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    color: rgba(213,224,217,.52);

    background:
        rgba(255,255,255,.035);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 999px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.025);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.article-meta-dot {
    width: 4px;
    height: 4px;

    background: var(--narina-red);

    border-radius: 50%;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    position: relative;

    color:
        rgba(
            220,
            230,
            224,
            .72
        );
}


.article-content .article-lead {
    margin:
        0
        0
        38px;

    color: var(--article-cream);

    font-family: var(--font-heading);

    font-size:
        clamp(
            27px,
            2.6vw,
            35px
        );

    line-height: 1.45;
}


.article-content p {
    margin:
        0
        0
        25px;

    color:
        rgba(
            218,
            228,
            222,
            .70
        );

    font-size: 16px;

    line-height: 1.92;
}


.article-content h2 {
    margin:
        58px
        0
        18px;

    color: var(--article-cream);

    font-family: var(--font-heading);

    font-size:
        clamp(
            32px,
            3vw,
            44px
        );

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -.025em;
}


.article-content h3 {
    margin:
        40px
        0
        13px;

    color: #dce8e0;

    font-family: var(--font-heading);

    font-size: 27px;

    font-weight: 500;
}


/* =========================================================
   ARTICLE IMAGES
========================================================= */

.article-content figure {
    margin:
        50px
        0;

    padding: 7px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02)
        ),
        rgba(13,25,19,.70);

    border:
        1px solid
        rgba(255,255,255,.095);

    border-radius: 18px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04),
        0 18px 45px
        rgba(0,0,0,.26);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.article-content figure img {
    width: 100%;

    display: block;

    border-radius: 12px;
}


.article-content figcaption {
    margin-top: 11px;
    padding:
        0
        6px
        3px;

    color:
        rgba(
            204,
            216,
            208,
            .44
        );

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.article-content blockquote {
    position: relative;

    margin:
        48px
        0;

    padding:
        34px
        38px
        34px
        42px;

    overflow: hidden;

    color: var(--article-cream);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.022)
        ),
        rgba(15,28,22,.70);

    border:
        1px solid
        rgba(255,255,255,.09);

    border-left:
        3px solid
        var(--narina-red);

    border-radius: 14px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.035),
        0 18px 42px
        rgba(0,0,0,.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-family: var(--font-heading);

    font-size: 25px;

    line-height: 1.5;
}


.article-content blockquote::after {
    content: "“";

    position: absolute;
    right: 18px;
    top: -14px;

    color:
        rgba(
            255,
            255,
            255,
            .045
        );

    font-family:
        var(--font-heading);

    font-size: 120px;

    line-height: 1;
}


/* =========================================================
   LISTS
========================================================= */

.article-content ul {
    margin:
        20px
        0
        32px;

    padding-left: 23px;
}


.article-content li {
    margin-bottom: 12px;

    color:
        rgba(
            218,
            228,
            222,
            .70
        );

    font-size: 15px;

    line-height: 1.78;
}


.article-content li::marker {
    color:
        #79a68c;
}


/* =========================================================
   RELATED ARTICLE
========================================================= */

.related-section {
    position: relative;

    padding:
        clamp(80px, 8vw, 115px)
        var(--site-gutter);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(34,91,64,.14),
            transparent 36%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(117,91,52,.06),
            transparent 28%
        ),
        linear-gradient(
            to bottom,
            #08130f,
            #05100c
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.related-container {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}


.related-heading {
    margin-bottom: 36px;

    text-align: center;
}


.related-heading > span {
    color:
        #ff727b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;
}


.related-heading h2 {
    margin:
        10px
        0
        0;

    color: var(--article-cream);

    font-family: var(--font-heading);

    font-size: 43px;

    font-weight: 500;
}


/* RELATED CARD */

.related-card {
    position: relative;

    display: grid;

    grid-template-columns:
        1.12fr
        .88fr;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.024) 50%,
            rgba(255,255,255,.016)
        ),
        rgba(12,24,18,.74);

    border:
        1px solid
        rgba(255,255,255,.105);

    border-radius: 22px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.045),
        0 22px 55px
        rgba(0,0,0,.30);

    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.related-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(
            255,
            255,
            255,
            .18
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.07),
        0 32px 72px
        rgba(0,0,0,.42);
}


.related-image {
    position: relative;

    min-height: 340px;

    overflow: hidden;
}


.related-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            transparent 60%,
            rgba(4,16,11,.15)
        );
}


.related-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        saturate(.95)
        brightness(.94)
        contrast(1.03);

    transition:
        transform .7s ease,
        filter .4s ease;
}


.related-card:hover
.related-image img {
    transform:
        scale(1.055);

    filter:
        saturate(1.03)
        brightness(1)
        contrast(1.035);
}


.related-content {
    padding:
        46px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.related-content > span {
    color:
        #ff727b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.related-content h3 {
    margin:
        12px
        0
        0;

    color: var(--article-cream);

    font-family: var(--font-heading);

    font-size: 35px;

    font-weight: 500;

    line-height: 1.1;
}


.related-content p {
    margin-top: 15px;

    color:
        rgba(
            211,
            223,
            216,
            .64
        );

    font-size: 13px;

    line-height: 1.72;
}


.related-content strong {
    width: fit-content;

    margin-top: 22px;

    padding-bottom: 5px;

    color:
        #b8d9c6;

    border-bottom:
        1px solid
        rgba(
            184,
            217,
            198,
            .26
        );

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

    transition:
        color .3s ease,
        border-color .3s ease;
}


.related-card:hover
.related-content strong {
    color:
        #ff7e86;

    border-color:
        rgba(
            255,
            126,
            134,
            .52
        );
}


/* =========================================================
   CTA
========================================================= */

.article-cta {
    position: relative;

    padding:
        88px
        var(--site-gutter);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124,97,53,.07),
            transparent 36%
        ),
        linear-gradient(
            to bottom,
            #111613,
            #0d120f
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.article-cta-box {
    position: relative;

    width: 100%;
    max-width: 1080px;

    margin: 0 auto;

    padding:
        42px
        50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(86,162,121,.22),
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(16,76,53,.34),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(13,96,65,.96),
            rgba(7,61,42,.98)
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );

    border-radius: 20px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.07),
        0 22px 55px
        rgba(0,0,0,.28);
}


.article-cta-box::before {
    content: "";

    position: absolute;

    width: 370px;
    height: 370px;

    right: -155px;
    top: -220px;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(
            255,
            255,
            255,
            .045
        );
}


.article-cta-box > div,
.article-cta-button {
    position: relative;
    z-index: 2;
}


.article-cta-box > div > span {
    color:
        rgba(
            255,
            255,
            255,
            .64
        );
}


.article-cta h2 {
    color: #ffffff;
}


.article-cta p {
    color:
        rgba(
            255,
            255,
            255,
            .68
        );
}


.article-cta-button {
    min-width: 180px;
    min-height: 52px;

    padding:
        0
        24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    color: #173429;

    background:
        var(--article-cream);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .38
        );

    border-radius: 30px;

    box-shadow:
        0 10px 28px
        rgba(0,0,0,.13);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.article-cta-button:hover {
    color: #ffffff;

    background:
        var(--narina-red);

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.18);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .article-hero {
        min-height: 440px;
        height: auto;
    }


    .article-hero h1 {
        font-size: 42px;
    }


    .article-hero-content > p {
        font-size: 13px;
    }


    .article-section {
        padding:
            58px
            var(--site-gutter)
            72px;
    }


    .article-meta {
        border-radius: 18px;

        padding:
            13px
            15px;
    }


    .article-content p {
        font-size: 15px;
    }


    .article-content .article-lead {
        font-size: 27px;
    }


    .article-content h2 {
        margin-top: 44px;
    }


    .article-content blockquote {
        padding:
            27px
            23px
            27px
            27px;

        font-size: 22px;
    }


    .article-content figure {
        padding: 5px;

        border-radius: 15px;
    }


    .article-content figure img {
        border-radius: 10px;
    }


    .related-card {
        grid-template-columns: 1fr;

        border-radius: 18px;
    }


    .related-image {
        min-height: 250px;
    }


    .related-content {
        padding:
            30px
            24px;
    }


    .related-content h3 {
        font-size: 30px;
    }


    .article-cta {
        padding:
            68px
            var(--site-gutter);
    }


    .article-cta-box {
        padding:
            32px
            24px;

        flex-direction: column;

        align-items: flex-start;

        border-radius: 17px;
    }


    .article-cta-button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .article-back,
    .related-card,
    .related-image img,
    .article-cta-button {
        transition: none;
    }

}