/* Words & Weights theme layer. Generated from the former Ghost Code Injection blocks. */

/* ============================================================
   WORDS & WEIGHTS — SIGNAL LEDGER
   Ghost Source theme
   Site Header Code Injection
   ============================================================ */

:root {
    --ww-bg: #0b0d10;
    --ww-surface: #11151a;
    --ww-surface-hover: #151a20;

    --ww-text: #f2f4f7;
    --ww-soft: #c3c9d1;
    --ww-muted: #8d96a1;
    --ww-faint: #606a75;

    --ww-border: #282f38;
    --ww-border-strong: #3a444f;

    --ww-gold: #d49a3a;
    --ww-gold-soft: rgba(212, 154, 58, 0.11);

    --ww-mono:
        "JetBrains Mono",
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

#gh-navigation {
    position: relative;

    border-bottom: 1px solid var(--ww-border);

    background-color: var(--ww-bg);
}


/* Slightly more compact desktop navigation */

@media (min-width: 768px) {

    #gh-navigation {
        height: 84px;
    }

}


/* Remove Source background block behind right-side controls */

#gh-navigation .gh-navigation-actions {
    background: transparent !important;

    gap: 18px;
}


#gh-navigation .gh-navigation-members {
    gap: 18px;
}


/* Logo */

#gh-navigation .gh-navigation-logo img {
    max-height: 42px;
}


/* ------------------------------------------------------------
   NAV LINKS
   ------------------------------------------------------------ */

#gh-navigation .gh-navigation-menu a {
    color: var(--ww-muted);

    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        color 160ms ease,
        opacity 160ms ease;
}


#gh-navigation .gh-navigation-menu a:hover {
    color: var(--ww-text);

    opacity: 1;
}


/* Current page */

#gh-navigation .gh-navigation-menu .nav-current a {
    color: var(--ww-text);
}


#gh-navigation .gh-navigation-menu .nav-current a::before {
    content: "";

    display: inline-block;

    width: 4px;
    height: 4px;

    margin-right: 8px;
    margin-bottom: 2px;

    border-radius: 50%;

    background: var(--ww-gold);
}


/* ------------------------------------------------------------
   HEADER SEARCH ICON
   ------------------------------------------------------------ */

#gh-navigation button.gh-search {
    width: 38px;
    height: 38px;

    margin: 0;

    border: 1px solid transparent;
    border-radius: 50%;

    color: var(--ww-muted);

    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}


#gh-navigation button.gh-search:hover {
    color: var(--ww-text);

    background: var(--ww-surface);

    border-color: var(--ww-border);

    opacity: 1;
}


#gh-navigation button.gh-search svg {
    width: 18px;
    height: 18px;
}


/* ------------------------------------------------------------
   SIGN IN
   ------------------------------------------------------------ */

#gh-navigation a[data-portal="signin"] {
    color: var(--ww-soft);

    font-size: 1.4rem;
    font-weight: 550;

    transition: color 160ms ease;
}


#gh-navigation a[data-portal="signin"]:hover {
    color: var(--ww-text);

    opacity: 1;
}


/* ------------------------------------------------------------
   JOIN BUTTON
   ------------------------------------------------------------ */

#gh-navigation a[data-portal="signup"].gh-button {
    min-height: 40px;

    padding: 0 18px;

    background: var(--ww-surface);

    border: 1px solid var(--ww-border-strong);
    border-radius: 7px;

    color: var(--ww-text);

    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    box-shadow: none;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}


#gh-navigation a[data-portal="signup"].gh-button:hover {
    color: #efbd69;

    background: var(--ww-gold-soft);

    border-color: var(--ww-gold);

    transform: translateY(-1px);

    opacity: 1;
}


/* ============================================================
   SIGNAL LEDGER HERO
   ============================================================ */

body.home-template .gh-header.is-classic {
    position: relative;
    isolation: isolate;

    margin-top: 0;

    padding-block:
        clamp(120px, 10vw, 156px)
        clamp(105px, 9vw, 136px);

    overflow: hidden;

    border-bottom: 1px solid var(--ww-border);

    background: var(--ww-bg);
}


/* ============================================================
   LATENT TOPOGRAPHY COVER
   Uses Ghost Source's publication cover image.
   The image itself already contains the amber semantic field,
   so this uses one lightweight darkening layer and no CSS filter.
   ============================================================ */

body.home-template
.gh-header.is-classic.has-image
.gh-header-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0.46;

    pointer-events: none;
    user-select: none;

    z-index: 0;
}


/* Keep the center calm and readable while allowing the
   contour field to remain visible toward the edges. */

body.home-template
.gh-header.is-classic.has-image::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at 50% 47%,
            rgba(11, 13, 16, 0.22) 0%,
            rgba(11, 13, 16, 0.34) 40%,
            rgba(11, 13, 16, 0.60) 76%,
            rgba(11, 13, 16, 0.78) 100%
        ),
        linear-gradient(
            180deg,
            rgba(11, 13, 16, 0.16) 0%,
            rgba(11, 13, 16, 0.04) 45%,
            rgba(11, 13, 16, 0.32) 100%
        );

    pointer-events: none;

    z-index: 1;
}


/* Inner layout */

body.home-template
.gh-header.is-classic
.gh-header-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    gap: 0;

    overflow: visible;
}


/* ============================================================
   HERO META ROW
   JS injects this.
   ============================================================ */

.ww-hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(100%, 760px);

    margin-bottom: 34px;

    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}


.ww-hero-brand {
    color: var(--ww-gold);
}


.ww-hero-index {
    color: var(--ww-faint);
}


/* ============================================================
   HERO HEADLINE
   ============================================================ */

body.home-template
.gh-header.is-classic
.gh-header-title {
    max-width: 800px;

    margin: 0;

    color: var(--ww-text);

    font-size: clamp(4.6rem, 5vw, 7rem);
    font-weight: 725;

    line-height: 0.98;

    letter-spacing: -0.055em;

    text-align: center;
    text-wrap: balance;
}


/* ============================================================
   TOPIC LINE
   JS injects this beneath the headline.
   ============================================================ */

.ww-hero-topics {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 30px;

    color: var(--ww-muted);

    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;

    line-height: 1.5;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.ww-hero-topic-separator {
    color: var(--ww-gold);

    opacity: 0.65;
}


/* ============================================================
   HERO SEARCH
   ============================================================ */

body.home-template
.gh-header.is-classic
.gh-form {
    width: min(100%, 640px);
    max-width: 640px;

    height: 58px;

    margin-top: 38px;

    background: var(--ww-surface);

    border: 1px solid var(--ww-border);
    border-radius: 10px;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.12);

    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}


body.home-template
.gh-header.is-classic
.gh-form:hover {
    background: var(--ww-surface-hover);

    border-color: var(--ww-border-strong);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.17);
}


body.home-template
.gh-header.is-classic
.gh-form:focus-within {
    border-color: var(--ww-gold);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.08),
        0 20px 55px rgba(0, 0, 0, 0.17);
}


/* Search icon */

body.home-template
.gh-header.is-classic
.gh-form > svg {
    color: var(--ww-muted);
}


/* Search label */

body.home-template
.gh-header.is-classic
button.gh-form-input {
    color: var(--ww-muted);

    font-family: var(--ww-mono);
    font-size: 12px;
    font-weight: 400;

    letter-spacing: 0.015em;

    text-align: left;
}


/* ============================================================
   WEIGHTED SIGNAL
   JS injects beneath Search.
   ============================================================ */

.ww-hero-signal {
    display: grid;

    grid-template-columns:
        5px
        minmax(40px, 1fr)
        auto
        5px
        minmax(40px, 1fr)
        auto
        5px;

    gap: 11px;
    align-items: center;

    width: min(78%, 520px);

    margin-top: 40px;

    opacity: 0.55;

    transition: opacity 220ms ease;
}


body.home-template
.gh-header.is-classic:hover
.ww-hero-signal {
    opacity: 0.8;
}


.ww-hero-signal-node {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #68727d;
}


.ww-hero-signal-node.is-active {
    background: var(--ww-gold);
}


.ww-hero-signal-line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #242a31,
            #53606d,
            #242a31
        );
}


.ww-hero-signal-weight {
    color: var(--ww-faint);

    font-family: var(--ww-mono);
    font-size: 8px;

    letter-spacing: 0.08em;
}




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

@media (max-width: 767px) {

    body.home-template
    .gh-header.is-classic.has-image
    .gh-header-image {
        object-position: 56% center;
        opacity: 0.40;
    }


    /*
       Let Source retain control of its full-screen mobile menu.
    */

    #gh-navigation .gh-navigation-menu a {
        font-family: inherit;

        font-size: 1.75rem;

        letter-spacing: normal;
        text-transform: none;
    }


    #gh-navigation
    .gh-navigation-menu
    .nav-current
    a::before {
        display: none;
    }


    #gh-navigation
    a[data-portal="signup"].gh-button {
        font-family: inherit;

        font-size: 1.75rem;

        letter-spacing: normal;
        text-transform: none;
    }


    body.home-template
    .gh-header.is-classic {
        padding-block: 92px 76px;
    }


    body.home-template
    .gh-header.is-classic
    .gh-header-inner {
        max-width: 100%;
    }


    .ww-hero-meta {
        justify-content: center;

        margin-bottom: 27px;
    }


    .ww-hero-index {
        display: none;
    }


    .ww-hero-brand {
        font-size: 9px;

        letter-spacing: 0.18em;
    }


    body.home-template
    .gh-header.is-classic
    .gh-header-title {
        max-width: 620px;

        font-size: clamp(4rem, 12vw, 5.6rem);

        line-height: 1;

        letter-spacing: -0.048em;
    }


    .ww-hero-topics {
        max-width: 360px;

        margin-top: 25px;

        gap: 7px;

        font-size: 8px;
    }


    body.home-template
    .gh-header.is-classic
    .gh-form {
        width: 100%;

        height: 56px;

        margin-top: 32px;
    }


    body.home-template
    .gh-header.is-classic
    button.gh-form-input {
        font-size: 11px;
    }


    .ww-hero-signal {
        width: 88%;

        margin-top: 32px;

        gap: 8px;
    }


    .ww-hero-signal-weight {
        font-size: 7px;
    }

}


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

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

    #gh-navigation *,
    body.home-template .gh-header * {
        transition: none !important;
    }

}

/* ============================================================
   WORDS & WEIGHTS — ARTICLE FORMATTING
   Ghost Source theme

   Conservative layer:
   - Source controls layout + spacing
   - Inter for reading
   - Mono only for technical details
   - Amber used sparingly
   ============================================================ */


/* ============================================================
   01. ARTICLE BODY
   ============================================================ */

.post-template .gh-content,
.page-template .gh-content {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif !important;

    color: var(--ww-soft);

    line-height: 1.72;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* Make normal Markdown prose stay sans-serif */

.post-template .gh-content :is(
    p,
    li,
    dt,
    dd
),
.page-template .gh-content :is(
    p,
    li,
    dt,
    dd
) {
    font-family: inherit !important;
}


/* ============================================================
   02. HEADINGS

   Keep Ghost Source's own sizes and vertical spacing.
   Only refine typography/color.
   ============================================================ */

.post-template .gh-content :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6
),
.page-template .gh-content :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6
) {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif !important;

    color: var(--ww-text);

    text-wrap: balance;
}


/* Main sections */

.post-template .gh-content h2,
.page-template .gh-content h2 {
    font-weight: 725;

    letter-spacing: -0.028em;
}


/* Small brand marker — subtle, not terminal-heavy */

.post-template .gh-content h2::before,
.page-template .gh-content h2::before {
    content: "//";

    display: inline-block;

    margin-right: 9px;

    color: var(--ww-gold);

    font-family: var(--ww-mono);
    font-size: 0.42em;
    font-weight: 500;

    letter-spacing: 0;

    vertical-align: 0.18em;
}


/* Subsections */

.post-template .gh-content h3,
.page-template .gh-content h3 {
    font-weight: 700;

    letter-spacing: -0.022em;
}


.post-template .gh-content :is(h4, h5, h6),
.page-template .gh-content :is(h4, h5, h6) {
    font-weight: 650;

    letter-spacing: -0.012em;
}


/* ============================================================
   03. BOLD / ITALIC
   ============================================================ */

.post-template .gh-content strong,
.post-template .gh-content b,
.page-template .gh-content strong,
.page-template .gh-content b {
    color: var(--ww-text);

    font-weight: 700;
}


.post-template .gh-content em,
.post-template .gh-content i,
.page-template .gh-content em,
.page-template .gh-content i {
    color: inherit;

    font-style: italic;
}


/* ============================================================
   04. LINKS

   Text stays exactly the same colour.
   Amber underline is the only link treatment.
   No hover colour change.
   ============================================================ */

.post-template .gh-content a,
.post-template .gh-content a:visited,
.page-template .gh-content a,
.page-template .gh-content a:visited {
    color: inherit !important;

    text-decoration-line: underline;
    text-decoration-color: rgba(212, 154, 58, 0.58);
    text-decoration-thickness: 1px;

    text-underline-offset: 4px;

    opacity: 1 !important;
}


.post-template .gh-content a:hover,
.post-template .gh-content a:focus-visible,
.page-template .gh-content a:hover,
.page-template .gh-content a:focus-visible {
    color: inherit !important;

    text-decoration-color: rgba(212, 154, 58, 0.58);

    opacity: 1 !important;
}


/* ============================================================
   05. LISTS
   ============================================================ */

.post-template .gh-content :is(ul, ol),
.page-template .gh-content :is(ul, ol) {
    font-family: inherit !important;
}


.post-template .gh-content li::marker,
.page-template .gh-content li::marker {
    color: var(--ww-gold);

    font-weight: 600;
}


/* ============================================================
   06. BLOCKQUOTES

   Simple editorial treatment.
   No labels or extra visual clutter.
   ============================================================ */

.post-template .gh-content blockquote,
.page-template .gh-content blockquote {
    padding-left: 24px;

    color: var(--ww-text);

    font-family: inherit !important;
    font-style: italic;

    border-left: 2px solid var(--ww-gold);

    opacity: 0.95;
}


