/* =========================================================
   AGAINST THE GRAIN — INSIGHTS ARTICLE TEMPLATE
   Hero + Editorial Article System
========================================================= */

/* =========================================================
   GLOBAL ARTICLE PAGE SAFETY / TOKENS
========================================================= */

html:has(body.atg-blog),
body.atg-blog {
    overflow-x: clip !important;
}

body.atg-blog {
    padding-top: 0 !important;
}

:root {
    --atg-black: #050505;
    --atg-black-soft: #111111;
    --atg-cream: #f4efe6;
    --atg-gold: #b48a43;
    --atg-muted: #bbb4aa;
    --atg-line: rgba(244, 239, 230, 0.14);
    --atg-gold-line: rgba(180, 138, 67, 0.30);
    --atg-neon-blue: #00e5ff;
    --atg-neon-purple: #8a2be2;
    --atg-neon-pink: #ff2d95;
    --atg-neon-orange: #ffb800;
}


/* =========================================================
   ARTICLE HERO
========================================================= */

.atg-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: min(62svh, 640px);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--atg-header-height, 104px) + 36px) 0 48px;
    background-color: var(--atg-black);
}

.atg-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--atg-black);
}

.atg-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.atg-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.84) 28%,
            rgba(0, 0, 0, 0.59) 53%,
            rgba(0, 0, 0, 0.26) 76%,
            rgba(0, 0, 0, 0.12) 100%
        );
}

.atg-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 44%, rgba(138, 43, 226, 0.17), transparent 39%),
        radial-gradient(circle at 84% 27%, rgba(0, 229, 255, 0.10), transparent 36%),
        radial-gradient(circle at 65% 78%, rgba(255, 45, 149, 0.055), transparent 30%);
}

.atg-hero-content {
    position: relative;
    z-index: 5;
    width: min(700px, calc(100% - 80px));
    margin-left: max(40px, calc((100vw - 1450px) / 2 + 40px));
}

.atg-eyebrow {
    margin: 0 0 20px;
    color: var(--atg-gold);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.atg-hero h1 {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--atg-cream);
    font-size: clamp(54px, 5.7vw, 84px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.atg-hero-title-line {
    display: block;
}

.atg-neon-text {
    display: inline;
    background:
        linear-gradient(
            90deg,
            var(--atg-neon-blue),
            var(--atg-neon-purple),
            var(--atg-neon-pink),
            var(--atg-neon-orange),
            var(--atg-neon-blue)
        );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: atgNeonTextFlow 7s linear infinite;
}

@keyframes atgNeonTextFlow {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }
}

.atg-subtitle {
    max-width: 625px;
    margin: 0;
    color: var(--atg-muted);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.75;
}

.atg-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 90px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0),
            rgba(5, 5, 5, 0.50) 50%,
            var(--atg-black) 100%
        );
}



/* =========================================================
   EDITORIAL ARTICLE SHELL
========================================================= */

.atg-editorial {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(28px, 4vw, 48px) 0 clamp(28px, 4vw, 48px);
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            var(--atg-black) 0%,
            #070707 45%,
            var(--atg-black) 100%
        );
    color: var(--atg-muted);
}

.atg-editorial,
.atg-editorial *,
.atg-editorial *::before,
.atg-editorial *::after {
    box-sizing: border-box;
}

.atg-editorial > :last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE INTRO
========================================================= */

.atg-editorial__intro {
    position: relative;
    width: min(860px, calc(100% - 80px));
    margin: 0 auto clamp(105px, 11vw, 170px);
    color: var(--atg-cream);
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.70;
    letter-spacing: -0.012em;
}

.atg-editorial__intro::before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 0 0 38px;
    background: var(--atg-gold);
    opacity: 0.70;
}

.atg-editorial__intro p {
    margin: 0 0 1.4em;
}

.atg-editorial__intro p:last-child {
    margin-bottom: 0;
}

.atg-editorial__intro p:first-child {
    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.55;
    letter-spacing: -0.02em;
}


/* =========================================================
   STANDARD EDITORIAL SECTION
========================================================= */

.atg-editorial-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 7vw, 110px);
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto clamp(115px, 12vw, 190px);
    scroll-margin-top: calc(var(--atg-header-height, 104px) + 40px);
}

.atg-editorial-section__heading {
    position: relative;
    align-self: start;
    padding-top: 4px;
}

.atg-editorial-section__number {
    display: block;
    margin: 0 0 28px;
    color: var(--atg-gold);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.24em;
}

.atg-editorial-section__heading::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    margin-top: 30px;
    background: var(--atg-gold);
    opacity: 0.65;
}

