/* =========================================================================
   article.css — the reading layer.

   Two things live here:
     1. Long-form typography (.a-body) — the measure, rhythm and scale.
     2. A CLOSED set of nine prose blocks. See /style-guide/ for all of them
        with copy-pasteable markup.

   Adding a tenth block is a deliberate decision, not a convenience. Open-ended
   component sets are what make content sites drift visually over a year.

   Everything derives from the tokens in styles.css. No hard-coded brand colours.
   ========================================================================= */

:root {
    --a-measure: 68ch;
    --a-body-size: 19px;
    --a-body-leading: 1.65;
    --a-rule: var(--gray-200);
    --a-muted: var(--gray-500);
}

/* ---------- shell ---------- */

.a-page {
    padding: 132px 24px 0;      /* clears the fixed navbar */
}

.a-wrap {
    max-width: var(--a-measure);
    margin: 0 auto;
}

/* Index pages are grids, not prose — the reading measure would squeeze the blog
   grid down to two columns. Applied by content-loader.js on listing pages only. */
.a-wrap--index {
    max-width: 1120px;
}

/* Blocks that break the measure sit in .a-wide and use negative margins so the
   text column stays honest while figures and pull-quotes can breathe. */
.a-wide {
    max-width: calc(var(--a-measure) + 160px);
    margin-left: -80px;
    margin-right: -80px;
}

@media (max-width: 900px) {
    .a-wide { max-width: 100%; margin-left: 0; margin-right: 0; }
    .a-page { padding-top: 104px; }
}

/* ---------- title block ---------- */

.a-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin: 20px 0 16px;
}

.a-standfirst {
    font-size: 22px;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0 0 28px;
}

/* ---------- body typography ---------- */

.a-body {
    font-family: var(--font-primary);
    font-size: var(--a-body-size);
    line-height: var(--a-body-leading);
    color: var(--gray-800);
}

.a-body > p { margin: 0 0 1.35em; }

.a-body h2 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin: 2.2em 0 0.6em;
}

.a-body h3 {
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.3;
    color: var(--gray-900);
    margin: 1.8em 0 0.5em;
}

/* Underlined, not colour-only: colour alone fails for colour-blind readers and
   makes links hard to spot when scanning. */
.a-body a {
    color: var(--primary-700);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}
.a-body a:hover { color: var(--accent-500); }

.a-body strong { font-weight: 650; color: var(--gray-900); }
.a-body em { font-style: italic; }

.a-body ul, .a-body ol { margin: 0 0 1.35em; padding-left: 1.4em; }
.a-body li { margin-bottom: 0.5em; }

.a-body hr {
    border: 0;
    border-top: 1px solid var(--a-rule);
    margin: 2.6em 0;
}

.a-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.88em;
    background: var(--gray-100);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

/* =========================================================================
   THE NINE BLOCKS
   ========================================================================= */

/* 1. TL;DR — the summary at the top. Also the block answer engines lift, so
      it earns its place on every long page. */
.a-tldr {
    border-left: 3px solid var(--color-teal);
    background: linear-gradient(90deg, rgba(84, 239, 213, 0.10), transparent 70%);
    padding: 18px 22px;
    margin: 0 0 36px;
    border-radius: 0 8px 8px 0;
}
.a-tldr-label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-700);
    margin-bottom: 6px;
}
.a-tldr p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--gray-700); }

/* 2. Pull-quote — the newspaper device. Restates a line ALREADY in the body,
      no attribution, breaks the column. One per ~800 words, maximum. */
.a-pullquote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.28;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
    margin: 2.4em auto;
    padding: 0.9em 0;
    border-top: 2px solid var(--color-teal);
    border-bottom: 2px solid var(--color-teal);
}

/* 3. Attributed quote — a REAL quote from a REAL person. Deliberately unlike
      the pull-quote: conflating the two is the commonest mistake on sites
      like this, and it quietly erodes trust in the attributed ones. */
.a-quote {
    margin: 2.2em 0;
    padding: 24px 28px;
    background: var(--gray-50);
    border-radius: 12px;
}
.a-quote blockquote {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--gray-800);
}
.a-quote figcaption {
    font-size: 15px;
    color: var(--a-muted);
}
.a-quote figcaption strong { color: var(--gray-800); font-weight: 600; }