/* ============================================================
   07. DIVIDERS
   Tiny nod to the weighted-signal motif.
   ============================================================ */

.post-template .gh-content hr,
.page-template .gh-content hr {
    height: 1px;

    border: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--ww-border) 8%,
            var(--ww-border-strong) 43%,
            var(--ww-gold) 50%,
            var(--ww-border-strong) 57%,
            var(--ww-border) 92%,
            transparent 100%
        );

    opacity: 0.65;
}


/* ============================================================
   08. INLINE CODE
   ============================================================ */

.post-template .gh-content :not(pre) > code,
.page-template .gh-content :not(pre) > code {
    padding: 0.14em 0.38em;

    color: #e2ad52;

    font-family: var(--ww-mono) !important;
    font-size: 0.88em;

    background: var(--ww-surface);

    border: 1px solid var(--ww-border);
    border-radius: 4px;
}


/* ============================================================
   09. CODE BLOCKS
   Same visual language as Search / JOIN.
   ============================================================ */

.post-template .gh-content pre,
.page-template .gh-content pre {
    overflow-x: auto;

    padding: 20px 22px;

    color: #d7dce2;

    font-family: var(--ww-mono) !important;
    font-size: 0.88em;

    line-height: 1.65;

    background: var(--ww-surface);

    border: 1px solid var(--ww-border);
    border-radius: 7px;

    box-shadow: none;
}


.post-template .gh-content pre code,
.page-template .gh-content pre code {
    padding: 0;

    color: inherit;

    font: inherit !important;

    background: transparent;

    border: 0;
}


/* Ghost code cards */

.post-template .gh-content .kg-code-card *,
.page-template .gh-content .kg-code-card * {
    font-family: var(--ww-mono) !important;
}


/* ============================================================
   10. IMAGES
   ============================================================ */

.post-template .gh-content :is(
    .kg-image-card img,
    .kg-gallery-card img
),
.page-template .gh-content :is(
    .kg-image-card img,
    .kg-gallery-card img
) {
    border-radius: 5px;
}


/* ============================================================
   11. CAPTIONS

   Caption = metadata, so mono works naturally here.
   ============================================================ */

.post-template .gh-content figcaption,
.page-template .gh-content figcaption {
    color: var(--ww-muted);

    font-family: var(--ww-mono) !important;
    font-size: 10px;

    line-height: 1.55;
    letter-spacing: 0.02em;
}


/* ============================================================
   12. TABLES
   Keep Ghost's structure; just make dark mode readable.
   ============================================================ */

.post-template .gh-content table,
.page-template .gh-content table {
    color: var(--ww-soft);
}


.post-template .gh-content table th,
.page-template .gh-content table th {
    color: var(--ww-text);

    font-family: var(--ww-mono);
    font-size: 0.8em;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.post-template .gh-content table :is(th, td),
.page-template .gh-content table :is(th, td) {
    border-color: var(--ww-border);
}


/* ============================================================
   13. CALLOUTS

   Preserve Ghost's card layout.
   Just bring the colors into the site.
   ============================================================ */

.post-template .gh-content .kg-callout-card,
.page-template .gh-content .kg-callout-card {
    color: var(--ww-soft);

    background: var(--ww-surface) !important;

    border: 1px solid var(--ww-border);

    border-radius: 7px;
}


/* ============================================================
   14. BOOKMARK CARDS
   ============================================================ */

.post-template .gh-content .kg-bookmark-container,
.page-template .gh-content .kg-bookmark-container {
    overflow: hidden;

    background: var(--ww-surface);

    border: 1px solid var(--ww-border) !important;

    border-radius: 7px;
}


.post-template .gh-content .kg-bookmark-title,
.page-template .gh-content .kg-bookmark-title {
    color: var(--ww-text);
}


.post-template .gh-content .kg-bookmark-description,
.page-template .gh-content .kg-bookmark-description {
    color: var(--ww-muted);
}


/* ============================================================
   15. HIGHLIGHT
   ============================================================ */

.post-template .gh-content mark,
.page-template .gh-content mark {
    padding: 0.05em 0.15em;

    color: var(--ww-text);

    background: rgba(212, 154, 58, 0.16);

    border-radius: 2px;
}


/* ============================================================
   16. MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .post-template .gh-content,
    .page-template .gh-content {
        line-height: 1.7;
    }


    .post-template .gh-content h2::before,
    .page-template .gh-content h2::before {
        margin-right: 7px;
    }


    .post-template .gh-content blockquote,
    .page-template .gh-content blockquote {
        padding-left: 18px;
    }


    .post-template .gh-content pre,
    .page-template .gh-content pre {
        padding: 17px 18px;

        font-size: 0.84em;
    }

}

/* ============================================================
   WORDS & WEIGHTS — SIGNAL CALIBRATION
   Extends the existing Signal Ledger header.
   ============================================================ */


/* Signal becomes the calibration track */
.ww-hero-signal {
    position: relative;
}


/* Keep numbers stable while they calculate */
.ww-hero-signal-weight {
    min-width: 3.4em;

    text-align: center;

    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";

    transition:
        color 220ms ease,
        opacity 220ms ease,
        transform 220ms ease;
}


/* ------------------------------------------------------------
   MOVING SIGNAL PACKET

   A small amber block, related to the footer cursor without
   literally repeating the terminal cursor.
   ------------------------------------------------------------ */

.ww-hero-packet {
    position: absolute;

    top: 50%;
    left: 0;

    z-index: 4;

    width: 5px;
    height: 5px;

    border-radius: 1px;

    background: var(--ww-gold);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.08),
        0 0 11px rgba(212, 154, 58, 0.28);

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    will-change:
        left,
        opacity,
        transform;
}


/* ------------------------------------------------------------
   NODE CALIBRATION
   ------------------------------------------------------------ */

.ww-hero-signal-node {
    position: relative;

    transition:
        background-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}


/* Node currently receiving the signal */

.ww-hero-signal-node.is-calibrating {
    background: var(--ww-gold);

    box-shadow:
        0 0 0 4px rgba(212, 154, 58, 0.09),
        0 0 13px rgba(212, 154, 58, 0.18);

    transform: scale(1.35);
}


/* Brief arrival pulse */

.ww-hero-signal-node.is-pulsing {
    animation:
        ww-node-pulse 600ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


@keyframes ww-node-pulse {

    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(212, 154, 58, 0);
    }

    35% {
        transform: scale(1.65);
        box-shadow:
            0 0 0 5px rgba(212, 154, 58, 0.09),
            0 0 15px rgba(212, 154, 58, 0.22);
    }

    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(212, 154, 58, 0);
    }

}


/* ------------------------------------------------------------
   STATUS
   ------------------------------------------------------------ */

.ww-hero-index {
    display: inline-flex;
    align-items: center;

    min-width: 145px;

    justify-content: flex-end;

    font-variant-numeric: tabular-nums;

    transition:
        color 220ms ease,
        opacity 220ms ease;
}


/* Status is slightly brighter while the system is resolving */

.ww-hero-index.is-calibrating {
    color: #7c8793;
}


/* Final lock state */

.ww-hero-index.is-locked {
    color: var(--ww-muted);
}


.ww-hero-lock-dot {
    display: inline-block;

    width: 4px;
    height: 4px;

    margin-left: 8px;

    border-radius: 50%;

    background: var(--ww-gold);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.08);
}


/* ------------------------------------------------------------
   WEIGHT STATES
   ------------------------------------------------------------ */

.ww-hero-signal-weight.is-resolving {
    color: #929ca7;

    transform: translateY(-1px);
}


.ww-hero-signal.is-locked
.ww-hero-signal-weight {
    color: var(--ww-faint);

    transform: none;
}


/* Final signal is calm */
.ww-hero-signal.is-locked {
    opacity: 0.58;
}


/* ------------------------------------------------------------
   SEARCH RESPONSE

   After calibration is finished, interacting with Search
   gives the centre node one quiet pulse.
   ------------------------------------------------------------ */

.ww-hero-signal.is-querying
.ww-hero-signal-node[data-node="middle"] {
    animation:
        ww-query-pulse 650ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


@keyframes ww-query-pulse {

    0%,
    100% {
        background: #68727d;

        transform: scale(1);

        box-shadow: none;
    }

    45% {
        background: var(--ww-gold);

        transform: scale(1.45);

        box-shadow:
            0 0 0 4px rgba(212, 154, 58, 0.08);
    }

}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 767px) {

    .ww-hero-index {
        min-width: auto;
    }


    /*
       The normal mobile header hides .ww-hero-index.
       Keep that existing behavior.
    */

    .ww-hero-packet {
        width: 4px;
        height: 4px;
    }

}


/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */

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

    .ww-hero-packet {
        display: none !important;
    }


    .ww-hero-signal-node,
    .ww-hero-signal-weight,
    .ww-hero-index {
        animation: none !important;
        transition: none !important;
    }

}

/* ============================================================
   WORDS & WEIGHTS — INTERACTION POLISH
   Amber appears when the interface is "active".
   ============================================================ */

:root {
    --ww-gold-bright: #efbd69;
    --ww-gold-glow: rgba(212, 154, 58, 0.24);
}


/* ============================================================
   DESKTOP NAV LINKS
   Amber activation + tiny signal underline.
   ============================================================ */

@media (min-width: 768px) {

    #gh-navigation .gh-navigation-menu a {
        position: relative;

        transition:
            color 180ms ease,
            text-shadow 180ms ease,
            opacity 180ms ease;
    }


    #gh-navigation .gh-navigation-menu a::after {
        content: "";

        position: absolute;

        left: 8%;
        right: 8%;
        bottom: -10px;

        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                var(--ww-gold),
                transparent
            );

        opacity: 0;

        transform: scaleX(0.35);

        box-shadow:
            0 0 8px rgba(212, 154, 58, 0.22);

        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }


    #gh-navigation .gh-navigation-menu a:hover,
    #gh-navigation .gh-navigation-menu a:focus-visible {
        color: var(--ww-gold-bright);

        text-shadow:
            0 0 14px rgba(212, 154, 58, 0.18);

        opacity: 1;
    }


    #gh-navigation .gh-navigation-menu a:hover::after,
    #gh-navigation .gh-navigation-menu a:focus-visible::after {
        opacity: 0.9;

        transform: scaleX(1);
    }


    /*
       Current page stays white.
       Its amber node already communicates state.
    */

    #gh-navigation
    .gh-navigation-menu
    .nav-current
    a {
        color: var(--ww-text);
    }


    #gh-navigation
    .gh-navigation-menu
    .nav-current
    a:hover {
        color: var(--ww-gold-bright);
    }

}


/* ============================================================
   NAV SEARCH
   ============================================================ */

#gh-navigation button.gh-search:hover,
#gh-navigation button.gh-search:focus-visible {
    color: var(--ww-gold-bright);

    background:
        rgba(212, 154, 58, 0.07);

    border-color:
        rgba(212, 154, 58, 0.42);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.045),
        0 0 18px rgba(212, 154, 58, 0.08);
}


/* ============================================================
   SIGN IN
   ============================================================ */

#gh-navigation
a[data-portal="signin"]:hover,
#gh-navigation
a[data-portal="signin"]:focus-visible {
    color: var(--ww-gold-bright);

    text-shadow:
        0 0 14px rgba(212, 154, 58, 0.14);

    opacity: 1;
}


/* ============================================================
   JOIN
   Existing treatment, slightly more dimensional.
   ============================================================ */

#gh-navigation
a[data-portal="signup"].gh-button:hover,
#gh-navigation
a[data-portal="signup"].gh-button:focus-visible {
    color: var(--ww-gold-bright);

    background:
        rgba(212, 154, 58, 0.10);

    border-color:
        rgba(212, 154, 58, 0.78);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.045),
        0 8px 24px rgba(0, 0, 0, 0.16),
        0 0 18px rgba(212, 154, 58, 0.07);

    transform: translateY(-1px);
}


/* ============================================================
   HERO SEARCH
   Make hover feel like the system has noticed the pointer.
   Focus remains stronger than hover.
   ============================================================ */

body.home-template
.gh-header.is-classic
.gh-form:hover {
    background: var(--ww-surface-hover);

    border-color:
        rgba(212, 154, 58, 0.38);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.17),
        0 0 22px rgba(212, 154, 58, 0.045);
}


body.home-template
.gh-header.is-classic
.gh-form:hover > svg {
    color: var(--ww-gold-bright);
}


body.home-template
.gh-header.is-classic
.gh-form:hover
button.gh-form-input {
    color: var(--ww-soft);
}


/* Stronger only when Search is actually activated */

body.home-template
.gh-header.is-classic
.gh-form:focus-within {
    border-color: var(--ww-gold);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.075),
        0 0 28px rgba(212, 154, 58, 0.065),
        0 20px 55px rgba(0, 0, 0, 0.17);
}


/* ============================================================
   HERO MICRO-DETAILS
   ============================================================ */

.ww-hero-topic-separator {
    transition:
        opacity 180ms ease,
        text-shadow 180ms ease;
}


body.home-template
.gh-header.is-classic:hover
.ww-hero-topic-separator {
    opacity: 0.9;

    text-shadow:
        0 0 9px rgba(212, 154, 58, 0.20);
}


/* Locked signal nodes gain just a trace of energy on hero hover */

body.home-template
.gh-header.is-classic:hover
.ww-hero-signal.is-locked
.ww-hero-signal-node.is-active {
    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 10px rgba(212, 154, 58, 0.12);
}


/* ============================================================
   ARTICLE LINKS
   Keep prose restrained:
   text does NOT turn amber; the signal underneath does.
   ============================================================ */

.post-template .gh-content a:hover,
.post-template .gh-content a:focus-visible,
.page-template .gh-content a:hover,
.page-template .gh-content a:focus-visible {
    color: #efbd69 !important;

    text-decoration-color: #d49a3a;
    text-decoration-thickness: 1.5px;

    text-shadow:
        0 0 8px rgba(212, 154, 58, 0.18),
        0 0 22px rgba(212, 154, 58, 0.07);

    opacity: 1 !important;
}

  /* EDITORIAL DROP CAP */