.atg-editorial-section__heading h2 {
    max-width: 470px;
    margin: 0;
    color: var(--atg-cream);
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.atg-editorial-section__body {
    width: 100%;
    max-width: 760px;
    color: var(--atg-muted);
    font-size: clamp(17px, 1.2vw, 19px);
    line-height: 1.85;
}

.atg-editorial-section__body p {
    margin: 0 0 1.45em;
}

.atg-editorial-section__body p:last-of-type {
    margin-bottom: 0;
}

.atg-editorial-section__body strong {
    color: var(--atg-cream);
    font-weight: 600;
}

.atg-editorial-section__body em {
    color: var(--atg-cream);
}

.atg-editorial-section__body ul,
.atg-editorial-section__body ol {
    margin: 1.6em 0;
    padding-left: 1.25em;
}

.atg-editorial-section__body li {
    margin-bottom: 0.65em;
}

.atg-editorial-section__body li::marker {
    color: var(--atg-gold);
}


/* =========================================================
   SUB-PILLAR / ARTICLE LINK
========================================================= */

.atg-editorial-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 32px;
    padding-bottom: 8px;
    color: var(--atg-cream);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.atg-editorial-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--atg-gold);
    transform-origin: left center;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.atg-editorial-link::after {
    content: "↗";
    margin-left: 11px;
    color: var(--atg-gold);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.atg-editorial-link:hover,
.atg-editorial-link:focus-visible {
    color: var(--atg-gold);
    transform: translateY(-1px);
}

.atg-editorial-link:hover::after,
.atg-editorial-link:focus-visible::after {
    transform: translate(3px, -3px);
}

.atg-editorial-link:focus-visible {
    outline: 2px solid var(--atg-neon-blue);
    outline-offset: 5px;
}


/* =========================================================
   SPLIT EDITORIAL IMAGE MOMENT
========================================================= */

.atg-editorial-media,
.atg-editorial-media--split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto clamp(110px, 11vw, 175px);
    gap: clamp(48px, 6vw, 90px);
}

.atg-editorial-media__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.atg-editorial-media__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.16));
}

.atg-editorial-media__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.atg-editorial-media__caption {
    position: relative;
    max-width: 390px;
    margin: 0;
    padding-left: 32px;
    color: var(--atg-cream);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.atg-editorial-media__caption::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.12em;
    width: 1px;
    background: var(--atg-gold);
}

@media (max-width: 900px) {
    .atg-editorial-media {
        width: calc(100% - 48px);
    }

    .atg-editorial-media,
    .atg-editorial-media--split {
        grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
        gap: 36px;
    }

    .atg-editorial-media__image {
        aspect-ratio: 4 / 3;
    }

    .atg-editorial-media__caption {
        padding-left: 24px;
        font-size: 21px;
    }
}

@media (max-width: 700px) {
    .atg-editorial-media {
        width: calc(100% - 36px);
        margin-bottom: 100px;
    }

    .atg-editorial-media,
    .atg-editorial-media--split {
        display: block;
    }

    .atg-editorial-media__image {
        aspect-ratio: 4 / 3;
    }

    .atg-editorial-media__caption {
        max-width: 600px;
        margin-top: 28px;
        padding-left: 22px;
        font-size: 20px;
    }
}


/* =========================================================
   PULL QUOTE
========================================================= */

.atg-editorial-quote {
    position: relative;
    width: min(980px, calc(100% - 80px));
    margin: 0 auto clamp(125px, 13vw, 205px);
    padding: clamp(44px, 5vw, 74px) clamp(36px, 6vw, 88px);
    border-top: 1px solid var(--atg-gold-line);
    border-bottom: 1px solid var(--atg-gold-line);
    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(180, 138, 67, 0.05),
            transparent 48%
        );
}

.atg-editorial-quote::before {
    content: "“";
    position: absolute;
    left: clamp(10px, 2vw, 28px);
    top: clamp(10px, 1vw, 18px);
    color: var(--atg-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 8vw, 110px);
    line-height: 1;
    opacity: 0.38;
}

.atg-editorial-quote p {
    position: relative;
    margin: 0;
    color: var(--atg-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 58px);
    font-style: italic;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.atg-editorial-quote cite {
    display: block;
    margin-top: 28px;
    color: var(--atg-gold);
    font-family: inherit;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}


/* =========================================================
   EDITORIAL INFO CARD
========================================================= */

.atg-editorial-card {
    position: relative;
    width: min(920px, calc(100% - 80px));
    margin: 0 auto clamp(125px, 13vw, 205px);
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid var(--atg-gold-line);
    background:
        linear-gradient(
            145deg,
            rgba(180, 138, 67, 0.055),
            rgba(255, 255, 255, 0.012) 44%,
            rgba(255, 255, 255, 0.02)
        ),
        #090909;
}

.atg-editorial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 84px;
    height: 2px;
    background: var(--atg-gold);
}