/* 4. Callout — boxed aside. Three variants only. */
.a-callout {
    margin: 2em 0;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 17px;
    line-height: 1.6;
}
.a-callout > :first-child { margin-top: 0; }
.a-callout > :last-child { margin-bottom: 0; }
.a-callout-label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.a-callout--key {
    border-color: var(--accent-100);
    background: rgba(56, 31, 204, 0.04);
}
.a-callout--key .a-callout-label { color: var(--accent-500); }
.a-callout--note {
    border-color: var(--primary-50);
    background: rgba(0, 111, 205, 0.05);
}
.a-callout--note .a-callout-label { color: var(--primary-600); }
.a-callout--caution {
    border-color: var(--gray-300);
    background: var(--gray-100);
}
.a-callout--caution .a-callout-label { color: var(--gray-600); }

/* 5. Stat — one big number, doing one job. */
.a-stat {
    margin: 2.2em 0;
    text-align: center;
}
.a-stat-figure {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(46px, 7vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-deep), var(--color-blue) 55%, var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.a-stat-label {
    display: block;
    font-size: 17px;
    color: var(--gray-700);
    margin-top: 10px;
}
.a-stat-source {
    display: block;
    font-size: 14px;
    color: var(--a-muted);
    margin-top: 6px;
}

/* 6. Figure — diagram or image plus caption. */
.a-figure { margin: 2.4em 0; }
.a-figure img,
.a-figure svg { display: block; width: 100%; height: auto; border-radius: 12px; }
.a-figure figcaption {
    font-size: 15px;
    line-height: 1.5;
    color: var(--a-muted);
    margin-top: 12px;
    padding-left: 14px;
    border-left: 2px solid var(--gray-200);
}

/* Lead image: the figure that opens a ported newsroom item or guide. Breaks the
   text measure slightly and carries no caption — it sets the scene rather than
   making a point, so a caption would be filler. */
.a-figure--lead {
    margin: 4px 0 40px;
    max-width: calc(var(--a-measure) + 120px);
    margin-left: -60px;
    margin-right: -60px;
}
.a-figure--lead img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
}
@media (max-width: 900px) {
    .a-figure--lead { margin-left: 0; margin-right: 0; max-width: 100%; }
}

/* 7. Steps — numbered process. */
.a-steps {
    list-style: none;
    counter-reset: a-step;
    margin: 2em 0;
    padding: 0;
}
.a-steps > li {
    counter-increment: a-step;
    position: relative;
    padding-left: 52px;
    margin-bottom: 1.4em;
}
.a-steps > li::before {
    content: counter(a-step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary-700);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}
.a-steps-title {
    display: block;
    font-weight: 650;
    color: var(--gray-900);
    margin-bottom: 3px;
}

/* 8. Compare — the X vs Y block. This content leans on it heavily:
      heuristic vs exact, predict vs decide, optimization vs AI. */
.a-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 2.2em 0;
}
.a-compare-side {
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: #fff;
}
.a-compare-side--alt {
    background: var(--gray-50);
    border-color: var(--gray-200);
}
.a-compare-head {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-teal);
}
.a-compare-side--alt .a-compare-head { border-bottom-color: var(--accent-300); }
.a-compare p { margin: 0 0 0.8em; font-size: 16.5px; line-height: 1.55; }
.a-compare > .a-compare-side > :last-child { margin-bottom: 0; }

@media (max-width: 700px) {
    .a-compare { grid-template-columns: 1fr; }
}

/* 9. Related rail — rendered by content-loader.js at the foot of every page. */
.c-related {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--a-rule);
}
.c-related-heading {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--a-muted);
    margin: 0 0 18px;
}

/* =========================================================================
   Loader-rendered furniture
   ========================================================================= */

/* Height reservations. These placeholders fill asynchronously; without a
   reserved box the body copy would jump on every load. */
.c-reserve-crumb { min-height: 22px; }
.c-reserve-meta  { min-height: 22px; }
.c-reserve-seq   { min-height: 150px; }

/* ---------- breadcrumb ---------- */
.c-breadcrumb {
    font-size: 14px;
    color: var(--a-muted);
    line-height: 22px;
}
.c-breadcrumb a { color: var(--a-muted); text-decoration: none; }
.c-breadcrumb a:hover { color: var(--primary-600); text-decoration: underline; }
.c-crumb-sep { margin: 0 8px; color: var(--gray-300); }
.c-breadcrumb [aria-current] { color: var(--gray-700); }