.post-template .gh-content>p:first-of-type::first-letter{
float:left;
margin:.07em .12em 0 0;
color:var(--ww-text);
font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
font-size:4.6em;
font-weight:725;
line-height:.72;
letter-spacing:-.045em
}

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

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

    #gh-navigation .gh-navigation-menu a::after {
        transition: none;
    }

}

/* ============================================================
   WORDS & WEIGHTS — GRID SIGNAL INTERACTION

   Hover sequence:
   1. Same-row articles recede slightly
   2. Image wakes up
   3. Signal propagates from pointer-entry position
   4. Title activates amber
   5. Existing Source divider becomes a live signal
   6. Small node resolves on that divider

   Does NOT alter Source grid geometry.
   ============================================================ */


/* ============================================================
   CARD BASE
   ============================================================ */

.gh-container.is-grid
.gh-feed > .gh-card {
    --ww-signal-origin: 50%;

    position: relative;
}


/*
   Source makes the whole card one link.
   We use the link for peer fading so Source's separators
   remain at full opacity.
*/

.gh-container.is-grid
.gh-feed > .gh-card
> .gh-card-link {
    transition:
        opacity 260ms ease;
}


/* Active card remains completely solid */

.gh-container.is-grid
.gh-feed > .gh-card.ww-card-active
> .gh-card-link {
    opacity: 1 !important;
}


/* ============================================================
   SAME-ROW FOCUS ISOLATION

   JS applies this ONLY to cards in the same visual row.
   Other rows remain untouched.
   ============================================================ */

@media (hover: hover) and (pointer: fine) {

    .gh-container.is-grid
    .gh-feed > .gh-card.ww-card-peer
    > .gh-card-link {
        opacity: 0.82;
    }

}


/* ============================================================
   IMAGE
   ============================================================ */

.gh-container.is-grid
.gh-card-image {
    position: relative;

    overflow: hidden;

    isolation: isolate;
}


/*
   Source's image is absolutely positioned inside this figure.
*/

.gh-container.is-grid
.gh-card-image img {
    z-index: 0;

    transform: scale(1.001);

    filter:
        brightness(1)
        saturate(1);

    transition:
        transform 480ms
        cubic-bezier(.18, .76, .22, 1),

        filter 320ms ease;
}


/* Very small focus zoom */

.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-image img {
    transform:
        scale(1.018);

    filter:
        brightness(1.045)
        saturate(1.04);
}


/* ============================================================
   SEMANTIC BLOOM

   A nearly invisible amber field forms around the point
   where the pointer entered the card.
   ============================================================ */

.gh-container.is-grid
.gh-card-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at
            var(--ww-signal-origin)
            100%,

            rgba(212, 154, 58, 0.15) 0%,

            rgba(212, 154, 58, 0.055) 18%,

            transparent 46%
        );

    opacity: 0;

    transition:
        opacity 320ms ease;

    pointer-events: none;
}


.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-image::before {
    opacity: 1;
}


/* ============================================================
   POINTER-ORIGIN SIGNAL TRACE

   The JS writes --ww-signal-origin.

   Enter near left:
       ●━━━━━━━━━━━━━━━━━━>

   Enter near right:
       <━━━━━━━━━━━━━━━━━━●

   Enter near centre:
       <━━━━━━━━●━━━━━━━━>
   ============================================================ */

.gh-container.is-grid
.gh-card-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    height: 1px;

    background:
        linear-gradient(
            90deg,

            rgba(212, 154, 58, 0),

            rgba(212, 154, 58, 0.34) 10%,

            rgba(212, 154, 58, 0.82) 42%,

            #efbd69 50%,

            rgba(212, 154, 58, 0.82) 58%,

            rgba(212, 154, 58, 0.34) 90%,

            rgba(212, 154, 58, 0)
        );

    opacity: 0;

    transform:
        scaleX(0.018);

    transform-origin:
        var(--ww-signal-origin)
        center;

    box-shadow:
        0 0 7px
        rgba(212, 154, 58, 0.14),

        0 0 18px
        rgba(212, 154, 58, 0.055);

    transition:
        transform 460ms
        cubic-bezier(.18, .76, .22, 1),

        opacity 150ms ease;

    pointer-events: none;
}


.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-image::after {
    opacity: 0.95;

    transform:
        scaleX(1);
}


/* ============================================================
   TITLE ACTIVATION
   ============================================================ */

.gh-container.is-grid
.gh-card-title {
    transition:
        color 210ms ease,
        text-shadow 240ms ease,
        transform 240ms ease,
        opacity 210ms ease;
}


/*
   Source normally reduces title opacity on card hover.
   Override that deliberately for the active signal state.
*/

.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-title {
    color:
        #efbd69;

    opacity:
        1 !important;

    text-shadow:
        0 0 9px
        rgba(212, 154, 58, 0.13),

        0 0 24px
        rgba(212, 154, 58, 0.045);

    transform:
        translateY(-1px);
}


/* ============================================================
   EXCERPT
   ============================================================ */

.gh-container.is-grid
.gh-card-excerpt {
    transition:
        color 220ms ease;
}


.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-excerpt {
    color:
        var(--ww-soft, #c3c9d1);
}


/* ============================================================
   META / DATE

   Deliberately not amber.
   ============================================================ */

.gh-container.is-grid
.gh-card-meta {
    transition:
        color 220ms ease;
}


.gh-container.is-grid
.gh-card.ww-card-active
.gh-card-meta {
    color:
        #9ca5af;
}


/* ============================================================
   EXISTING SOURCE VERTICAL DIVIDER

   Source already places this at half the grid gap.
   We only change its appearance when JS marks it active.
   ============================================================ */

.gh-container.is-grid
.gh-feed > .gh-card::after {
    transition:
        background-color 240ms ease,
        box-shadow 240ms ease;
}


.gh-container.is-grid
.gh-feed > .gh-card.ww-card-divider-hot::after {
    background:
        linear-gradient(
            180deg,

            rgba(212, 154, 58, 0.02) 0%,

            rgba(212, 154, 58, 0.20) 18%,

            rgba(212, 154, 58, 0.72) 44%,

            #d49a3a 50%,

            rgba(212, 154, 58, 0.72) 56%,

            rgba(212, 154, 58, 0.20) 82%,

            rgba(212, 154, 58, 0.02) 100%
        );

    box-shadow:
        0 0 9px
        rgba(212, 154, 58, 0.12);
}


/* ============================================================
   DIVIDER SIGNAL NODE

   Injected lazily by JS.
   ============================================================ */

.ww-card-divider-node {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--ww-gold, #d49a3a);

    opacity: 0;

    box-shadow:
        0 0 0 4px
        rgba(212, 154, 58, 0.07),

        0 0 12px
        rgba(212, 154, 58, 0.22);

    pointer-events: none;
}


/* Node on divider to LEFT of card */

.gh-card.ww-card-active[
    data-ww-divider="left"
]
> .ww-card-divider-node {
    left:
        calc(
            var(--grid-gap) / -2
        );

    opacity: 1;

    animation:
        ww-card-node-arrive
        440ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


/* Node on divider to RIGHT of card */

.gh-card.ww-card-active[
    data-ww-divider="right"
]
> .ww-card-divider-node {
    right:
        calc(
            var(--grid-gap) / -2
        );

    opacity: 1;

    animation:
        ww-card-node-arrive-right
        440ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


@keyframes ww-card-node-arrive {

    0% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(0.25);
    }

    55% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.55);

        box-shadow:
            0 0 0 6px
            rgba(212, 154, 58, 0.07),

            0 0 17px
            rgba(212, 154, 58, 0.24);
    }

    100% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


@keyframes ww-card-node-arrive-right {

    0% {
        opacity: 0;

        transform:
            translate(50%, -50%)
            scale(0.25);
    }

    55% {
        opacity: 1;

        transform:
            translate(50%, -50%)
            scale(1.55);

        box-shadow:
            0 0 0 6px
            rgba(212, 154, 58, 0.07),

            0 0 17px
            rgba(212, 154, 58, 0.24);
    }

    100% {
        opacity: 1;

        transform:
            translate(50%, -50%)
            scale(1);
    }

}


/* ============================================================
   KEYBOARD FOCUS
   ============================================================ */

.gh-container.is-grid
.gh-card-link:focus-visible {
    outline:
        1px solid
        rgba(212, 154, 58, 0.46);

    outline-offset:
        7px;
}


/* ============================================================
   MOBILE / TOUCH

   Preserve Source's normal feed behavior.
   ============================================================ */

@media (hover: none) {

    .gh-container.is-grid
    .gh-card-image img {
        transform: none;
    }


    .gh-container.is-grid
    .gh-card-image::before,
    .gh-container.is-grid
    .gh-card-image::after,
    .ww-card-divider-node {
        display: none;
    }

}


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

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

    .gh-container.is-grid
    .gh-feed > .gh-card
    > .gh-card-link,

    .gh-container.is-grid
    .gh-card-image img,

    .gh-container.is-grid
    .gh-card-image::before,

    .gh-container.is-grid
    .gh-card-image::after,

    .gh-container.is-grid
    .gh-card-title,

    .gh-container.is-grid
    .gh-card-excerpt,

    .gh-container.is-grid
    .gh-card-meta,

    .ww-card-divider-node {
        transition: none !important;
        animation: none !important;
    }


    .gh-container.is-grid
    .gh-card.ww-card-active
    .gh-card-image img {
        transform: none;
    }

}