.atg-editorial-card__eyebrow {
    margin: 0 0 14px;
    color: var(--atg-gold);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.atg-editorial-card h3 {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--atg-cream);
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.atg-editorial-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.atg-editorial-card li {
    position: relative;
    padding: 17px 0 17px 28px;
    border-top: 1px solid var(--atg-line);
    color: var(--atg-muted);
    font-size: 16px;
    line-height: 1.65;
}

.atg-editorial-card li:nth-child(-n + 2) {
    border-top-color: var(--atg-gold-line);
}

.atg-editorial-card li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 27px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--atg-gold);
    transform: rotate(45deg);
}


/* =========================================================
   WIDE IMAGE BREAK
========================================================= */

.atg-editorial-wide-image {
    position: relative;
    width: min(1450px, calc(100% - 40px));
    margin: 0 auto clamp(130px, 14vw, 215px);
    overflow: hidden;
    background: var(--atg-black-soft);
}

.atg-editorial-wide-image::before {
    content: "";
    display: block;
    aspect-ratio: 16 / 8;
}

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

.atg-editorial-wide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.02) 45%,
            rgba(5, 5, 5, 0.28) 100%
        );
}


/* =========================================================
   CLOSING CONTENT
========================================================= */

.atg-editorial-closing {
    position: relative;
    width: min(940px, calc(100% - 80px));
    margin: 0 auto;
    padding: clamp(58px, 7vw, 96px) clamp(0px, 2vw, 20px) 0;
    border-top: 1px solid var(--atg-gold-line);
    text-align: center;
}

.atg-editorial-closing__eyebrow {
    margin: 0 0 20px;
    color: var(--atg-gold);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.atg-editorial-closing h2 {
    max-width: 840px;
    margin: 0 auto 30px;
    color: var(--atg-cream);
    font-size: clamp(42px, 5.8vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.atg-editorial-closing p {
    max-width: 760px;
    margin: 0 auto 1.25em;
    color: var(--atg-muted);
    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.82;
}

.atg-editorial-closing p:last-child {
    margin-bottom: 0;
    color: var(--atg-cream);
    font-size: clamp(20px, 1.5vw, 24px);
}


/* =========================================================
   MEDIA / ACCESSIBILITY
========================================================= */

.atg-editorial img,
.atg-editorial video,
.atg-editorial iframe {
    max-width: 100%;
}

.atg-editorial a {
    text-underline-offset: 3px;
}

.atg-editorial a:focus-visible {
    outline: 2px solid var(--atg-neon-blue);
    outline-offset: 5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .atg-hero {
        min-height: min(58svh, 560px);
        padding: calc(var(--atg-header-height, 104px) + 28px) 0 40px;
    }

    .atg-hero__media img {
        object-position: 58% center;
    }

    .atg-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.10) 0%,
                rgba(5, 5, 5, 0.18) 24%,
                rgba(5, 5, 5, 0.68) 54%,
                rgba(5, 5, 5, 0.94) 78%,
                var(--atg-black) 100%
            ),
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.34) 0%,
                rgba(5, 5, 5, 0.08) 70%,
                rgba(5, 5, 5, 0.20) 100%
            );
    }

    .atg-hero-content {
        width: auto;
        max-width: 760px;
        margin: 0;
        padding: 0 28px;
    }

    .atg-editorial {
        padding-top: 32px;
    }

    .atg-editorial__intro,
    .atg-editorial-section,
    .atg-editorial-media,
    .atg-editorial-quote,
    .atg-editorial-card,
    .atg-editorial-closing {
        width: min(100% - 56px, 940px);
    }

    .atg-editorial-section {
        grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1.42fr);
        gap: 46px;
        margin-bottom: 120px;
    }

    .atg-editorial-section__heading h2 {
        font-size: clamp(34px, 4.8vw, 50px);
    }

    .atg-editorial-card ul {
        gap: 0 26px;
    }
}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    .atg-editorial {
        padding: 32px 0 48px;
    }

    .atg-editorial__intro,
    .atg-editorial-section,
    .atg-editorial-media,
    .atg-editorial-quote,
    .atg-editorial-card,
    .atg-editorial-closing {
        width: calc(100% - 36px);
    }

    .atg-editorial__intro {
        margin-bottom: 95px;
        font-size: 18px;
        line-height: 1.72;
    }

    .atg-editorial__intro p:first-child {
        font-size: clamp(22px, 6vw, 27px);
    }

    .atg-editorial-section {
        display: block;
        margin-bottom: 105px;
    }

    .atg-editorial-section__heading {
        margin-bottom: 34px;
    }

    .atg-editorial-section__number {
        margin-bottom: 18px;
    }

    .atg-editorial-section__heading::after {
        width: 42px;
        margin-top: 22px;
    }

    .atg-editorial-section__heading h2 {
        max-width: 600px;
        font-size: clamp(36px, 9vw, 52px);
    }

    .atg-editorial-section__body {
        max-width: none;
        font-size: 17px;
        line-height: 1.82;
    }

    .atg-editorial-link {
        margin-top: 24px;
    }

    .atg-editorial-quote {
        margin-bottom: 115px;
        padding: 48px 24px 46px 34px;
    }

    .atg-editorial-quote p {
        font-size: clamp(30px, 8.5vw, 42px);
    }

    .atg-editorial-card {
        margin-bottom: 115px;
        padding: 38px 24px 30px;
    }

    .atg-editorial-card ul {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .atg-editorial-card li:nth-child(2) {
        border-top-color: var(--atg-line);
    }

    .atg-editorial-wide-image {
        width: calc(100% - 18px);
        margin-bottom: 120px;
    }

    .atg-editorial-wide-image::before {
        aspect-ratio: 4 / 3;
    }

    .atg-editorial-closing {
        padding-top: 52px;
    }

    .atg-editorial-closing h2 {
        font-size: clamp(38px, 10vw, 56px);
    }
}