/* ---------- meta line ---------- */
.c-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 22px;
    color: var(--a-muted);
    margin-bottom: 28px;
}
.c-meta-dot { color: var(--gray-300); }
.c-meta-seq { font-weight: 600; color: var(--primary-700); }
.c-meta-series {
    font-weight: 600;
    color: var(--primary-700);
    text-decoration: none;
}
.c-meta-series:hover { text-decoration: underline; }

/* ---------- sequence navigation ---------- */
.c-seqnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--a-rule);
}
.c-seqnav-item {
    display: block;
    padding: 20px 22px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
a.c-seqnav-item:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.c-seqnav-item--empty { border: 0; }
.c-seqnav-item--next { text-align: right; }
.c-seqnav-dir {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--a-muted);
    margin-bottom: 6px;
}
.c-seqnav-title {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
    color: var(--gray-900);
}
.c-seqnav-back {
    margin-top: 20px;
    font-size: 15px;
}
.c-seqnav-back a { color: var(--a-muted); text-decoration: none; }
.c-seqnav-back a:hover { color: var(--primary-600); text-decoration: underline; }

@media (max-width: 640px) {
    .c-seqnav { grid-template-columns: 1fr; }
    .c-seqnav-item--next { text-align: left; }
    .c-seqnav-item--empty { display: none; }
}

/* ---------- cards (indexes, series bands, related rail) ---------- */
.c-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.c-card-inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
a.c-card-inner:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.c-card-num {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary-700);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}
.c-card-body { display: block; }
.c-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-500);
    margin-bottom: 5px;
}
.c-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
    color: var(--gray-900);
}
.c-card-desc {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-600);
    margin-top: 5px;
}
.c-card-date {
    display: block;
    font-size: 13.5px;
    color: var(--a-muted);
    margin-top: 8px;
}

/* Coming-soon items stay visible but unlinked, so a series reads as planned
   rather than empty. */
.c-card--soon .c-card-inner { background: var(--gray-50); border-style: dashed; }
.c-card--soon .c-card-title,
.c-card--soon .c-card-desc { color: var(--gray-500); }
.c-soon {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 2px 7px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---------- blog grid + series filters ---------- */
.c-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.c-filter {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 8px 15px;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.c-filter:hover { border-color: var(--primary-500); color: var(--primary-700); }
.c-filter.is-active {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: #fff;
}
.c-filter-n { opacity: 0.55; font-variant-numeric: tabular-nums; margin-left: 2px; }

.c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.c-tile[hidden] { display: none; }
.c-tile-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
a.c-tile-inner:hover {
    border-color: var(--primary-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.c-tile-series {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-500);
    margin-bottom: 9px;
}
.c-tile-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.28;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.c-tile-desc {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--gray-600);
    flex: 1 1 auto;
}
.c-tile-foot {
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--a-muted);
}
.c-tile--soon .c-tile-inner { background: var(--gray-50); border-style: dashed; }
.c-tile--soon .c-tile-title { color: var(--gray-600); }
.c-tile--soon .c-tile-series { color: var(--gray-500); }
.c-tile--soon .c-tile-desc { color: var(--gray-500); }
.c-tile--soon .c-soon { margin-left: 0; }

/* ---------- series bands (series landing pages) ---------- */
.c-band { margin-bottom: 72px; }
.c-band-head { margin-bottom: 20px; }
.c-band-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}
.c-band-title a { color: var(--gray-900); text-decoration: none; }
.c-band-title a:hover { color: var(--primary-600); }
.c-band-desc { font-size: 17px; color: var(--gray-600); margin: 0 0 10px; }
.c-band-audience { margin: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.c-band-more { margin-top: 16px; font-size: 15px; }
.c-band-more a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-700);
    font-weight: 600;
    text-decoration: none;
}
.c-band-more a:hover { text-decoration: underline; }

.c-chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 999px;
    padding: 4px 11px;
}

/* ---------- newsroom coverage strip ---------- */
.c-coverage { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.c-coverage-item a,
.c-coverage-item > span {
    display: block;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
}
.c-coverage-outlet {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--a-muted);
    margin-bottom: 4px;
}
.c-coverage-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 650;
    color: var(--gray-900);
}

