/* =====================================================================
   SlowBull — DESIGN B: "the soft brief".
   Same business-news feed, a rounder, friendlier hand: elevated cards that
   float on warm paper, generously rounded images and panels, pill controls,
   soft shadows. Type: Bricolage Grotesque (display) / Hanken Grotesk (body) /
   DM Mono (data). Light only. Signature stays: coverage names the outlets.
   ===================================================================== */

:root {
    color-scheme: light;

    --paper:   #efece4;   /* warm paper the cards float on */
    --card:    #fffdf9;   /* raised card surface */
    --card-2:  #e9e5da;   /* thumb placeholder */
    --ink:     #1e211c;
    --stone:   #64675e;
    --faint:   #9a9c8f;
    --rule:    #e4e0d4;
    --rule-soft:#eeebe1;

    --pine:      #16624c;   /* brand green, a touch brighter/friendlier */
    --pine-soft: #2f8064;
    --marigold:  #c0851d;   /* the spark */
    --brick:     #a5503a;

    --display: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
    --sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    --mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

    --shell: 1220px;
    --gap: clamp(1.5rem, 3.5vw, 2.5rem);
    --pad: clamp(1.15rem, 4vw, 2.25rem);

    --r-lg: 13px;   /* cards, panels, lead image */
    --r-md: 10px;   /* thumbnails */
    --r-sm: 8px;
    --r-pill: 999px;
    --shadow:    0 1px 2px rgba(31,40,28,.04), 0 6px 18px rgba(31,40,28,.06);
    --shadow-lg: 0 2px 6px rgba(31,40,28,.06), 0 16px 40px rgba(31,40,28,.10);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--pine); outline-offset: 2px; border-radius: 6px; }

.shell { max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }

/* Pages that drop content straight into <main> without a .shell wrapper (prose / legal / digest / error)
   still need the same horizontal breathing room — without it the text runs into the screen edge on mobile. */
main > *:not(.shell) { padding-inline: var(--pad); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: var(--card); padding: .5rem .8rem; border-radius: var(--r-sm); box-shadow: var(--shadow); }

.eyebrow { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }

/* ---------------------------------------------------------------- Masthead */
.masthead { background: var(--paper); position: sticky; top: 0; z-index: 30; }
.masthead__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding: 1rem 0 .85rem; flex-wrap: wrap; }
.wordmark { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.wordmark__bull { width: 1.7rem; height: 1.7rem; flex: 0 0 auto; }
.wordmark em { font-style: normal; color: var(--pine); }

.mainnav { display: flex; flex-wrap: wrap; gap: .35rem; font-family: var(--sans); font-weight: 500; font-size: .85rem; }
.mainnav a { color: var(--stone); padding: .35rem .8rem; border-radius: var(--r-pill); transition: background .15s, color .15s; }
.mainnav a:hover { color: var(--ink); background: var(--card); }
.mainnav a.is-active { color: #fff; background: var(--pine); }

.dateline { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--faint); text-transform: uppercase; }
.dateline .edition { color: var(--pine); }

/* ----------------------------------------------------- Section accents / kicker */
.sect--earnings { color: var(--pine); }
.sect--markets  { color: var(--ink); }
.sect--tech     { color: var(--pine-soft); }
.sect--deals    { color: var(--marigold); }
.sect--economy  { color: var(--brick); }
.sect--policy   { color: var(--stone); }

.kicker { font-family: var(--mono); font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .5rem; }
.kicker::before { content: ""; width: .5rem; height: .5rem; background: currentColor; border-radius: 50%; flex: 0 0 auto; }
.kicker .dot { color: var(--faint); }

/* company / ticker chip — pill */
.chip { font-family: var(--mono); font-size: .66rem; letter-spacing: .03em; padding: .18rem .6rem; border-radius: var(--r-pill); color: var(--pine); background: rgba(22,98,76,.09); }
a.chip:hover { background: rgba(22,98,76,.16); }

/* ------------------------------------------------- Coverage (signature) */
.coverage { font-family: var(--mono); font-size: .74rem; color: var(--stone); display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .5rem; }
.coverage__n { color: var(--marigold); font-weight: 500; }
.coverage__list { color: var(--stone); }
.coverage__list .more { color: var(--faint); }
.coverage__time { color: var(--faint); }
.coverage .sep { color: var(--rule); }

/* ------------------------------------------------------------------- Lead */
.lead { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.5rem, 3.5vw, 2.5rem) 0; }
.lead__media { position: relative; aspect-ratio: 4/3; background: var(--card-2); overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.lead__media img { width: 100%; height: 100%; object-fit: cover; }
.lead__credit { position: absolute; bottom: .7rem; right: .7rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .03em; color: #fff; background: rgba(20,32,25,.6); padding: .18rem .5rem; border-radius: var(--r-pill); text-transform: uppercase; }
.lead__body { max-width: 34rem; }
.lead__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.95rem, 3.6vw, 3.1rem); line-height: 1.03; letter-spacing: -.025em; margin: .7rem 0 .55rem; }
.lead__title a:hover { color: var(--pine); }
.lead__standfirst { font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--stone); margin: 0 0 1.15rem; }
.lead__media--empty { display: grid; place-items: center; }
.lead__media--empty .wordmark__bull { width: 5rem; height: 5rem; opacity: .55; }