.ww-hero-topic{position:relative;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;cursor:default;transition:color .18s ease,opacity .18s ease,text-shadow .18s ease,transform .18s ease}
.ww-hero-topic-viz{position:absolute;top:calc(100% + 7px);left:50%;height:18px;display:block;opacity:0;transform:translate(-50%,-2px);pointer-events:none;transition:opacity .15s ease,transform .18s ease}
.ww-hero-topic.is-active{color:var(--ww-gold-bright,#efbd69);transform:translateY(-1px);text-shadow:0 0 10px rgba(212,154,58,.15)}
.ww-hero-topic.is-active .ww-hero-topic-viz{opacity:1;transform:translate(-50%,0)}
@media (hover:hover) and (pointer:fine){.ww-hero-topics.ww-topic-engaged .ww-hero-topic:not(.is-active){opacity:.46}.ww-hero-topics.ww-topic-engaged .ww-hero-topic-separator{opacity:.25;text-shadow:none}}
.ww-topic-ai-viz{width:66px;height:18px;overflow:visible;background-position:4px 100%,17px 100%,30px 100%,43px 100%,56px 100%;background-repeat:no-repeat;background-size:6px 30%,6px 58%,6px 42%,6px 72%,6px 35%;background-image:linear-gradient(#59636e,#59636e),linear-gradient(#68727d,#68727d),linear-gradient(#d49a3a,#d49a3a),linear-gradient(#68727d,#68727d),linear-gradient(#59636e,#59636e);filter:drop-shadow(0 0 5px rgba(212,154,58,.05))}
.ww-topic-ai-viz>*{display:none!important}
.ww-topic-ai-viz::after{content:"";position:absolute;left:2px;right:2px;bottom:-2px;height:1px;background:#343c45}
.ww-hero-topic.is-active .ww-topic-ai-viz{animation:ww-prob 1.8s cubic-bezier(.2,.75,.2,1) both}
@keyframes ww-prob{0%{background-size:6px 28%,6px 62%,6px 38%,6px 74%,6px 31%}18%{background-size:6px 78%,6px 25%,6px 61%,6px 38%,6px 69%}36%{background-size:6px 41%,6px 82%,6px 29%,6px 67%,6px 22%}56%{background-size:6px 34%,6px 46%,6px 73%,6px 51%,6px 20%}76%,100%{background-size:6px 18%,6px 36%,6px 94%,6px 43%,6px 15%}}
.ww-topic-security-viz{width:132px;height:18px}
.ww-topic-security-track{position:absolute;inset:0;background:linear-gradient(90deg,#3a444f 0 44%,transparent 44% 56%,#3a444f 56% 100%) center/100% 1px no-repeat}
.ww-topic-security-scan{position:absolute;left:0;top:7px;width:7px;height:4px;border-radius:1px;background:#d49a3a;opacity:0;box-shadow:0 0 7px rgba(212,154,58,.18)}
.ww-topic-security-lock{position:absolute;right:0;top:6px;width:6px;height:6px;border:1px solid #8d96a1;border-radius:50%;background:#0b0d10;opacity:0;box-shadow:none}
.ww-topic-security-viz::after{content:"◆";position:absolute;left:50%;top:50%;color:#d49a3a;font:7px/1 var(--ww-mono);opacity:0;transform:translate(-50%,-50%) scale(.35);text-shadow:0 0 9px rgba(212,154,58,.22)}
.ww-hero-topic.is-active .ww-topic-security-scan{animation:ww-challenge 1.7s cubic-bezier(.2,.75,.2,1) both}
.ww-hero-topic.is-active .ww-topic-security-lock{animation:ww-response 1.7s cubic-bezier(.2,.75,.2,1) both}
.ww-hero-topic.is-active .ww-topic-security-viz::after{animation:ww-verify 1.7s cubic-bezier(.2,.8,.2,1) both}
@keyframes ww-challenge{0%,8%{left:0;opacity:0}14%{opacity:1}48%{left:46%;opacity:1}60%,100%{left:46%;opacity:0}}
@keyframes ww-response{0%,24%{right:0;opacity:0}30%{opacity:1}62%{right:46%;opacity:1}70%,100%{right:46%;opacity:0}}
@keyframes ww-verify{0%,58%{opacity:0;transform:translate(-50%,-50%) scale(.35)}68%{opacity:1;transform:translate(-50%,-50%) scale(1.65)}80%,100%{opacity:1;transform:translate(-50%,-50%) scale(1)}}
.ww-topic-llm-viz{width:100px;height:18px;font-family:var(--ww-mono);font-size:7px;line-height:14px;color:#aab1b9;text-align:center}
.ww-topic-llm-viz>.ww-topic-token{position:absolute!important;inset:0!important;width:auto!important;height:14px!important;padding:0!important;border:0!important;background:transparent!important;color:transparent!important;font-size:0!important;animation:none!important}
.ww-topic-llm-viz>.ww-topic-token-b{display:none!important}
.ww-topic-token-a::before,.ww-topic-token-a::after,.ww-topic-llm-viz::before,.ww-topic-llm-viz::after{position:absolute;inset:0;white-space:pre;color:#aab1b9;font:7px/14px var(--ww-mono);letter-spacing:.02em;text-align:center;opacity:0}
.ww-topic-llm-viz::before{content:"[ L ] [ LM ] [ S ]"}.ww-topic-llm-viz::after{content:"[ LL ] [ MS ]"}.ww-topic-token-a::before{content:"[ L ] [ L ] [ M ] [ S ]"}.ww-topic-token-a::after{content:"[ LLMS ]";color:#d1a65d}
.ww-topic-token-cursor{position:absolute;right:24px;top:2px;width:3px;height:10px;background:#d49a3a;opacity:0}
.ww-hero-topic.is-active .ww-topic-llm-viz::before{animation:ww-t1 1.8s both}.ww-hero-topic.is-active .ww-topic-llm-viz::after{animation:ww-t2 1.8s both}.ww-hero-topic.is-active .ww-topic-token-a::before{animation:ww-t3 1.8s both}.ww-hero-topic.is-active .ww-topic-token-a::after{animation:ww-t4 1.8s both}.ww-hero-topic.is-active .ww-topic-token-cursor{animation:ww-cur 1.8s steps(1) both}
@keyframes ww-t1{0%,4%{opacity:0;transform:translateY(2px)}8%,22%{opacity:1;transform:none}27%,100%{opacity:0}}
@keyframes ww-t2{0%,25%{opacity:0}30%,44%{opacity:1}49%,100%{opacity:0}}
@keyframes ww-t3{0%,47%{opacity:0}52%,66%{opacity:1}71%,100%{opacity:0}}
@keyframes ww-t4{0%,69%{opacity:0}75%,100%{opacity:1}}
@keyframes ww-cur{0%,74%{opacity:0}75%,84%{opacity:1}85%,91%{opacity:.12}92%,100%{opacity:1}}
.ww-topic-systems-viz{width:72px;height:24px;border:1px solid #3a444f;border-radius:4px}
.ww-topic-systems-viz::before{content:"↻";position:absolute;left:50%;top:50%;color:#606a75;font:8px/1 var(--ww-mono);transform:translate(-50%,-50%);opacity:.7}
.ww-topic-systems-viz::after{content:"";position:absolute;left:50%;top:50%;width:3px;height:3px;border-radius:50%;background:#efbd69;opacity:0;transform:translate(-50%,-50%) scale(.2);box-shadow:0 0 8px rgba(212,154,58,.2)}
.ww-topic-systems-viz .ww-topic-node{position:absolute;width:5px;height:5px;border-radius:50%;background:#59636e;box-shadow:0 0 0 3px #0b0d10}
.ww-system-n1{left:-3px;top:-3px}.ww-system-n2{right:-3px;top:-3px}.ww-system-n3{right:-3px;bottom:-3px}.ww-system-n4{left:-3px;bottom:-3px}
.ww-hero-topic.is-active .ww-system-n1{animation:ww-loop1 1.8s both}.ww-hero-topic.is-active .ww-system-n2{animation:ww-loop2 1.8s both}.ww-hero-topic.is-active .ww-system-n3{animation:ww-loop3 1.8s both}.ww-hero-topic.is-active .ww-system-n4{animation:ww-loop4 1.8s both}.ww-hero-topic.is-active .ww-topic-systems-viz::after{animation:ww-emerge 1.8s cubic-bezier(.2,.8,.2,1) both}
@keyframes ww-loop1{0%,5%{background:#59636e}10%,100%{background:#d49a3a;box-shadow:0 0 0 3px #0b0d10,0 0 8px rgba(212,154,58,.18)}}
@keyframes ww-loop2{0%,25%{background:#59636e}31%,100%{background:#d49a3a;box-shadow:0 0 0 3px #0b0d10,0 0 8px rgba(212,154,58,.18)}}
@keyframes ww-loop3{0%,45%{background:#59636e}51%,100%{background:#d49a3a;box-shadow:0 0 0 3px #0b0d10,0 0 8px rgba(212,154,58,.18)}}
@keyframes ww-loop4{0%,65%{background:#59636e}71%,100%{background:#d49a3a;box-shadow:0 0 0 3px #0b0d10,0 0 8px rgba(212,154,58,.18)}}
@keyframes ww-emerge{0%,76%{opacity:0;transform:translate(-50%,-50%) scale(.2)}84%{opacity:1;transform:translate(-50%,-50%) scale(1.8)}92%,100%{opacity:1;transform:translate(-50%,-50%) scale(1)}}
@media (hover:none){.ww-hero-topic-viz{display:none}.ww-hero-topic{transform:none!important;text-shadow:none!important}}
@media (prefers-reduced-motion:reduce){.ww-hero-topic,.ww-hero-topic-viz{transition:none!important}.ww-hero-topic-viz,.ww-hero-topic-viz *,.ww-hero-topic-viz::before,.ww-hero-topic-viz::after{animation:none!important}}

/* ============================================================
   WORDS & WEIGHTS — REFINED FOOTER
   Ghost Source theme
   ============================================================ */

.gh-footer {
    position: relative;
    margin-top: 96px;
    color: var(--ww-muted, #8d96a1);
    background: #090b0e;
    border-top: 1px solid var(--ww-border, #282f38);
}

.gh-footer-signup {
    display: none !important;
}

.gh-footer-inner {
    position: relative;
}


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

.ww-footer-intro {
    padding: 44px 0 30px;
}

.ww-footer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}


/* ============================================================
   TERMINAL SIGNATURE
   Only "end of file" motif.
   ============================================================ */

.ww-terminal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #707985;
    font-family: var(
        --ww-mono,
        "JetBrains Mono",
        "SFMono-Regular",
        Consolas,
        monospace
    );
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.07em;
}

.ww-terminal-prompt {
    color: var(--ww-gold, #d49a3a);
}

.ww-terminal-command {
    color: #929aa5;
}

.ww-terminal-cursor {
    display: inline-block;
    width: 6px;
    height: 11px;
    margin-left: 1px;
    background: var(--ww-gold, #d49a3a);
    animation: ww-footer-blink 1.2s steps(1) infinite;
}

@keyframes ww-footer-blink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}


/* ============================================================
   SECOND-ORDER STATUS
   ============================================================ */

.ww-footer-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #747d88;
    font-family: var(
        --ww-mono,
        "JetBrains Mono",
        "SFMono-Regular",
        Consolas,
        monospace
    );
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ww-footer-status-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ww-gold, #d49a3a);
    box-shadow: 0 0 0 4px rgba(212, 154, 58, 0.08);
}


/* ============================================================
   COPY
   ============================================================ */

.ww-footer-copy {
    max-width: 840px;
    margin: 0;
    color: #a0a8b3;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: clamp(1.65rem, 1.35vw, 2rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.015em;
}


/* ============================================================
   WEIGHTED SIGNAL
   ============================================================ */

.ww-footer-signal {
    display: grid;
    grid-template-columns:
        5px
        minmax(40px, 1fr)
        auto
        5px
        minmax(40px, 1fr)
        auto
        5px;
    align-items: center;
    gap: 14px;
    margin: 4px 0 32px;
    opacity: 0.58;
}

.ww-footer-node {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #68727d;
}

.ww-footer-node.is-active {
    background: var(--ww-gold, #d49a3a);
}

.ww-footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #222830, #46505b, #222830);
}

.ww-footer-weight {
    color: #616b76;
    font-family: var(
        --ww-mono,
        "JetBrains Mono",
        "SFMono-Regular",
        Consolas,
        monospace
    );
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}


/* ============================================================
   SOURCE FOOTER BAR
   ============================================================ */

.gh-footer-bar {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: center;
    width: 100%;
    gap: 28px;
    margin: 0;
    padding: 0 0 34px;
    color: #818a95;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.gh-footer-logo {
    justify-self: start;
    color: var(--ww-text, #f2f4f7);
}

.gh-footer-logo img {
    max-height: 34px;
}

.gh-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 40px;
}

.gh-footer-menu .nav {
    gap: 8px 22px;
}

.gh-footer-menu a {
    color: #7c8590 !important;
    font-family: var(
        --ww-mono,
        "JetBrains Mono",
        "SFMono-Regular",
        Consolas,
        monospace
    );
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 160ms ease, opacity 160ms ease;
}

.gh-footer-menu a:hover {
    color: var(--ww-gold, #d49a3a) !important;
    opacity: 1;
}

.gh-footer-menu .gh-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
}

.gh-footer-menu .gh-social-links a {
    color: #747d88 !important;
    transition: color 160ms ease, transform 160ms ease;
}

.gh-footer-menu .gh-social-links a:hover {
    color: var(--ww-gold, #d49a3a) !important;
    transform: translateY(-1px);
    opacity: 1;
}

.gh-footer-copyright {
    justify-self: end;
    color: #616a75;
    font-size: 1.15rem;
    line-height: 1.4;
    text-align: right;
}

.gh-footer-copyright a {
    color: inherit;
    text-decoration-color: #3c434b;
    text-underline-offset: 3px;
}

.gh-footer-copyright a:hover {
    color: #929aa5;
}


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

@media (max-width: 767px) {
    .gh-footer {
        margin-top: 72px;
    }

    .ww-footer-intro {
        padding: 38px 0 26px;
    }

    .ww-footer-topline {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .ww-footer-copy {
        max-width: 100%;
        font-size: 1.65rem;
    }

    .ww-footer-signal {
        gap: 9px;
        margin-bottom: 30px;
    }

    .ww-footer-weight {
        font-size: 8px;
    }

    .gh-footer-bar {
        display: flex !important;
        flex-direction: column;
        gap: 22px;
        padding-bottom: 30px;
    }

    .gh-footer-logo,
    .gh-footer-copyright {
        justify-self: auto;
        text-align: center;
    }

    .gh-footer-menu {
        flex-direction: column;
        gap: 15px;
    }

    .gh-footer-menu .nav {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ww-terminal-cursor {
        animation: none;
    }
}

/* ============================================================
   WORDS & WEIGHTS — PUBLICATION POLISH
   01. Reading progress signal
   02. // LATEST system label
   03. Article metadata readout
   04. Selection colour
   ============================================================ */


/* ============================================================
   01. READING PROGRESS SIGNAL
   Posts only.
   ============================================================ */

.ww-reading-progress {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 999999;

    height: 1px;

    pointer-events: none;
}


.ww-reading-progress-track {
    position: absolute;
    inset: 0;

    background:
        rgba(58, 68, 79, 0.22);
}


.ww-reading-progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    transform: scaleX(0);
    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(212, 154, 58, 0.55),
            #d49a3a 75%,
            #efbd69
        );

    box-shadow:
        0 0 8px
        rgba(212, 154, 58, 0.14);

    will-change: transform;
}


/*
   Small node rides the signal endpoint.
*/

.ww-reading-progress-node {
    position: absolute;

    top: 50%;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        #d49a3a;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.7);

    box-shadow:
        0 0 0 3px
        rgba(212, 154, 58, 0.06),

        0 0 9px
        rgba(212, 154, 58, 0.17);

    will-change:
        left,
        opacity;
}


/*
   At 100%, the endpoint becomes a locked signal.
*/

.ww-reading-progress.is-complete
.ww-reading-progress-node {
    background:
        #efbd69;

    animation:
        ww-reading-lock
        520ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


@keyframes ww-reading-lock {

    0% {
        transform:
            translate(-50%, -50%)
            scale(0.75);
    }

    45% {
        transform:
            translate(-50%, -50%)
            scale(1.65);

        box-shadow:
            0 0 0 5px
            rgba(212, 154, 58, 0.08),

            0 0 15px
            rgba(212, 154, 58, 0.24);
    }

    100% {
        transform:
            translate(-50%, -50%)
            scale(1);

        box-shadow:
            0 0 0 3px
            rgba(212, 154, 58, 0.06),

            0 0 10px
            rgba(212, 154, 58, 0.18);
    }

}


/* ============================================================
   02. // LATEST + SIGNAL NODE

   Source already provides the horizontal rule.
   We use that rather than drawing another UI component.
   ============================================================ */

body.home-template
.gh-container-title {
    position: relative;

    display: flex;
    align-items: center;

    gap: 8px;

    color:
        var(--ww-muted, #8d96a1);

    font-family:
        var(
            --ww-mono,
            "JetBrains Mono",
            "SFMono-Regular",
            Consolas,
            monospace
        );

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.14em;

    border-bottom-color:
        var(--ww-border, #282f38);
}


/* // */

body.home-template
.gh-container-title::before {
    content: "//";

    color:
        var(--ww-gold, #d49a3a);

    font-weight: 500;

    letter-spacing: 0;
}


/*
   Signal node sits directly on Source's existing bottom rule.
*/

body.home-template
.gh-container-title::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -3px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--ww-gold, #d49a3a);

    box-shadow:
        0 0 0 3px
        rgba(212, 154, 58, 0.055),

        0 0 8px
        rgba(212, 154, 58, 0.12);
}


/* ============================================================
   03. ARTICLE METADATA READOUT

   Result:

   Author Name
   15 AUG 2026  ·  7 MIN  ·  TOPIC / AI

   Existing Source author structure remains intact.
   ============================================================ */

.post-template
.gh-article-meta-wrapper {
    gap: 5px;
}


/* Author remains editorial rather than terminal-like */

.post-template
.gh-article-author-name {
    color:
        var(--ww-text, #f2f4f7);
}


/* System readout */

.post-template
.gh-article-meta-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    color:
        var(--ww-muted, #8d96a1);

    font-family:
        var(
            --ww-mono,
            "JetBrains Mono",
            "SFMono-Regular",
            Consolas,
            monospace
        );

    font-size: 9px;

    font-weight: 500;

    line-height: 1.5;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    font-variant-numeric:
        tabular-nums;
}


/*
   Remove Source's original em-dash separator once JS
   creates the proper signal separators.
*/

.post-template
.gh-article-meta-content
.bull {
    display: none;
}


/* Amber separator */

.ww-article-meta-separator {
    color:
        var(--ww-gold, #d49a3a);

    opacity: 0.72;

    font-size: 8px;

    line-height: 1;
}


/* Topic readout */

.ww-article-meta-topic {
    color:
        var(--ww-muted, #8d96a1) !important;

    font-family: inherit;

    font-size: inherit;

    font-weight: inherit;

    letter-spacing: inherit;

    text-decoration: none !important;

    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}


.ww-article-meta-topic:hover {
    color:
        #efbd69 !important;

    text-shadow:
        0 0 10px
        rgba(212, 154, 58, 0.14);

    opacity: 1;
}


/*
   Once the topic is successfully moved into the metadata
   readout, remove the old standalone tag above the title.
*/

.post-template
.gh-article-header.ww-meta-ready
> .gh-article-tag {
    display: none;
}


/* ============================================================
   04. TEXT SELECTION
   ============================================================ */

::selection {
    color:
        var(--ww-text, #f2f4f7);

    background:
        rgba(212, 154, 58, 0.24);
}


::-moz-selection {
    color:
        var(--ww-text, #f2f4f7);

    background:
        rgba(212, 154, 58, 0.24);
}


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

@media (max-width: 767px) {

    .post-template
    .gh-article-meta-content {
        gap: 6px;

        font-size: 8px;

        letter-spacing: 0.07em;
    }


    body.home-template
    .gh-container-title {
        font-size: 9px;
    }

}


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

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

    .ww-reading-progress.is-complete
    .ww-reading-progress-node {
        animation: none;
    }

}

/* ============================================================
   WORDS & WEIGHTS — EDITORIAL MASTHEAD REFINEMENT
   Final nav state:
   Words & Weights    ● HOME   ABOUT          SEARCH   SIGN IN   JOIN →
   Only default amber signal is the active-page node.
   ============================================================ */

#gh-navigation.ww-masthead {
    position: relative;
    height: 62px;
    color: var(--ww-muted);
    background: var(--ww-bg);
    border-bottom: 1px solid rgba(58, 68, 79, 0.62);
}

#gh-navigation.ww-masthead .gh-navigation-inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 24px;
}

#gh-navigation.ww-masthead .gh-navigation-brand {
    display: flex;
    align-items: center;
}

#gh-navigation.ww-masthead .ww-masthead-title {
    color: var(--ww-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.038em;
    white-space: nowrap;
    text-decoration: none !important;
}

#gh-navigation.ww-masthead .gh-navigation-menu {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
}

#gh-navigation.ww-masthead .gh-navigation-menu .nav {
    gap: 24px;
}

#gh-navigation.ww-masthead .gh-navigation-actions,
#gh-navigation.ww-masthead .gh-navigation-members {
    gap: 22px;
    background: transparent !important;
}

#gh-navigation.ww-masthead .gh-navigation-menu a,
#gh-navigation.ww-masthead a[data-portal="signin"],
#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
#gh-navigation.ww-masthead a[data-portal="account"].gh-button,
#gh-navigation.ww-masthead button.gh-search {
    color: var(--ww-muted);
    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.135em;
    text-transform: uppercase;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1;
    transition: color 160ms ease, opacity 160ms ease;
}

#gh-navigation.ww-masthead .gh-navigation-menu a::after {
    content: none !important;
}

#gh-navigation.ww-masthead .gh-navigation-menu a:hover,
#gh-navigation.ww-masthead .gh-navigation-menu a:focus-visible,
#gh-navigation.ww-masthead a[data-portal="signin"]:hover,
#gh-navigation.ww-masthead a[data-portal="signin"]:focus-visible,
#gh-navigation.ww-masthead button.gh-search:hover,
#gh-navigation.ww-masthead button.gh-search:focus-visible {
    color: var(--ww-text);
    opacity: 1;
    text-shadow: none;
}

#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
    color: var(--ww-text);
}

#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 8px;
    margin-bottom: 2px;
    border-radius: 50%;
    background: var(--ww-gold);
}

#gh-navigation.ww-masthead button.gh-search {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

#gh-navigation.ww-masthead button.gh-search svg {
    display: none !important;
}

#gh-navigation.ww-masthead button.gh-search::after {
    content: "SEARCH";
}

#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
    min-height: 0;
    padding: 0;
    color: var(--ww-text);
    font-weight: 600;
}

#gh-navigation.ww-masthead a[data-portal="signup"].gh-button:hover,
#gh-navigation.ww-masthead a[data-portal="signup"].gh-button:focus-visible,
#gh-navigation.ww-masthead a[data-portal="account"].gh-button:hover,
#gh-navigation.ww-masthead a[data-portal="account"].gh-button:focus-visible {
    color: var(--ww-gold-bright);
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1;
}

@media (max-width: 767px) {
    #gh-navigation.ww-masthead {
        height: 64px;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        font-size: 1.55rem;
        white-space: nowrap;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu a,
    #gh-navigation.ww-masthead a[data-portal="signin"],
    #gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    #gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        font-family: inherit;
        font-size: 1.75rem;
        letter-spacing: normal;
        text-transform: none;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #gh-navigation.ww-masthead * {
        transition: none !important;
    }
}

/* ============================================================
   WORDS & WEIGHTS — SEARCH TOGGLE SAFETY
   Preserve Source's intended search-toggle split:
   brand search for mobile, actions search for desktop.
   ============================================================ */

@media (min-width: 768px) {
    #gh-navigation.ww-masthead .gh-navigation-brand > button.gh-search {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #gh-navigation.ww-masthead .gh-navigation-actions button.gh-search {
        display: none !important;
    }
}

/* ============================================================
   WORDS & WEIGHTS — MASTHEAD ALIGNMENT HOTFIX
   Scope: nav alignment only. No hero/footer/JS changes.
   ============================================================ */

@media (min-width: 768px) {
    #gh-navigation.ww-masthead .gh-navigation-inner,
    #gh-navigation.ww-masthead .gh-navigation-brand,
    #gh-navigation.ww-masthead .gh-navigation-menu,
    #gh-navigation.ww-masthead .gh-navigation-menu .nav,
    #gh-navigation.ww-masthead .gh-navigation-actions,
    #gh-navigation.ww-masthead .gh-navigation-members {
        align-items: center;
    }

    /* Source nudges text logos upward in left-logo layouts. Reset it. */
    #gh-navigation.ww-masthead .gh-navigation-logo,
    #gh-navigation.ww-masthead .gh-navigation-logo:not(:has(img)),
    #gh-navigation.ww-masthead .ww-masthead-title {
        top: 0 !important;
    }

    #gh-navigation.ww-masthead .ww-masthead-title,
    #gh-navigation.ww-masthead .gh-navigation-menu a,
    #gh-navigation.ww-masthead a[data-portal="signin"],
    #gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    #gh-navigation.ww-masthead a[data-portal="account"].gh-button,
    #gh-navigation.ww-masthead button.gh-search {
        display: inline-flex;
        align-items: center;
        height: 24px;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
        gap: 10px;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
        flex: 0 0 auto;
        margin: 0;
        transform: translateY(0);
    }
}

/* ============================================================
   WORDS & WEIGHTS — CLEAN AMPERSAND HOVER
   Scope: masthead wordmark only. No hero/footer/layout/JS changes.

   Removes the background ampersand completely. The hover effect is
   now only the real inline ampersand: amber, softly lit, and scaled
   from its own center without affecting layout.
   ============================================================ */

#gh-navigation.ww-masthead .ww-masthead-title {
    position: relative;
    overflow: visible;
    gap: 0;
    isolation: auto;
}

/* Disable all previous pseudo-glyph experiments. */
#gh-navigation.ww-masthead .ww-masthead-title::before,
#gh-navigation.ww-masthead .ww-masthead-title::after {
    content: none !important;
    display: none !important;
}

#gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
#gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
    display: inline-block;
    line-height: 1;
    transform-origin: 50% 54%;
    transition:
        color 160ms ease,
        transform 180ms cubic-bezier(.2, .8, .2, 1),
        text-shadow 180ms ease;
}

#gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
    margin-inline: 0.16em;
    color: inherit;
    transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
    #gh-navigation.ww-masthead .ww-masthead-title:hover .ww-wordmark-amp,
    #gh-navigation.ww-masthead .ww-masthead-title:focus-visible .ww-wordmark-amp {
        color: var(--ww-gold-bright, #efbd69);
        transform: scale(1.18);
        text-shadow:
            0 0 7px rgba(212, 154, 58, 0.18),
            0 0 18px rgba(212, 154, 58, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
        transition: none !important;
    }
}

/* ============================================================
   WORDS & WEIGHTS — MOBILE MASTHEAD HOTFIX
   Scope: mobile navigation only. Preserves Source's open/closed
   mobile menu model; no hero/footer/desktop/JS changes.
   ============================================================ */

@media (max-width: 767px) {

    /* Closed mobile header: wordmark + burger only. */
    #gh-navigation.ww-masthead {
        height: 64px;
        overflow: visible;
    }

    #gh-navigation.ww-masthead .gh-navigation-inner {
        display: grid;
        grid-template-rows: auto 1fr auto;
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: stretch;
        height: 100%;
    }

    #gh-navigation.ww-masthead .gh-navigation-brand {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 14px;
        align-items: center;
        grid-column-start: 1;
        height: 64px;
        min-width: 0;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        max-width: calc(100vw - 92px);
        height: auto;
        overflow: hidden;
        color: var(--ww-text);
        font-size: clamp(1.95rem, 5.7vw, 2.28rem);
        line-height: 1;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
        display: inline-block;
        flex: 0 0 auto;
    }

    /* Prevent the brand-row Search from colliding with the wordmark. */
    #gh-navigation.ww-masthead .gh-navigation-brand > button.gh-search {
        display: none !important;
    }

    #gh-navigation.ww-masthead .gh-burger {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin: 0;
        color: var(--ww-muted);
    }

    #gh-navigation.ww-masthead .gh-burger svg {
        width: 28px;
        height: 28px;
    }

    /* Preserve Source's hidden-while-closed mobile menu state. */
    #gh-navigation.ww-masthead .gh-navigation-menu,
    #gh-navigation.ww-masthead .gh-navigation-actions {
        position: fixed;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu {
        width: 100%;
        margin: 0;
        text-align: center;
        transition: none;
        transform: translateY(0);
    }

    #gh-navigation.ww-masthead .gh-navigation-actions {
        text-align: center;
        background: var(--ww-bg) !important;
    }

    /* Open mobile menu: vertical, calm, not a squeezed desktop nav. */
    .is-open#gh-navigation.ww-masthead {
        position: fixed;
        inset: 0;
        z-index: 3999999;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu,
    .is-open#gh-navigation.ww-masthead .gh-navigation-actions {
        position: static;
        visibility: visible;
        opacity: 1;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0;
        padding: 0;
        line-height: 1.35;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav li {
        opacity: 1;
        transform: translateY(0);
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: auto;
        color: var(--ww-muted);
        font-family: var(--ww-mono);
        font-size: 1.45rem;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
        color: var(--ww-text);
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
        display: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions {
        position: sticky;
        right: 0;
        bottom: 0;
        left: 0;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 22px 0 30px;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        color: var(--ww-muted);
        font-family: var(--ww-mono);
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search svg {
        display: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search::after {
        content: "SEARCH";
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-members {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: auto;
    }

    .is-open#gh-navigation.ww-masthead a[data-portal="signin"],
    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 0;
        padding: 0;
        font-family: var(--ww-mono);
        font-size: 1.25rem;
        line-height: 1;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        opacity: 1;
        transform: none;
    }

    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        color: var(--ww-text);
    }

}

/* ============================================================
   WORDS & WEIGHTS — MOBILE PORTAL + WORDMARK HOTFIX V11
   Scope: mobile masthead + mobile menu portal controls only.
   No desktop nav, hero, footer, cards, or calibration changes.
   ============================================================ */

@media (max-width: 767px) {

    /* Prevent the mobile wordmark descenders from clipping. */
    #gh-navigation.ww-masthead .gh-navigation-brand {
        overflow: visible;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        overflow: visible;
        line-height: 1.14;
        padding-block: 0.035em 0.12em;
    }

    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
        line-height: 1.14;
    }

    /* Keep Portal links truly tappable inside the full-screen menu. */
    .is-open#gh-navigation.ww-masthead .gh-navigation-actions,
    .is-open#gh-navigation.ww-masthead .gh-navigation-members,
    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search,
    .is-open#gh-navigation.ww-masthead a[data-portal="signin"],
    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        pointer-events: auto;
    }

    .is-open#gh-navigation.ww-masthead a[data-portal="signin"],
    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        position: relative;
        z-index: 2;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(212, 154, 58, 0.12);
    }

}

/* ============================================================
   WORDS & WEIGHTS — MOBILE PORTAL SAFETY HOTFIX V12
   Scope: mobile nav stacking only.

   Do not intercept, rewrite, or manually route Ghost Portal links.
   Source/Ghost Portal should handle href="#/portal/signin" and
   href="#/portal/signup" directly. This keeps the mobile menu below
   Portal while preserving the corrected mobile masthead spacing.
   ============================================================ */

@media (max-width: 767px) {

    /* Keep the full-screen menu above the page, but below Ghost Portal. */
    .is-open#gh-navigation.ww-masthead {
        z-index: 1000;
    }

    /* Preserve the descender/crop fix for the mobile wordmark. */
    #gh-navigation.ww-masthead .gh-navigation-brand {
        overflow: visible;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        overflow: visible;
        line-height: 1.16;
        padding-block: 0.04em 0.14em;
    }

    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
        line-height: 1.16;
    }

    /* Keep the visible mobile action links above the menu background. */
    .is-open#gh-navigation.ww-masthead .gh-navigation-actions,
    .is-open#gh-navigation.ww-masthead .gh-navigation-members {
        position: relative;
        z-index: 2;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search,
    .is-open#gh-navigation.ww-masthead a[data-portal="signin"],
    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        position: relative;
        z-index: 3;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(212, 154, 58, 0.12);
    }

}