.c-empty { color: var(--a-muted); font-size: 16px; }
.c-graduated { margin-bottom: 32px; }

/* ---------- end-of-hub CTA ---------- */
.a-cta {
    margin-top: 56px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-900), var(--color-deep) 60%, var(--accent-500));
    text-align: center;
    color: #fff;
}
.a-cta h2 {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: #fff;
}
.a-cta p { margin: 0 0 26px; color: rgba(255, 255, 255, 0.82); font-size: 17px; }
.a-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.a-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 650;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.a-cta-btn--primary { background: #fff; color: var(--primary-900); }
.a-cta-btn--secondary { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); }
.a-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- index page header ---------- */
.a-index-head { margin-bottom: 44px; }
.a-index-intro { font-size: 19px; line-height: 1.6; color: var(--gray-600); margin: 0; }

/* ---------- planned work (blog index) ---------- */
.c-planned {
    margin-top: 64px;
    padding-top: 36px;
    border-top: 1px solid var(--a-rule);
}
.c-planned-heading {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--a-muted);
    margin: 0 0 6px;
}
.c-planned-note {
    font-size: 15px;
    color: var(--a-muted);
    margin: 0 0 22px;
}
.c-grid--planned { opacity: 0.92; }
.c-tile-kind {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--a-muted);
}

/* ---------- evergreen rail (blog index) ---------- */
.c-evergreen { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--a-rule); }
.c-evergreen-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.c-evergreen-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-family: var(--font-display);
    font-weight: 650;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.c-evergreen-list a:hover { border-color: var(--primary-500); transform: translateY(-2px); }
.c-evergreen-list a > span:nth-child(2) { flex: 1 1 auto; }
.c-evergreen-list svg { color: var(--primary-600); flex: 0 0 auto; }

/* ---------- newsroom listing ---------- */
.c-news { list-style: none; margin: 0; padding: 0; }
.c-news-link {
    display: grid;
    grid-template-columns: 78px 1fr 152px;
    align-items: start;
    gap: 26px;
    padding: 26px 4px;
    border-top: 1px solid var(--gray-200);
    text-decoration: none;
    transition: background var(--transition-fast);
}
.c-news-item:last-child .c-news-link { border-bottom: 1px solid var(--gray-200); }
a.c-news-link:hover { background: var(--gray-50); }

/* Date rail: press listings get scanned by date, so it leads. */
.c-news-date {
    display: block;
    text-align: center;
    padding-top: 2px;
    font-family: var(--font-display);
    line-height: 1;
}
.c-news-day {
    display: block;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}
.c-news-mon {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-600);
    margin-top: 5px;
}
.c-news-year {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--a-muted);
    margin-top: 3px;
}

.c-news-body { display: block; min-width: 0; }
.c-news-title {
    display: block;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.32;
    color: var(--gray-900);
}
a.c-news-link:hover .c-news-title { color: var(--primary-700); }
.c-news-summary {
    display: block;
    font-size: 16px;
    line-height: 1.55;
    color: var(--gray-600);
    margin-top: 7px;
}

.c-news-thumb { display: block; }
.c-news-thumb img {
    display: block;
    width: 152px;
    height: 101px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--gray-100);
}

.c-news-item--soon .c-news-title,
.c-news-item--soon .c-news-summary { color: var(--gray-500); }
.c-news-item--soon .c-news-thumb img { opacity: 0.5; }

@media (max-width: 760px) {
    .c-news-link { grid-template-columns: 62px 1fr; gap: 18px; padding: 20px 4px; }
    .c-news-thumb { display: none; }
    .c-news-day { font-size: 27px; }
}

/* ---------- external sources on a release ---------- */
.c-sources { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--a-rule); }
.c-sources-heading {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--a-muted);
    margin: 0 0 14px;
}
.c-sources-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.c-sources-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}
.c-sources-list a:hover { border-color: var(--primary-500); background: var(--gray-50); }
.c-sources-outlet {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-700);
}
.c-sources-title { flex: 1 1 auto; font-size: 15.5px; color: var(--gray-800); line-height: 1.45; }
.c-sources-list svg { flex: 0 0 auto; color: var(--a-muted); }

/* Newsroom rows without a thumbnail should not leave a hole in the grid. */
.c-news-link:not(:has(.c-news-thumb)) { grid-template-columns: 78px 1fr; }