/* -------------------------------------------------------- Body: feed + rail */
.body { display: grid; grid-template-columns: minmax(0,1fr) 20rem; gap: var(--gap); padding: clamp(1rem,2.5vw,2rem) 0 3.5rem; align-items: start; }

.feed__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.feed__head h2 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; margin: 0; }
.toggle { display: flex; gap: .3rem; background: var(--card); border-radius: var(--r-pill); padding: .25rem; box-shadow: var(--shadow); }
.toggle a { font-family: var(--mono); font-size: .72rem; color: var(--stone); padding: .3rem .75rem; border-radius: var(--r-pill); }
.toggle a:hover { color: var(--ink); }
.toggle a.is-active { color: #fff; background: var(--pine); }

/* Story card — elevated rounded panel */
.cards { display: flex; flex-direction: column; gap: 1rem; }
.card { display: grid; grid-template-columns: 12.5rem 1fr; gap: 1.25rem; padding: 1rem; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card__thumb { aspect-ratio: 3/2; background: var(--card-2); overflow: hidden; border-radius: var(--r-md); }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.card__thumb--empty { display: grid; place-items: center; }
.card__thumb--empty .wordmark__bull { width: 2.6rem; height: 2.6rem; opacity: .45; }
.card__body { min-width: 0; align-self: center; }
.card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .8rem; margin-bottom: .5rem; }
.card__title { font-family: var(--display); font-weight: 600; font-size: 1.28rem; line-height: 1.14; letter-spacing: -.018em; margin: 0 0 .4rem; }
.card__title a:hover { color: var(--pine); }
.card__standfirst { color: var(--stone); font-size: .93rem; margin: 0 0 .7rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ------------------------------------------------------------------ Rail */
.rail { display: flex; flex-direction: column; gap: 1.15rem; position: sticky; top: 5.6rem; }
.panel { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.15rem 1.2rem; }
.panel__head { font-family: var(--display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.panel__head .spark { width: .55rem; height: .55rem; background: var(--marigold); border-radius: 50%; }

.mover { display: grid; grid-template-columns: 1.6rem 1fr; gap: .6rem; padding: .65rem 0; border-bottom: 1px solid var(--rule-soft); }
.mover:last-child { border-bottom: 0; padding-bottom: 0; }
.mover__rank { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--pine); }
.mover__title { font-family: var(--sans); font-size: .95rem; font-weight: 600; line-height: 1.22; margin: 0 0 .2rem; }
.mover__title a:hover { color: var(--pine); }
.mover__meta { font-family: var(--mono); font-size: .68rem; color: var(--faint); }
.mover__meta .up { color: var(--pine-soft); }

.sectors { display: flex; flex-direction: column; }
.sectors a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem .6rem; margin: 0 -.6rem; border-radius: var(--r-sm); }
.sectors a:hover { background: var(--paper); }
.sectors .s-name { font-family: var(--sans); font-weight: 600; font-size: .95rem; }
.sectors .s-count { font-family: var(--mono); font-size: .78rem; color: var(--faint); }

.subscribe { background: var(--pine); color: #eef5f1; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.25rem 1.2rem; }
.subscribe h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin: 0 0 .3rem; color: #fff; }
.subscribe p { font-size: .86rem; color: #bcd6cb; margin: 0 0 .9rem; }
.subscribe form { display: flex; flex-direction: column; gap: .5rem; }
.subscribe input { padding: .65rem .8rem; border: 1px solid #2c7660; background: #0f4b3a; color: #fff; font-family: var(--sans); font-size: .9rem; border-radius: var(--r-pill); }
.subscribe input::placeholder { color: #7fae9c; }
.subscribe button { padding: .65rem; background: var(--marigold); color: #23180a; border: 0; font-family: var(--sans); font-weight: 700; font-size: .9rem; cursor: pointer; border-radius: var(--r-pill); }
.subscribe button:hover { background: #d5951f; }

.empty { padding: clamp(2rem,6vw,4rem); text-align: center; color: var(--stone); background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); }

/* ----------------------------------------------------------------- Footer */
.footer { margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: 2.5rem 0 1.5rem; border-top: 1px solid var(--rule); }
.footer__blurb { color: var(--stone); font-size: .9rem; max-width: 32ch; margin: .7rem 0 0; }
.footer h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin: 0 0 .8rem; }
.footer nav { display: flex; flex-direction: column; gap: .5rem; }
.footer nav a { color: var(--stone); font-size: .92rem; }
.footer nav a:hover { color: var(--pine); }
.footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.1rem 0 2.5rem; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: .72rem; color: var(--faint); }

/* -------------------------------------------------- Prose / detail (shared) */
.prose { max-width: 42rem; margin-inline: auto; padding-block: clamp(1.5rem,4vw,2.5rem) 3rem; }
.prose h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); letter-spacing: -.025em; line-height: 1.05; margin: 0 0 1rem; }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin: 2rem 0 .6rem; }
.prose p { margin: 0 0 1rem; }
.prose a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule); }
.prose a:hover { text-decoration-color: var(--pine); }
.detail__meta { font-family: var(--mono); font-size: .8rem; color: var(--faint); display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin: .5rem 0 0; }
.back { display: inline-block; font-family: var(--mono); font-size: .76rem; color: var(--stone); margin-bottom: 1.1rem; }
.back:hover { color: var(--pine); }