/* ============================================================
   WORDS & WEIGHTS — V16 MOBILE NAV RESET
   Scope: mobile masthead/menu only.
   Purpose: remove accumulated mobile overlap, keep Source's burger
   behavior, and keep Portal above the open menu.
   ============================================================ */

@media (max-width: 767px) {

    #gh-navigation.ww-masthead {
        position: relative;
        height: 64px;
        min-height: 64px;
        overflow: visible;
        z-index: 1000;
    }

    #gh-navigation.ww-masthead .gh-navigation-inner {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-template-rows: 64px;
        gap: 0 !important;
        align-items: stretch;
        height: 64px;
        min-height: 64px;
    }

    #gh-navigation.ww-masthead .gh-navigation-brand {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 14px;
        align-items: center;
        grid-column: 1;
        grid-row: 1;
        height: 64px;
        min-width: 0;
        overflow: visible;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        display: inline-flex !important;
        align-items: center;
        min-width: 0;
        max-width: calc(100vw - 92px);
        height: auto !important;
        overflow: visible;
        padding-block: 0.04em 0.14em;
        color: var(--ww-text);
        font-size: clamp(1.86rem, 5.45vw, 2.16rem);
        line-height: 1.16;
        white-space: nowrap;
        text-overflow: ellipsis;
        top: 0 !important;
    }

    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-word,
    #gh-navigation.ww-masthead .ww-masthead-title .ww-wordmark-amp {
        display: inline-block;
        flex: 0 0 auto;
        line-height: 1.16;
    }

    #gh-navigation.ww-masthead .gh-navigation-brand > button.gh-search {
        display: none !important;
    }

    #gh-navigation.ww-masthead .gh-burger {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin: 0;
        color: var(--ww-muted);
    }

    #gh-navigation.ww-masthead .gh-burger svg {
        width: 28px;
        height: 28px;
    }

    #gh-navigation.ww-masthead:not(.is-open) .gh-navigation-menu,
    #gh-navigation.ww-masthead:not(.is-open) .gh-navigation-actions {
        position: fixed !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .is-open#gh-navigation.ww-masthead {
        position: fixed !important;
        inset: 0;
        z-index: 1000;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background: var(--ww-bg);
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-inner {
        height: auto;
        min-height: 100dvh;
        grid-template-rows: 64px minmax(0, 1fr) auto;
        align-content: stretch;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu,
    .is-open#gh-navigation.ww-masthead .gh-navigation-actions {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: clamp(34px, 9vh, 82px) 0 22px;
        text-align: center;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 1.2;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav li {
        display: block;
        opacity: 1 !important;
        transform: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        height: auto !important;
        padding: 0;
        color: var(--ww-muted);
        font-family: var(--ww-mono);
        font-size: clamp(1.26rem, 4.2vw, 1.58rem);
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        text-decoration: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
        color: var(--ww-text);
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
        display: none !important;
        content: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        width: 100%;
        margin: 0;
        padding: 22px 0 max(32px, env(safe-area-inset-bottom));
        text-align: center;
        background: transparent !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        color: var(--ww-muted);
        font-family: var(--ww-mono);
        font-size: clamp(1.12rem, 3.8vw, 1.32rem);
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search svg {
        display: none !important;
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-actions button.gh-search::after {
        content: "SEARCH";
    }

    .is-open#gh-navigation.ww-masthead .gh-navigation-members {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        width: auto;
        margin: 0;
        padding: 0;
        background: transparent !important;
    }

    .is-open#gh-navigation.ww-masthead a[data-portal="signin"],
    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto !important;
        min-height: 0;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 2;
        color: var(--ww-muted);
        font-family: var(--ww-mono);
        font-size: clamp(1.12rem, 3.8vw, 1.32rem);
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        text-decoration: none !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(212, 154, 58, 0.12);
    }

    .is-open#gh-navigation.ww-masthead a[data-portal="signup"].gh-button,
    .is-open#gh-navigation.ww-masthead a[data-portal="account"].gh-button {
        color: var(--ww-text);
    }

}