/* =========================================================
   MOBILE HERO
========================================================= */

@media (max-width: 650px) {

    .atg-hero {
        min-height: min(56svh, 520px);
        padding: calc(var(--atg-header-height, 104px) + 24px) 0 32px;
    }

    .atg-hero__media img {
        object-position: 61% top;
    }

    .atg-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.04) 0%,
                rgba(5, 5, 5, 0.12) 22%,
                rgba(5, 5, 5, 0.52) 47%,
                rgba(5, 5, 5, 0.90) 67%,
                rgba(5, 5, 5, 0.98) 83%,
                var(--atg-black) 100%
            );
    }

    .atg-hero-content {
        width: 100%;
        padding: 0 18px;
    }

    .atg-eyebrow {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .atg-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(42px, 12vw, 60px);
        line-height: 1.01;
    }

    .atg-subtitle {
        max-width: 540px;
        font-size: 16px;
        line-height: 1.65;
    }
}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {

    .atg-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .atg-editorial__intro,
    .atg-editorial-section,
    .atg-editorial-media,
    .atg-editorial-quote,
    .atg-editorial-card,
    .atg-editorial-closing {
        width: calc(100% - 30px);
    }

    .atg-editorial-section__heading h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .atg-editorial-card {
        padding-right: 20px;
        padding-left: 20px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .atg-editorial-link,
    .atg-editorial-link::before,
    .atg-editorial-link::after,
    .atg-hero.is-ready [data-atg-article-reveal],
    .atg-editorial.is-ready [data-atg-article-reveal] {
        transition: none;
    }

    .atg-hero__media img {
        transform: none;
    }

    .atg-neon-text {
        animation: none;
        background-position: 50% 50%;
    }
}


/* =========================================================
   PAGE SHELL / FOOTER / CONTACT
========================================================= */

body.atg-blog {
    background: var(--atg-black);
    color: var(--atg-cream);
}

body.atg-blog .site-main.atg-insight-article-main,
body.atg-blog .atg-insight-article {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--atg-black);
}

.atg-insight-article__footer {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
    padding: 48px 0 72px;
    border-top: 1px solid var(--atg-line);
}

.atg-insight-article__more-grid {
    margin-top: 36px;
}

.atg-insight-article__nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 36px;
}

.atg-insight-article__nav a {
    color: var(--atg-cream);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.atg-insight-article__nav a:hover,
.atg-insight-article__nav a:focus-visible {
    color: var(--atg-gold);
}

.atg-insight-article__more {
    display: inline-block;
    color: var(--atg-cream);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.atg-insight-article__more:hover,
.atg-insight-article__more:focus-visible {
    color: var(--atg-gold);
}

body.atg-blog .atg-contact,
body.atg-blog .atg-contact [data-atg-reveal] {
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

body.atg-blog .atg-contact {
    padding-top: clamp(40px, 5vw, 64px);
}


/* =========================================================
   ARTICLE MOTION — never hides contact
========================================================= */

.atg-hero__media img {
    transform: translate3d(0, var(--atg-insight-parallax, 0px), 0) scale(1.04);
    will-change: transform;
}

.atg-hero.is-ready [data-atg-article-reveal],
.atg-editorial.is-ready [data-atg-article-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--atg-article-delay, 0ms);
}

.atg-hero.is-ready [data-atg-article-reveal].is-visible,
.atg-editorial.is-ready [data-atg-article-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 760px) {
    .atg-insight-article__footer {
        width: calc(100% - 36px);
    }
}