/* ------------------------------------------ Detail pages (story / company) */
.detail { padding-block: clamp(1.25rem, 3vw, 2rem) 3.5rem; }
.detail__wrap { max-width: 52rem; }
.detail__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.95rem, 3.6vw, 3rem); line-height: 1.04; letter-spacing: -.028em; margin: .5rem 0 .7rem; }
.detail__meta { font-family: var(--mono); font-size: .78rem; color: var(--stone); display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .75rem; }
.detail__meta b { color: var(--marigold); font-weight: 500; }
.detail__meta .sep { color: var(--rule); }
.detail__media { margin: 1.5rem 0 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 2/1; background: var(--card-2); }
.detail__media img { width: 100%; height: 100%; object-fit: cover; }

.takeaway { margin: 1.6rem 0 0; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.2rem 1.4rem; border-left: 4px solid var(--pine); font-family: var(--display); font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.42; color: var(--ink); }

.detail__section { margin-top: clamp(2rem, 4vw, 3rem); }
.section-head { font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 1rem; }

/* "Covered by" — each outlet a pill linking to its article */
.source-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.source-pill { display: inline-flex; align-items: baseline; gap: .45rem; padding: .5rem .95rem; background: var(--card); border-radius: var(--r-pill); box-shadow: var(--shadow); font-weight: 600; font-size: .92rem; transition: transform .15s ease, box-shadow .15s ease, color .15s ease; }
.source-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); color: var(--pine); }
.source-pill b { font-family: var(--mono); font-size: .72rem; font-weight: 500; color: var(--marigold); }