/* ============================================================
   WORDS & WEIGHTS - LATEST SIGNALS + BLOGS PATCH
   Scope:
   - Homepage post section only, not the branded hero.
   - Page-specific Blogs archive.
   - Preserves Source grid markup so existing card hover/signal JS continues to work.
   ============================================================ */

/* ------------------------------------------------------------
   HOMEPAGE: SIGNAL LEDGER FRONT, THREE POSTS
   ------------------------------------------------------------ */

body.home-template
.ww-home-latest {
    margin-top: clamp(56px, 6vw, 92px);
}

body.home-template
.ww-home-latest
.gh-container-inner {
    position: relative;
}

body.home-template
.ww-home-latest
.gh-container-title {
    margin-bottom: clamp(28px, 3vw, 42px);
}

body.home-template
.ww-home-latest
.gh-feed {
    counter-reset: ww-home-post;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(24px, 2.8vw, 38px);
    align-items: stretch;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card {
    counter-increment: ww-home-post;
    min-width: 0;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2),
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3) {
    grid-column: span 2;
}

body.home-template
.ww-home-latest
.gh-card-wrapper {
    position: relative;
}

body.home-template
.ww-home-latest
.gh-card-wrapper::before {
    content: counter(ww-home-post, decimal-leading-zero);

    display: block;

    margin-bottom: 12px;

    color: var(--ww-faint, #606a75);

    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: 0.13em;
}

body.home-template
.ww-home-latest
.gh-card.ww-card-active
.gh-card-wrapper::before {
    color: var(--ww-gold-bright, #efbd69);
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-wrapper::before {
    color: var(--ww-gold, #d49a3a);
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-image,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2)
.gh-card-image,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3)
.gh-card-image {
    aspect-ratio: 16 / 9;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-title {
    max-width: 780px;

    font-size: clamp(3.2rem, 4vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-excerpt {
    max-width: 660px;

    font-size: clamp(1.55rem, 1.28vw, 1.9rem);
    line-height: 1.55;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2)
.gh-card-title,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3)
.gh-card-title {
    font-size: clamp(2.05rem, 2.15vw, 2.8rem);
    line-height: 1.04;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(n+2)
.gh-card-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.home-template
.ww-home-latest
.ww-home-more {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(16px, 2vw, 26px);
    align-items: center;

    margin-top: clamp(34px, 4vw, 56px);
}

body.home-template
.ww-home-latest
.ww-home-more::before {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--ww-border, #282f38) 8%,
            var(--ww-border-strong, #3a444f) 62%,
            rgba(212, 154, 58, 0.42) 100%
        );
}

body.home-template
.ww-home-latest
.ww-home-more a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--ww-text, #f2f4f7);

    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;

    transition:
        color 160ms ease,
        opacity 160ms ease,
        transform 160ms ease;
}

body.home-template
.ww-home-latest
.ww-home-more a::before {
    content: "";

    display: inline-block;
    flex: 0 0 auto;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--ww-gold, #d49a3a);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 8px rgba(212, 154, 58, 0.12);
}

body.home-template
.ww-home-latest
.ww-home-more a svg {
    width: 14px;
    height: 14px;
}

body.home-template
.ww-home-latest
.ww-home-more a:hover,
body.home-template
.ww-home-latest
.ww-home-more a:focus-visible {
    color: var(--ww-gold-bright, #efbd69);
    opacity: 1;
    transform: translateX(2px);
}

/* ------------------------------------------------------------
   BLOGS: CLEAN GRID ARCHIVE
   ------------------------------------------------------------ */

.ww-blogs-page
.ww-blogs-header {
    padding-block: clamp(72px, 8vw, 118px) clamp(34px, 4vw, 54px);

    background: var(--ww-bg, #0b0d10);
    border-bottom: 1px solid var(--ww-border, #282f38);
}

.ww-blogs-page
.ww-blogs-header-inner {
    max-width: 900px;
}

.ww-blogs-page
.ww-blogs-kicker {
    margin: 0 0 20px;

    color: var(--ww-gold, #d49a3a);

    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ww-blogs-page
.ww-blogs-title {
    max-width: 760px;

    margin: 0;

    color: var(--ww-text, #f2f4f7);

    font-size: clamp(5rem, 7vw, 8.8rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.ww-blogs-page
.ww-blogs-description {
    max-width: 620px;

    margin: 22px 0 0;

    color: var(--ww-soft, #c3c9d1);

    font-size: clamp(1.65rem, 1.45vw, 2rem);
    line-height: 1.55;
}

.ww-blogs-page
.ww-blogs-archive {
    margin-top: clamp(46px, 5vw, 76px);
}

.ww-blogs-page
.ww-blogs-archive
.gh-feed {
    /* Keep direct .gh-card children so existing grid hover/signal behavior remains active. */
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */

@media (max-width: 1199px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1) {
        grid-column: span 4;
        grid-row: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: span 2;
    }

}

@media (max-width: 767px) {

    body.home-template
    .ww-home-latest {
        margin-top: 48px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(2.25rem, 8vw, 3.45rem);
        line-height: 1.02;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(n+2)
    .gh-card-excerpt {
        -webkit-line-clamp: 3;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more a {
        justify-self: start;
    }

    .ww-blogs-page
    .ww-blogs-header {
        padding-block: 58px 32px;
    }

    .ww-blogs-page
    .ww-blogs-title {
        font-size: clamp(4.4rem, 16vw, 6.2rem);
    }

}

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

    body.home-template
    .ww-home-latest
    .ww-home-more a {
        transition: none !important;
        transform: none !important;
    }

}

/* ============================================================
   WORDS & WEIGHTS — BLOGS FOOTER BREATHING ROOM
   Scope: /blogs/ page only. Separates the archive grid from the
   footer without touching homepage, nav, Portal, or card behavior.
   ============================================================ */

.ww-blogs-page {
    padding-bottom: clamp(78px, 8vw, 132px);
}

@media (max-width: 767px) {
    .ww-blogs-page {
        padding-bottom: 72px;
    }
}

/* ============================================================
   WORDS & WEIGHTS - SIGNAL CONTINUITY CLEANUP
   Scope:
   - Compact post-end continuation rail
   - Single-action Blogs archive search
   - Metadata docking for homepage and Blogs cards
   - Editorial plate image ratios
   No nav, Portal, hero, footer, or JS changes.
   ============================================================ */

/* ------------------------------------------------------------
   01. SIGNAL READOUT METADATA
   ------------------------------------------------------------ */

.post-template
.gh-article-meta.ww-article-meta-system
.gh-article-meta-content,
.post-template
.gh-article-meta-content.ww-signal-readout {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.post-template
.gh-article-meta-content.ww-signal-readout
.gh-article-meta-length {
    color: var(--ww-muted, #8d96a1);
}

.ww-card-meta-readout {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    color: var(--ww-muted, #8d96a1);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

.ww-card-meta-readout .gh-card-date,
.ww-card-meta-readout .ww-card-meta-length {
    color: inherit;
}

.ww-card-meta-separator {
    color: var(--ww-gold, #d49a3a);
    opacity: 0.68;
    font-size: 8px;
    line-height: 1;
}

.gh-card.ww-card-active
.ww-card-meta-readout {
    color: #9ca5af;
}

/* Metadata docking: applies to homepage Latest Signals and /blogs/ grid. */

body.home-template
.ww-home-latest
.gh-feed,
.ww-blogs-page
.gh-container.is-grid
.gh-feed {
    align-items: stretch;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card,
.ww-blogs-page
.gh-container.is-grid
.gh-feed > .gh-card {
    height: 100%;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card
> .gh-card-link,
.ww-blogs-page
.gh-container.is-grid
.gh-feed > .gh-card
> .gh-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.home-template
.ww-home-latest
.gh-card-wrapper,
.ww-blogs-page
.gh-container.is-grid
.gh-card-wrapper {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

body.home-template
.ww-home-latest
.ww-card-meta-readout,
.ww-blogs-page
.gh-container.is-grid
.ww-card-meta-readout {
    margin-top: auto;
    padding-top: clamp(18px, 2vw, 28px);
}

.ww-blogs-page
.gh-container.is-grid
.gh-card-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* ------------------------------------------------------------
   02. POST-END SIGNAL RELAY
   ------------------------------------------------------------ */

.ww-signal-relay {
    margin-top: clamp(56px, 7vw, 92px);
    padding-top: clamp(30px, 4vw, 46px);
    padding-bottom: clamp(20px, 3.2vw, 34px);

    border-top: 1px solid rgba(58, 68, 79, 0.72);
}

.ww-signal-relay-inner {
    max-width: 760px;
    margin: 0 auto;
}

.ww-signal-relay-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: clamp(20px, 2.8vw, 30px);
}

.ww-signal-relay-node {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--ww-gold, #d49a3a);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 8px rgba(212, 154, 58, 0.12);
}

.ww-signal-relay-kicker {
    margin: 0;

    color: var(--ww-muted, #8d96a1);
    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ww-signal-relay-list {
    border-top: 1px solid rgba(58, 68, 79, 0.72);
    border-bottom: 1px solid rgba(58, 68, 79, 0.72);
}

.ww-signal-relay-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
        "label title"
        "label meta";
    column-gap: clamp(16px, 2.2vw, 26px);
    row-gap: 8px;
    align-items: baseline;

    padding: clamp(17px, 2.3vw, 23px) 0;

    color: inherit;
    text-decoration: none !important;

    transition:
        opacity 160ms ease,
        color 160ms ease;
}

.ww-signal-relay-item + .ww-signal-relay-item {
    border-top: 1px solid rgba(58, 68, 79, 0.48);
}

.ww-signal-relay-label {
    grid-area: label;

    color: var(--ww-faint, #606a75);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ww-signal-relay-title {
    grid-area: title;

    color: var(--ww-text, #f2f4f7);
    font-size: clamp(2.05rem, 2.05vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;

    transition:
        color 160ms ease,
        text-shadow 160ms ease;
}

.ww-signal-relay-meta {
    grid-area: meta;

    color: var(--ww-muted, #8d96a1);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ww-signal-relay-item:hover,
.ww-signal-relay-item:focus-visible {
    opacity: 1;
}

.ww-signal-relay-item:hover .ww-signal-relay-title,
.ww-signal-relay-item:focus-visible .ww-signal-relay-title {
    color: var(--ww-gold-bright, #efbd69);

    text-shadow:
        0 0 9px rgba(212, 154, 58, 0.10),
        0 0 18px rgba(212, 154, 58, 0.04);
}

.ww-signal-relay-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: clamp(18px, 2.6vw, 28px);

    color: var(--ww-text, #f2f4f7);
    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.ww-signal-relay-more::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--ww-gold, #d49a3a);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 8px rgba(212, 154, 58, 0.12);
}

.ww-signal-relay-more svg {
    width: 14px;
    height: 14px;
}

.ww-signal-relay-more:hover,
.ww-signal-relay-more:focus-visible {
    color: var(--ww-gold-bright, #efbd69);
    transform: translateX(2px);
}

/* ------------------------------------------------------------
   03. BLOGS ARCHIVE SEARCH - SINGLE ACTION
   ------------------------------------------------------------ */

.ww-blogs-control {
    display: flex;
    align-items: center;

    margin-top: clamp(28px, 3vw, 42px);
    padding-top: 22px;

    border-top: 1px solid var(--ww-border, #282f38);
}

.ww-blogs-search {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin: 0;
    padding: 0;

    color: var(--ww-text, #f2f4f7);
    font-family: var(--ww-mono);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.ww-blogs-search-node {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ww-gold, #d49a3a);
    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 8px rgba(212, 154, 58, 0.12);
}

.ww-blogs-search svg {
    width: 14px;
    height: 14px;
}

.ww-blogs-search:hover,
.ww-blogs-search:focus-visible {
    color: var(--ww-gold-bright, #efbd69);
    transform: translateX(2px);
}

/* ------------------------------------------------------------
   04. EDITORIAL PLATE IMAGE SYSTEM
   ------------------------------------------------------------ */

.gh-card-image,
.post-template .gh-article-image {
    overflow: hidden;
    background: var(--ww-surface, #11151a);
}

.gh-card-image img,
.post-template .gh-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-image {
    aspect-ratio: 16 / 10;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2)
.gh-card-image,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3)
.gh-card-image {
    aspect-ratio: 4 / 3;
}

.ww-blogs-page
.gh-container.is-grid
.gh-card-image {
    aspect-ratio: 3 / 2;
}

.post-template
.gh-article-image {
    aspect-ratio: 16 / 10;
    border-radius: 7px;
}

.post-template
.gh-article-image img {
    border-radius: inherit;
}

@media (max-width: 767px) {
    .ww-signal-relay {
        margin-top: 58px;
        padding-top: 32px;
    }

    .ww-signal-relay-inner {
        max-width: none;
    }

    .ww-signal-relay-item {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "label"
            "title"
            "meta";
        gap: 8px;
        padding: 18px 0;
    }

    .ww-signal-relay-title {
        font-size: clamp(2.15rem, 7vw, 3.05rem);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image,
    .ww-blogs-page
    .gh-container.is-grid
    .gh-card-image,
    .post-template
    .gh-article-image {
        aspect-ratio: 16 / 10;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ww-signal-relay-item,
    .ww-signal-relay-title,
    .ww-signal-relay-more,
    .ww-blogs-search {
        transition: none !important;
        transform: none !important;
    }
}

/* ============================================================
   WORDS & WEIGHTS - CONTINUITY ENDNOTE
   Scope: post-end article navigation only. Replaces the large
   Signal Relay component with a compact editorial endnote.
   ============================================================ */

.ww-continuity-endnote {
    margin-top: clamp(34px, 4.4vw, 58px);
    padding-bottom: clamp(28px, 4vw, 46px);
}

.ww-continuity-endnote-inner {
    max-width: 640px;
    margin-inline: auto;

    padding-top: clamp(18px, 2.4vw, 28px);

    border-top: 1px solid rgba(58, 68, 79, 0.62);
}

.ww-continuity-endnote-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;
}

.ww-continuity-node {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--ww-gold, #d49a3a);

    box-shadow:
        0 0 0 3px rgba(212, 154, 58, 0.055),
        0 0 8px rgba(212, 154, 58, 0.12);
}

.ww-continuity-kicker {
    margin: 0;

    color: var(--ww-muted, #8d96a1);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ww-continuity-links {
    display: grid;
    gap: 7px;

    margin: 0;
}

.ww-continuity-link {
    display: flex;
    align-items: baseline;
    gap: 7px;

    color: var(--ww-soft, #c3c9d1);
    text-decoration: none !important;

    transition:
        color 160ms ease,
        opacity 160ms ease;
}

.ww-continuity-label {
    flex: 0 0 auto;

    color: var(--ww-faint, #606a75);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ww-continuity-title {
    min-width: 0;

    color: inherit;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: clamp(1.42rem, 1.05vw, 1.62rem);
    font-weight: 520;
    line-height: 1.35;
    letter-spacing: -0.018em;
}

.ww-continuity-link:hover,
.ww-continuity-link:focus-visible {
    color: var(--ww-gold-bright, #efbd69);
    opacity: 1;
}

.ww-continuity-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 14px;

    color: var(--ww-muted, #8d96a1);
    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.ww-continuity-more svg {
    width: 13px;
    height: 13px;
}

.ww-continuity-more:hover,
.ww-continuity-more:focus-visible {
    color: var(--ww-gold-bright, #efbd69);
    transform: translateX(2px);
}

@media (max-width: 767px) {
    .ww-continuity-endnote {
        margin-top: 34px;
        padding-bottom: 38px;
    }

    .ww-continuity-endnote-inner {
        max-width: none;
        padding-top: 20px;
    }

    .ww-continuity-links {
        gap: 11px;
    }

    .ww-continuity-link {
        display: block;
    }

    .ww-continuity-label {
        display: block;
        margin-bottom: 3px;
    }

    .ww-continuity-title {
        font-size: 1.62rem;
        line-height: 1.36;
    }

    .ww-continuity-more {
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ww-continuity-link,
    .ww-continuity-more {
        transition: none !important;
        transform: none !important;
    }
}

/* ============================================================
   WORDS & WEIGHTS - LATEST SIGNAL BRIEF
   Scope: homepage latest section only.
   Purpose:
   - Make the latest article readable before its image.
   - Prevent the first post image from becoming a second hero.
   - Tighten the hero-to-latest transition without changing hero content.
   - Preserve existing card markup, hover signal JS, nav, Portal, and footer.
   ============================================================ */

/* Subtle vertical rhythm tightening: brand hero stays intact, just less deep. */

body.home-template
.gh-header.is-classic {
    padding-block:
        clamp(96px, 8vw, 128px)
        clamp(72px, 6.5vw, 104px);
}

body.home-template
.ww-home-latest {
    margin-top: clamp(34px, 4vw, 58px);
}

body.home-template
.ww-home-latest
.gh-container-title {
    margin-bottom: clamp(22px, 2.4vw, 34px);
}

/* ------------------------------------------------------------
   Lead story becomes a brief: text first, image second.
   ------------------------------------------------------------ */

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
> .gh-card-link {
    display: flex;
    flex-direction: column;
    height: auto;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-wrapper {
    order: 1;

    display: block;
    flex: 0 0 auto;

    max-width: 760px;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-image {
    order: 2;

    width: 100%;
    height: clamp(205px, 22vw, 300px);

    margin-top: clamp(22px, 2.8vw, 36px);

    aspect-ratio: auto;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-image img {
    object-fit: cover;
    object-position: center;
}

/* Lead article title should be visible and readable before the image. */

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-title {
    max-width: 720px;

    font-size: clamp(2.65rem, 3.15vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.052em;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-excerpt {
    max-width: 670px;

    margin-top: 12px;

    font-size: clamp(1.42rem, 1.12vw, 1.68rem);
    line-height: 1.55;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
:is(.gh-card-meta, .ww-card-meta-readout) {
    margin-top: 16px;
    padding-top: 0;
}

/* Quiet affordance: the whole lead card is clickable, but make that obvious. */

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-wrapper::after {
    content: "READ LATEST \2192";

    display: inline-flex;
    align-items: center;

    margin-top: 17px;

    color: var(--ww-muted, #8d96a1);

    font-family: var(--ww-mono);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1).ww-card-active
.gh-card-wrapper::after,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1):hover
.gh-card-wrapper::after,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1):focus-within
.gh-card-wrapper::after {
    color: var(--ww-gold-bright, #efbd69);
    transform: translateX(2px);
}

/* Supporting posts remain image-led, but stay compact. */

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2)
.gh-card-image,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3)
.gh-card-image {
    height: clamp(136px, 13.5vw, 185px);
    aspect-ratio: auto;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(2)
.gh-card-title,
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(3)
.gh-card-title {
    font-size: clamp(1.82rem, 1.8vw, 2.35rem);
    line-height: 1.05;
}

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(n+2)
.gh-card-excerpt {
    margin-top: 9px;

    -webkit-line-clamp: 2;
}

/* Keep metadata docking for supporting cards, but not for the lead brief. */

body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(n+2)
:is(.gh-card-meta, .ww-card-meta-readout) {
    margin-top: auto;
    padding-top: clamp(14px, 1.8vw, 22px);
}

/* Compact the latest module as a whole so it no longer outweighs the hero. */

body.home-template
.ww-home-latest
.gh-feed {
    gap: clamp(22px, 2.4vw, 34px);
}

body.home-template
.ww-home-latest
.ww-home-more {
    margin-top: clamp(26px, 3vw, 42px);
}

/* ------------------------------------------------------------
   Responsive behavior
   ------------------------------------------------------------ */

@media (max-width: 1199px) {

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(190px, 26vw, 280px);
    }

}

@media (max-width: 767px) {

    body.home-template
    .gh-header.is-classic {
        padding-block: 78px 60px;
    }

    body.home-template
    .ww-home-latest {
        margin-top: 34px;
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: 22px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed {
        gap: 30px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        font-size: clamp(2.35rem, 8.2vw, 3.3rem);
        line-height: 1.03;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt {
        font-size: 1.45rem;
        line-height: 1.55;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(175px, 52vw, 245px);
        margin-top: 21px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        height: clamp(165px, 48vw, 230px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(2.05rem, 7.2vw, 3rem);
        line-height: 1.04;
    }

}

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

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::after {
        transition: none !important;
        transform: none !important;
    }

}


/* ============================================================
   WORDS & WEIGHTS - SIGNAL ISSUE PLATE
   Scope: homepage Latest Signals section only.
   Purpose:
   - Restore a magazine-like issue spread.
   - Keep the latest article legible before deep scrolling.
   - Bound the whole latest section so it stays smaller than the hero.
   - Normalize image/title/excerpt/metadata grammar across the 3 posts.
   No template, nav, Portal, JS, article, Blogs, or footer changes.
   ============================================================ */

@media (min-width: 1024px) {

    body.home-template
    .ww-home-latest {
        margin-top: clamp(38px, 4.2vw, 64px);
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: clamp(24px, 2.5vw, 36px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: minmax(0, 8fr) minmax(292px, 4fr);
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(22px, 2.2vw, 34px) clamp(26px, 2.7vw, 42px);
        align-items: stretch;

        min-height: 390px;
        height: clamp(400px, 36vw, 510px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link {
        display: grid;
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
        gap: clamp(24px, 2.7vw, 42px);
        align-items: stretch;
        height: 100%;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    > .gh-card-link {
        display: grid;
        grid-template-columns: minmax(102px, 38%) minmax(0, 1fr);
        gap: clamp(14px, 1.5vw, 20px);
        align-items: start;
        height: 100%;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        order: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        margin: 0;
        aspect-ratio: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        width: 100%;
        height: clamp(118px, 11vw, 162px);
        min-height: 0;
        max-height: none;
        margin: 0;
        aspect-ratio: 3 / 2;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image img {
        object-position: center 58%;
    }

    body.home-template
    .ww-home-latest
    .gh-card-wrapper {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        min-width: 0;
        min-height: 0;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper {
        order: 0;
        justify-content: center;
        max-width: none;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-wrapper {
        justify-content: flex-start;
    }

    body.home-template
    .ww-home-latest
    .gh-card-wrapper::before {
        margin-bottom: 11px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::before {
        content: "01 / LATEST";
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::after {
        content: none !important;
        display: none !important;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: 620px;
        font-size: clamp(2.7rem, 3.05vw, 4.35rem);
        line-height: 0.99;
        letter-spacing: -0.052em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(1.72rem, 1.55vw, 2.2rem);
        line-height: 1.06;
        letter-spacing: -0.038em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt {
        max-width: 600px;
        margin-top: 13px;
        font-size: clamp(1.42rem, 1.12vw, 1.68rem);
        line-height: 1.55;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-excerpt {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 9px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 1.28rem;
        line-height: 1.5;
    }

    body.home-template
    .ww-home-latest
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 13px;
        padding-top: 0;
    }

    body.home-template
    .ww-home-latest
    .ww-card-meta-readout {
        font-size: 8.5px;
        letter-spacing: 0.08em;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        margin-top: clamp(26px, 3vw, 40px);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link {
        display: grid;
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
        gap: 28px;
        align-items: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::after {
        content: none !important;
        display: none !important;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        order: 0;
        height: clamp(240px, 32vw, 330px);
        margin: 0;
        aspect-ratio: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper {
        order: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        font-size: clamp(2.65rem, 4.4vw, 4rem);
    }
}

@media (max-width: 767px) {

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::after {
        content: none !important;
        display: none !important;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link {
        display: flex;
        flex-direction: column;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        order: 2;
        height: clamp(176px, 50vw, 246px);
        margin-top: 20px;
    }

    body.home-template
    .ww-home-latest
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 12px;
        padding-top: 0;
    }
}

/* ============================================================
   WORDS & WEIGHTS - SIGNAL ISSUE PLATE PROPORTION PASS
   Scope: homepage Latest Signals only.
   Purpose:
   - Keep the magazine spread direction.
   - Reduce the section so it no longer competes with the hero.
   - Make the lead image an editorial plate, not a tall poster.
   - Reduce lead title scale and give the right rail more breathing room.
   No template, nav, Portal, JS, article, Blogs, or footer changes.
   ============================================================ */

@media (min-width: 1024px) {

    body.home-template
    .ww-home-latest {
        margin-top: clamp(32px, 3.6vw, 54px);
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: clamp(20px, 2.1vw, 30px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed {
        grid-template-columns: minmax(0, 7.4fr) minmax(292px, 4.1fr);
        gap: clamp(18px, 1.8vw, 28px) clamp(28px, 2.4vw, 38px);

        min-height: 0;
        height: clamp(340px, 30vw, 430px);
        max-height: 430px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link {
        grid-template-columns: minmax(238px, 0.78fr) minmax(0, 1fr);
        gap: clamp(24px, 2.2vw, 36px);
        align-items: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        align-self: center;
        width: 100%;
        height: clamp(252px, 23vw, 340px);
        max-height: 340px;
        aspect-ratio: 4 / 3;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: 540px;
        font-size: clamp(2.42rem, 2.55vw, 3.62rem);
        line-height: 1.02;
        letter-spacing: -0.048em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt {
        max-width: 540px;
        margin-top: 12px;
        font-size: clamp(1.32rem, 1vw, 1.52rem);
        line-height: 1.5;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper {
        justify-content: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    > .gh-card-link {
        grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
        gap: clamp(16px, 1.55vw, 22px);
        align-items: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        align-self: center;
        height: clamp(104px, 8.2vw, 132px);
        max-height: 132px;
        aspect-ratio: 3 / 2;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-wrapper {
        justify-content: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(1.58rem, 1.35vw, 1.96rem);
        line-height: 1.08;
        letter-spacing: -0.034em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-excerpt {
        margin-top: 8px;
        font-size: 1.18rem;
        line-height: 1.46;
        -webkit-line-clamp: 2;
    }

    body.home-template
    .ww-home-latest
    .gh-card-wrapper::before {
        margin-bottom: 9px;
    }

    body.home-template
    .ww-home-latest
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 12px;
        padding-top: 0;
    }

    body.home-template
    .ww-home-latest
    .ww-card-meta-readout {
        font-size: 8.25px;
        letter-spacing: 0.078em;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        margin-top: clamp(22px, 2.4vw, 34px);
    }
}

@media (min-width: 1280px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        height: clamp(350px, 28vw, 420px);
        max-height: 420px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(260px, 22vw, 330px);
        max-height: 330px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(220px, 28vw, 286px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        font-size: clamp(2.35rem, 3.8vw, 3.4rem);
        line-height: 1.03;
    }
}

@media (max-width: 767px) {

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        font-size: clamp(2.2rem, 8.4vw, 3.05rem);
        line-height: 1.03;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(168px, 47vw, 226px);
        margin-top: 18px;
    }
}

/* ============================================================
   WORDS & WEIGHTS - RESPONSIVE ISSUE SYSTEM
   Scope: homepage Latest Signals only.
   Purpose:
   - Large desktop keeps the Signal Issue Plate.
   - Medium widths switch to stable magazine stack states.
   - Mobile uses one consistent text-first card grammar.
   - Prevent squeezed side rails, vertical title wrapping, and inconsistent metadata/image order.
   No template, nav, Portal, JS, article, Blogs, or footer changes.
   ============================================================ */

/* Remove the earlier lead-only affordance everywhere in this module. */
body.home-template
.ww-home-latest
.gh-feed > .gh-card:nth-child(1)
.gh-card-wrapper::after {
    content: none !important;
    display: none !important;
}

/* ------------------------------------------------------------
   1024-1279: Issue Stack
   Lead story remains a spread. Supporting posts become two stable
   magazine briefs below instead of a squeezed right rail.
   ------------------------------------------------------------ */

@media (min-width: 1024px) and (max-width: 1279px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 34px);
        align-items: stretch;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link {
        display: grid;
        grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
        gap: clamp(26px, 3vw, 40px);
        align-items: center;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        order: 0;
        width: 100%;
        height: clamp(255px, 29vw, 350px);
        max-height: 350px;
        margin: 0;
        aspect-ratio: 16 / 10;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper {
        order: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: none;
        min-width: 0;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::before {
        content: "01 / LATEST";
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: 600px;
        font-size: clamp(2.7rem, 3.45vw, 4.05rem);
        line-height: 1.02;
        letter-spacing: -0.048em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt {
        max-width: 620px;
        margin-top: 12px;
        font-size: clamp(1.36rem, 1.35vw, 1.6rem);
        line-height: 1.52;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    > .gh-card-link {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        order: 0;
        width: 100%;
        height: clamp(150px, 17vw, 210px);
        max-height: 210px;
        margin: 0 0 18px;
        aspect-ratio: 16 / 9;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-wrapper {
        order: 1;
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(1.95rem, 2.15vw, 2.55rem);
        line-height: 1.07;
        letter-spacing: -0.036em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-excerpt {
        margin-top: 9px;
        font-size: 1.28rem;
        line-height: 1.5;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    body.home-template
    .ww-home-latest
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 12px;
        padding-top: 0;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        margin-top: clamp(24px, 3vw, 38px);
    }
}

/* ------------------------------------------------------------
   768-1023: Tablet / narrow browser issue rows.
   Every story becomes a readable row; no right rail, no squeezed text.
   ------------------------------------------------------------ */

@media (min-width: 768px) and (max-width: 1023px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: clamp(24px, 3.8vw, 34px);
        align-items: stretch;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    > .gh-card-link {
        display: grid;
        grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
        gap: clamp(22px, 3vw, 30px);
        align-items: center;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        order: 0;
        width: 100%;
        height: clamp(190px, 27vw, 270px);
        max-height: 270px;
        margin: 0;
        aspect-ratio: 16 / 10;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-wrapper {
        order: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: none;
        min-width: 0;
        min-height: 0;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::before {
        content: "01 / LATEST";
    }

    body.home-template
    .ww-home-latest
    .gh-card-wrapper::before {
        margin-bottom: 9px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: 620px;
        font-size: clamp(2.55rem, 4.2vw, 3.75rem);
        line-height: 1.03;
        letter-spacing: -0.046em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(2.1rem, 3.35vw, 3.05rem);
        line-height: 1.05;
        letter-spacing: -0.038em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-excerpt {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 9px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        font-size: clamp(1.3rem, 1.8vw, 1.5rem);
        line-height: 1.5;
    }

    body.home-template
    .ww-home-latest
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 11px;
        padding-top: 0;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        margin-top: clamp(24px, 3.4vw, 36px);
    }
}

/* ------------------------------------------------------------
   <=767: Mobile Signal Cards.
   Consistent grammar for all three posts:
   number -> title -> excerpt -> metadata -> image.
   ------------------------------------------------------------ */

@media (max-width: 767px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    > .gh-card-link,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    > .gh-card-link {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-wrapper,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-wrapper {
        order: 1;
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        max-width: none;
        min-width: 0;
        min-height: 0;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-wrapper::before {
        content: "01";
    }

    body.home-template
    .ww-home-latest
    .gh-card-wrapper::before {
        margin-bottom: 10px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        order: 2;
        width: 100%;
        height: auto;
        max-height: none;
        margin: 17px 0 0;
        aspect-ratio: 16 / 10;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: none;
        font-size: clamp(2.35rem, 7.3vw, 3.05rem);
        line-height: 1.04;
        letter-spacing: -0.044em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        max-width: none;
        font-size: clamp(2.12rem, 6.6vw, 2.72rem);
        line-height: 1.05;
        letter-spacing: -0.038em;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-excerpt {
        display: -webkit-box;
        overflow: hidden;
        max-width: none;
        margin-top: 10px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        font-size: 1.45rem;
        line-height: 1.52;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card
    :is(.gh-card-meta, .ww-card-meta-readout),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    :is(.gh-card-meta, .ww-card-meta-readout),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    :is(.gh-card-meta, .ww-card-meta-readout),
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    :is(.gh-card-meta, .ww-card-meta-readout) {
        margin-top: 11px !important;
        padding-top: 0 !important;
    }

    body.home-template
    .ww-home-latest
    .ww-card-meta-readout {
        font-size: 8.5px;
        letter-spacing: 0.078em;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more a {
        justify-self: start;
    }
}

/* ============================================================
   WORDS & WEIGHTS - HOMEPAGE RHYTHM TUNE
   Scope: homepage hero rhythm + Latest Signals scale only.
   Purpose:
   - Keep the Signal Issue Plate layout.
   - Bring the latest story into view sooner.
   - Reduce the hero's vertical depth without changing its content.
   - Give the issue plate slightly more presence without becoming a second hero.
   No template, nav, Portal, JS, Blogs, article, or footer changes.
   ============================================================ */

@media (min-width: 768px) {

    body.home-template
    .gh-header.is-classic {
        padding-block:
            clamp(82px, 6.8vw, 112px)
            clamp(54px, 5vw, 78px);
    }

    body.home-template
    .ww-hero-meta {
        margin-bottom: clamp(24px, 2.3vw, 30px);
    }

    body.home-template
    .ww-hero-topics {
        margin-top: clamp(22px, 2.25vw, 28px);
    }

    body.home-template
    .gh-header.is-classic
    .gh-form {
        height: 54px;
        margin-top: clamp(28px, 2.7vw, 34px);
    }

    body.home-template
    .ww-hero-signal {
        margin-top: clamp(28px, 2.8vw, 34px);
    }

    body.home-template
    .ww-home-latest {
        margin-top: clamp(22px, 2.6vw, 38px);
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: clamp(18px, 1.8vw, 26px);
    }
}

@media (min-width: 1280px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        height: clamp(382px, 30vw, 462px);
        max-height: 462px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(284px, 23.5vw, 360px);
        max-height: 360px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        max-width: 580px;
        font-size: clamp(2.58rem, 2.8vw, 3.95rem);
        line-height: 1.01;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-excerpt {
        max-width: 570px;
        font-size: clamp(1.38rem, 1.08vw, 1.62rem);
        line-height: 1.5;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-image,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-image {
        height: clamp(118px, 9.2vw, 148px);
        max-height: 148px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-title,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-title {
        font-size: clamp(1.68rem, 1.45vw, 2.12rem);
        line-height: 1.07;
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(2)
    .gh-card-excerpt,
    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(3)
    .gh-card-excerpt {
        font-size: 1.22rem;
        line-height: 1.46;
    }

    body.home-template
    .ww-home-latest
    .ww-home-more {
        margin-top: clamp(20px, 2.1vw, 30px);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {

    body.home-template
    .ww-home-latest
    .gh-feed {
        gap: clamp(22px, 2.6vw, 32px) clamp(22px, 2.8vw, 32px);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-title {
        font-size: clamp(2.85rem, 3.65vw, 4.25rem);
    }

    body.home-template
    .ww-home-latest
    .gh-feed > .gh-card:nth-child(1)
    .gh-card-image {
        height: clamp(270px, 30vw, 365px);
        max-height: 365px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    body.home-template
    .ww-home-latest {
        margin-top: 30px;
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: 22px;
    }

    body.home-template
    .ww-home-latest
    .gh-feed {
        gap: 28px;
    }
}

@media (max-width: 767px) {

    body.home-template
    .gh-header.is-classic {
        padding-block: 70px 52px;
    }

    body.home-template
    .ww-home-latest {
        margin-top: 30px;
    }

    body.home-template
    .ww-home-latest
    .gh-container-title {
        margin-bottom: 20px;
    }
}

/* ============================================================
   WORDS & WEIGHTS - PUBLIC-ONLY MEMBERSHIP MUTE
   Scope: visible member/comment entry points only.
   Purpose:
   - Keep the publication public-only for now.
   - Hide sign in, sign up, account, footer signup, CTA signup, and comments.
   - Preserve Search, nav, Blogs, hero, post continuity, Portal scripts, and Ghost core output.
   ============================================================ */

#gh-navigation.ww-masthead .gh-navigation-members,
#gh-navigation.ww-masthead a[data-portal="signin"],
#gh-navigation.ww-masthead a[data-portal="signup"],
#gh-navigation.ww-masthead a[data-portal="account"],
.gh-viewport a[href^="#/portal/signin"],
.gh-viewport a[href^="#/portal/signup"],
.gh-viewport a[href^="#/portal/account"],
.gh-viewport button[data-portal="signin"],
.gh-viewport button[data-portal="signup"],
.gh-viewport button[data-portal="account"],
.gh-footer-signup,
.gh-cta,
.gh-comments {
    display: none !important;
}

/* ============================================================
   WORDS & WEIGHTS - MASTHEAD SCALE TUNE
   Scope: desktop masthead typography only.
   Purpose:
   - Give the now-public-only navigation slightly more presence.
   - Keep the sparse editorial masthead and right-side Search.
   - Do not add CTAs, membership links, layout modules, or Portal behavior.
   ============================================================ */

@media (min-width: 768px) {

    #gh-navigation.ww-masthead .ww-masthead-title {
        font-size: 1.36rem;
        letter-spacing: -0.04em;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav {
        gap: 26px;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu a,
    #gh-navigation.ww-masthead button.gh-search {
        font-size: 11px;
        font-weight: 550;
        letter-spacing: 0.115em;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
        gap: 10px;
    }
}

/* ============================================================
   WORDS & WEIGHTS - EDITORIAL MASTHEAD OPTION A
   Scope: desktop masthead typography and rhythm only.
   Purpose:
   - Make the public-only masthead feel intentional rather than underscaled.
   - Strengthen the wordmark and nav/search labels.
   - Preserve the sparse editorial line: logo, nav, Search.
   - No new links, CTAs, membership UI, comments, hero, Latest Signals, Blogs, or JS changes.
   ============================================================ */

@media (min-width: 768px) {

    #gh-navigation.ww-masthead {
        height: 68px;
    }

    #gh-navigation.ww-masthead .gh-navigation-inner {
        min-height: 68px;
        column-gap: 28px;
    }

    #gh-navigation.ww-masthead .ww-masthead-title {
        font-size: 1.55rem;
        font-weight: 720;
        letter-spacing: -0.043em;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav {
        gap: 30px;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu a,
    #gh-navigation.ww-masthead button.gh-search {
        height: 28px;
        font-size: 12px;
        font-weight: 560;
        letter-spacing: 0.095em;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a {
        gap: 11px;
    }

    #gh-navigation.ww-masthead .gh-navigation-menu .nav-current a::before {
        width: 5px;
        height: 5px;
    }
}