/* "All coverage" — each article a rounded card linking out */
.articles { display: flex; flex-direction: column; gap: .7rem; }
.article { display: block; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1rem 1.2rem; transition: transform .15s ease, box-shadow .15s ease; }
.article:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.article__top { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .7rem; margin-bottom: .35rem; font-family: var(--mono); font-size: .7rem; color: var(--faint); }
.article__outlet { color: var(--pine); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.article__top .sep { color: var(--rule); }
.article__title { font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.2; margin: 0; color: var(--ink); }
.article__title .arrow { color: var(--faint); font-weight: 400; }
.article:hover .article__title { color: var(--pine); }
.article:hover .article__title .arrow { color: var(--pine); }
.article__desc { color: var(--stone); font-size: .9rem; margin: .35rem 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Company header */
.company__head { max-width: 52rem; }
.company__logo { width: 60px; height: 60px; border-radius: var(--r-md); object-fit: contain; background: var(--card); box-shadow: var(--shadow); padding: 8px; margin: .5rem 0 1rem; }
.company__desc { color: var(--stone); font-size: 1.05rem; line-height: 1.5; margin: .7rem 0 0; max-width: 46ch; }
.editorial-cta { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.15rem; padding: .6rem 1.15rem; background: var(--pine); color: #fff; border-radius: var(--r-pill); font-weight: 600; font-size: .92rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.editorial-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); background: #124e3d; }

/* Company "About" facts */
.facts { margin: 1.15rem 0 0; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1rem 1.2rem; display: grid; gap: .55rem; max-width: 34rem; }
.facts__row { display: grid; grid-template-columns: 7.5rem 1fr; gap: .4rem 1rem; align-items: baseline; }
.facts__row dt { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.facts__row dd { margin: 0; color: var(--ink); font-size: .95rem; overflow-wrap: anywhere; }
.facts__row dd a { color: var(--pine); }
.facts__row dd a:hover { text-decoration: underline; }

/* Company directory (/companies) */
.company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.company-card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.1rem 1.2rem; transition: transform .15s ease, box-shadow .15s ease; }
.company-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.company-card__tkr { font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .06em; color: var(--pine); }
.company-card__name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; margin: .15rem 0 .4rem; color: var(--ink); }
.company-card:hover .company-card__name { color: var(--pine); }
.company-card__meta { font-family: var(--mono); font-size: .72rem; color: var(--faint); display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .5rem; }
.company-card__meta .sep { color: var(--rule); }

/* Earnings calendar (/calendar) + company "next earnings" line */
.cal-note { font-family: var(--mono); font-size: .78rem; line-height: 1.5; color: var(--stone); margin: .9rem 0 0; max-width: 52ch; }
.cal-note b { color: var(--ink); font-weight: 500; }

/* Day-grouped calendar: each day is a card; companies listed under a clear day header. */
.cal-day { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: .1rem 1.2rem .5rem; margin-bottom: .85rem; }
.cal-day__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .8rem 0 .55rem; border-bottom: 1px solid var(--rule); }
.cal-day__when { display: flex; align-items: baseline; gap: .55rem; min-width: 0; }
.cal-day__dow { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; color: var(--ink); }
.cal-day__date { font-family: var(--mono); font-size: .78rem; color: var(--stone); letter-spacing: .02em; }
.cal-day__count { font-family: var(--mono); font-size: .7rem; color: var(--faint); white-space: nowrap; }
.cal-day__list { display: flex; flex-direction: column; }
.cal-item { display: grid; grid-template-columns: 4rem 1fr auto; align-items: baseline; gap: .3rem .9rem; padding: .55rem 0; border-bottom: 1px solid var(--rule-soft); }
.cal-item:last-child { border-bottom: 0; }
.cal-item:hover .cal-item__name { color: var(--pine); }
.cal-item__tkr { font-family: var(--display); font-weight: 700; font-size: .92rem; letter-spacing: -.01em; color: var(--pine); }
.cal-item__name { font-family: var(--sans); font-size: .96rem; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-item__meta { display: flex; align-items: baseline; gap: .55rem; font-family: var(--mono); font-size: .72rem; color: var(--stone); white-space: nowrap; }
.cal-item__form { color: var(--marigold); }
.cal-tag { font-family: var(--mono); font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; padding: .12rem .45rem; border-radius: var(--r-pill); white-space: nowrap; }
.cal-tag--est { color: var(--marigold); background: rgba(192,133,29,.14); }
.cal-tag--rep { color: var(--pine); background: rgba(22,98,76,.1); }

/* Company header — "Next earnings" line */
.next-earnings { margin: 1.15rem 0 0; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: .85rem 1.15rem; max-width: 34rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .7rem; }
.next-earnings__label { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.next-earnings__date { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--pine); }
.next-earnings__period { font-family: var(--mono); font-size: .74rem; color: var(--stone); }
.next-earnings__last { font-family: var(--mono); font-size: .72rem; color: var(--faint); flex-basis: 100%; }

/* Recent filings — calm card list of actual SEC filing dates */
.filings { list-style: none; margin: 0; padding: .35rem 0; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); max-width: 34rem; }
.filing-row { display: flex; align-items: baseline; gap: .3rem .9rem; padding: .55rem 1.2rem; border-top: 1px solid var(--rule-soft); }
.filing-row:first-child { border-top: 0; }
.filing-row__date { font-family: var(--mono); font-size: .8rem; color: var(--pine); min-width: 6.5rem; }
.filing-row__form { font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.filing-row__period { font-family: var(--mono); font-size: .74rem; color: var(--faint); margin-left: auto; }
.filings__note { font-family: var(--mono); font-size: .7rem; color: var(--faint); margin: .55rem 0 0; }

@media (max-width: 40rem) {
    .cal-item { grid-template-columns: 3.2rem 1fr; }
    .cal-item__meta { grid-column: 2 / -1; justify-content: flex-start; margin-top: .15rem; }
}

/* --------------------------------------------------------------- Responsive */
@media (max-width: 62rem) {
    .body { grid-template-columns: 1fr; }
    .rail { position: static; }
    .lead { grid-template-columns: 1fr; }
    .lead__media { aspect-ratio: 16/9; }
}
@media (max-width: 40rem) {
    .card { grid-template-columns: 6.5rem 1fr; gap: .85rem; padding: .8rem; }
    .card__title { font-size: 1.08rem; }
    .card__standfirst { display: none; }
    .masthead { position: static; }
    .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
    .card:hover { transform: none; }
}
