/* =========================================================
   Sexton's Tax Service — Home page
   Production CSS recreated pixel-faithfully from the
   Claude Design B-2 home prototype (deploy/index.html →
   B.B2Desktop / B.B2Mobile). No React/Babel runtime.
   ========================================================= */

/* ---------- design tokens ---------- */
:root {
  --sts-blue: #006EC7;
  --sts-blue-700: #005ba6;   /* slight darken for hover */
  --sts-blue-800: #006EC7;   /* footer + heavy surfaces */
  --sts-blue-50: #eaf4fc;
  --sts-blue-25: #f4f9fe;
  --sts-ink: #14222e;
  --sts-ink-2: #3a4a58;
  --sts-ink-3: #6b7a87;
  --sts-line: #d9e3ec;
  --sts-line-soft: #ebf0f5;
  --sts-bg: #ffffff;
  --sts-surface: #f8fafc;
  --sts-success: #1f7a4d;
  --sts-warn: #b6601f;

  --sts-radius: 14px;
  --sts-radius-sm: 8px;
  --sts-radius-lg: 22px;

  --sts-shadow-sm: 0 1px 2px rgba(20,34,46,.06), 0 1px 1px rgba(20,34,46,.04);
  --sts-shadow: 0 6px 22px -8px rgba(0,110,199,.22), 0 2px 6px rgba(20,34,46,.06);
  --sts-shadow-lg: 0 18px 44px -16px rgba(0,110,199,.30), 0 4px 10px rgba(20,34,46,.06);

  --sts-font-display: "Newsreader", "Source Serif Pro", Georgia, serif;
  --sts-font-body: "Source Sans 3", "Source Sans Pro", -apple-system, "Segoe UI", sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; }
body {
  font-family: var(--sts-font-body);
  color: var(--sts-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; }

/* page is centered and capped, matching the live-site override */
.sts-page { max-width: 1280px; margin: 0 auto; box-shadow: 0 0 0 1px var(--sts-line-soft); background: #fff; }

/* ---------- typography helpers ---------- */
.sts-display { font-family: var(--sts-font-display); font-weight: 600; letter-spacing: -0.01em; color: var(--sts-blue); line-height: 1.08; }
.sts-h2 { font-family: var(--sts-font-display); font-weight: 600; color: var(--sts-blue); letter-spacing: -0.005em; line-height: 1.15; }
.sts-h3 { font-family: var(--sts-font-display); font-weight: 600; color: var(--sts-blue); line-height: 1.2; }
.sts-eyebrow { font-family: var(--sts-font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; color: var(--sts-blue-700); }

/* ---------- buttons ---------- */
.sts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 12px;
  font-family: var(--sts-font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.sts-btn:active { transform: translateY(1px); }
.sts-btn--primary { background: var(--sts-blue); color: #fff; box-shadow: var(--sts-shadow); }
.sts-btn--primary:hover { background: var(--sts-blue-700); box-shadow: var(--sts-shadow-lg); }
.sts-btn--secondary { background: #fff; color: var(--sts-blue); border-color: var(--sts-blue); }
.sts-btn--secondary:hover { background: var(--sts-blue-50); }
.sts-btn--ghost { background: transparent; color: var(--sts-blue); }
.sts-btn--ghost:hover { background: var(--sts-blue-50); }
.sts-btn--large { min-height: 64px; font-size: 19px; padding: 0 28px; border-radius: 14px; }

/* ---------- link ---------- */
.sts-link {
  color: var(--sts-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid color-mix(in oklab, var(--sts-blue) 35%, transparent);
  transition: border-color .12s ease;
}
.sts-link:hover { border-bottom-color: var(--sts-blue); }

/* ---------- card ---------- */
.sts-card {
  background: #fff;
  border: 1px solid var(--sts-line);
  border-radius: var(--sts-radius);
  padding: 24px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.sts-card:hover { border-color: var(--sts-blue); box-shadow: var(--sts-shadow); }

.sts-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  background: var(--sts-blue-50); color: var(--sts-blue-800);
}
.sts-pill .sts-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--sts-success); box-shadow: 0 0 0 4px color-mix(in oklab, var(--sts-success) 22%, transparent); }

/* ---------- icons ---------- */
.sts-icon { width: 22px; height: 22px; stroke-width: 2; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.sts-icon--lg { width: 32px; height: 32px; }
.sts-icon--xl { width: 44px; height: 44px; stroke-width: 1.6; }

/* =========================================================
   Desktop / mobile shell switch at 760px
   ========================================================= */
.sts-desktop { display: block; }
.sts-mobile  { display: none; }
@media (max-width: 760px) {
  .sts-desktop { display: none; }
  .sts-mobile  { display: block; }
}

/* =========================================================
   NAV STRIP (slim, no logo — the sign is the brand mark)
   ========================================================= */
.nav-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 48px;
  background: #fff;
}
.nav-strip__links { display: flex; gap: 4px; }
.nav-link {
  padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  color: var(--sts-ink-2);
  background: transparent;
  text-decoration: none;
}
.nav-link.is-current { color: var(--sts-blue); background: var(--sts-blue-50); }
.nav-strip__cta { display: flex; align-items: center; gap: 10px; }
.nav-strip__cta .sts-btn { min-height: 44px; padding: 0 16px; font-size: 15px; }

/* =========================================================
   STATUS STRIP (blue) — hours pill left, phone + address right
   ========================================================= */
.status-strip {
  background: var(--sts-blue); color: #fff;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; font-size: 15px; font-weight: 500;
}
.status-strip__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); padding: 6px 12px; border-radius: 999px;
  font-weight: 600; letter-spacing: .02em;
}
.status-strip__dot { width: 8px; height: 8px; border-radius: 999px; background: #7ee2a8; }
.status-strip__meta { display: flex; align-items: center; gap: 22px; }
.status-strip__meta a { color: #fff; text-decoration: none; }
.status-strip__item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.status-strip__sep { width: 1px; height: 18px; background: rgba(255,255,255,.3); }

/* =========================================================
   SIGN PLATE (centered, framed)
   ========================================================= */
.sign-section { padding: 44px 48px 8px; background: #fff; display: grid; place-items: center; }
.sign-plate {
  max-width: 720px; width: 100%;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--sts-shadow-lg);
  background: var(--sts-blue);
  aspect-ratio: 908 / 554;
}
.sign-plate img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   COMMAND ROW — headline + 3 big blue cards
   ========================================================= */
.command-row { padding: 44px 48px 28px; background: #fff; }
.command-row__head { margin-bottom: 22px; }
.command-row__head h1 { font-size: 40px; margin: 0; }
.command-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.command-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px; border-radius: 16px;
  background: var(--sts-blue); color: #fff;
  text-decoration: none;
  box-shadow: var(--sts-shadow);
  min-height: 200px; position: relative; overflow: hidden;
}
.command-card__ghost { position: absolute; right: -20px; top: -20px; opacity: .12; }
.command-card__ghost .sts-icon { width: 130px; height: 130px; stroke: #fff; }
.command-card__icon { stroke: #fff; }
.command-card__meta { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.command-card__title { font-family: var(--sts-font-display); font-size: 30px; font-weight: 600; line-height: 1.1; }
.command-card__desc { font-size: 15px; line-height: 1.5; opacity: .92; max-width: 280px; }
.command-card__open { margin-top: auto; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.command-card__open .sts-icon { stroke: #fff; }

/* =========================================================
   UTILITY ROW — 3 bordered link cards
   ========================================================= */
.utility-row { padding: 12px 48px 28px; }
.utility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.utility-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px;
  border: 1px solid var(--sts-line); border-radius: 12px; background: #fff;
  text-decoration: none; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.utility-card:hover { border-color: var(--sts-blue); box-shadow: var(--sts-shadow); }
.utility-card__icon { color: var(--sts-blue); }
.utility-card__body { flex: 1; min-width: 0; }
.utility-card__title { font-family: var(--sts-font-display); color: var(--sts-blue); font-weight: 600; font-size: 18px; line-height: 1.15; }
.utility-card__desc { font-size: 13px; color: var(--sts-ink-3); margin-top: 2px; }
.utility-card__arrow { color: var(--sts-blue); }

/* =========================================================
   INFO ROW — hours card + featured news
   ========================================================= */
.info-row { padding: 16px 48px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.hours-card { background: var(--sts-surface); border: 1px solid var(--sts-line); border-radius: 16px; padding: 28px; }
.hours-card__head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.hours-card__head h2 { font-size: 26px; margin: 0; }
.hours-card__month { font-family: var(--sts-font-display); color: var(--sts-ink-3); font-size: 15px; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hours-day { background: #fff; border: 1px solid var(--sts-line); border-radius: 12px; padding: 16px; }
.hours-day__dow { font-family: var(--sts-font-display); color: var(--sts-blue); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hours-day__date { font-family: var(--sts-font-display); color: var(--sts-blue); font-size: 22px; font-weight: 600; margin-top: 2px; }
.hours-day__hrs { font-size: 16px; color: var(--sts-ink-2); margin-top: 6px; font-weight: 500; }
.hours-card__note { margin-top: 14px; font-size: 14px; color: var(--sts-ink-3); }

.featured-news {
  display: block; text-decoration: none; color: inherit;
  background: var(--sts-blue-25);
  border: 1px solid var(--sts-blue);
  border-radius: 16px; padding: 24px;
  box-shadow: var(--sts-shadow);
}
.featured-news__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.featured-news__eyebrow { color: var(--sts-blue); }
.featured-news__date { font-family: var(--sts-font-display); color: var(--sts-ink-3); font-size: 14px; }
.featured-news h3 { font-size: 22px; margin: 0 0 10px; }
.featured-news__body { font-size: 15px; line-height: 1.55; color: var(--sts-ink-2); margin: 0 0 12px; }
.featured-news__more { color: var(--sts-blue); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* =========================================================
   NEWS PREVIEW — 3 cards
   ========================================================= */
.news-preview { padding: 12px 48px 56px; }
.news-preview__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.news-preview__head h2 { font-size: 28px; margin: 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { padding: 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 10px; }
.news-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.news-card__eyebrow { font-size: 11px; }
.news-card__date { font-family: var(--sts-font-display); color: var(--sts-ink-3); font-size: 13px; }
.news-card__title { font-size: 19px; margin: 0; }
.news-card__body { font-size: 14px; line-height: 1.55; color: var(--sts-ink-2); flex: 1; }
.news-card__more { color: var(--sts-blue); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; margin-top: 2px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--sts-blue-800); color: #fff; padding: 40px 48px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__brand { font-family: var(--sts-font-display); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.footer__tag { opacity: .85; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.footer__col-title { font-family: var(--sts-font-display); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.footer__contact { opacity: .9; font-size: 15px; line-height: 1.7; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 15px; opacity: .92; }
.footer__links a { color: #fff; text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer__legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); font-size: 13px; opacity: .7; }

/* =========================================================
   MOBILE SHELL (B-2 mobile)
   ========================================================= */
.m-topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--sts-line); }
.m-topbar .sts-btn { min-height: 40px; padding: 0 10px; font-size: 14px; }
.m-menu-btn { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--sts-line); background: #fff; display: grid; place-items: center; color: var(--sts-blue); cursor: pointer; }

.m-sign-section { padding: 20px 18px 6px; display: grid; place-items: center; }
.m-sign-plate { width: 100%; border-radius: 14px; overflow: hidden; box-shadow: var(--sts-shadow); background: var(--sts-blue); }
.m-sign-plate img { width: 100%; }
.m-pill { margin-top: 14px; font-size: 12px; }

.m-command { padding: 20px 18px 8px; }
.m-command h1 { font-size: 24px; margin: 0 0 14px; }
.m-command__list { display: grid; gap: 12px; }
.m-command-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-radius: 14px;
  background: var(--sts-blue); color: #fff;
  text-decoration: none; box-shadow: var(--sts-shadow);
  min-height: 88px;
}
.m-command-card__body { flex: 1; min-width: 0; }
.m-command-card__title { font-family: var(--sts-font-display); font-size: 22px; font-weight: 600; line-height: 1.1; }
.m-command-card__meta { font-size: 13px; opacity: .88; margin-top: 4px; font-weight: 600; letter-spacing: .04em; }
.m-command-card .sts-icon { stroke: #fff; }

.m-utility { padding: 16px 18px 8px; }
.m-utility__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-utility-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px; border: 1px solid var(--sts-line); border-radius: 12px; background: #fff;
  text-decoration: none; color: inherit; min-height: 84px;
}
.m-utility-card__icon { color: var(--sts-blue); }
.m-utility-card__title { font-family: var(--sts-font-display); color: var(--sts-blue); font-weight: 600; font-size: 16px; }

.m-hours { padding: 20px 18px; }
.m-hours__box { background: var(--sts-surface); border: 1px solid var(--sts-line); border-radius: 14px; padding: 16px; }
.m-hours__eyebrow { margin-bottom: 6px; font-size: 11px; }
.m-hours__box h3 { font-size: 19px; margin: 0 0 10px; }
.m-hours__rows { display: grid; gap: 8px; }
.m-hours__row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; border-bottom: 1px dashed var(--sts-line); }
.m-hours__row strong { color: var(--sts-blue); }

/* mobile collapsible (CP53E) */
.m-collapse-section { padding: 0 18px 24px; }
.sts-collapse { border: 1px solid var(--sts-line); border-radius: var(--sts-radius); background: #fff; overflow: hidden; }
.sts-collapse__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px; cursor: pointer; width: 100%;
  background: var(--sts-blue-25); border: 0; border-bottom: 1px solid transparent; text-align: left;
}
.sts-collapse__title { font-family: var(--sts-font-display); font-weight: 600; color: var(--sts-blue); font-size: 19px; }
.sts-collapse__sub { font-size: 14px; color: var(--sts-ink-3); margin-top: 2px; }
.sts-collapse__chev { width: 22px; height: 22px; transition: transform .2s ease; color: var(--sts-blue); }
.sts-collapse__body { padding: 18px 20px 20px; font-size: 17px; color: var(--sts-ink-2); display: none; }
.sts-collapse__body ul { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.sts-collapse--open .sts-collapse__head { border-bottom-color: var(--sts-line); }
.sts-collapse--open .sts-collapse__chev { transform: rotate(180deg); }
.sts-collapse--open .sts-collapse__body { display: block; }

.m-news { padding: 8px 18px 20px; }
.m-news__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 10px; }
.m-news__head h2 { font-size: 19px; margin: 0; }
.m-news__list { display: grid; gap: 10px; }
.m-news-card { padding: 14px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 6px; }
.m-news-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.m-news-card__eyebrow { font-size: 10px; }
.m-news-card__date { font-family: var(--sts-font-display); color: var(--sts-ink-3); font-size: 12px; }
.m-news-card__title { font-size: 17px; margin: 0; }
.m-news-card__body { font-size: 13px; line-height: 1.5; color: var(--sts-ink-2); }

.m-cta { padding: 0 18px 28px; display: grid; gap: 10px; }
.m-cta .sts-btn { width: 100%; }

.m-footer { background: var(--sts-blue-800); color: #fff; padding: 24px 20px; }
.m-footer__brand { font-family: var(--sts-font-display); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.m-footer__tag { opacity: .82; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.m-footer__contact { font-size: 14px; line-height: 1.7; opacity: .9; }
.m-footer__legal { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); font-size: 12px; opacity: .7; }

/* =========================================================
   INNER-PAGE SHARED CHROME (Process&Pricing, Missing Forms,
   Govt Help, News, Dropoffs, Walk-in, Tax Links)
   These are reused across every inner page — defined once here.
   ========================================================= */

/* page header */
.ph { padding: 48px 48px 24px; background: #fff; }
.ph__inner { max-width: 880px; }
.ph__inner h1 { font-size: 52px; margin: 0 0 16px; }
.ph__lede { font-size: 19px; line-height: 1.55; color: var(--sts-ink-2); margin: 0; }
.jumprow { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.jumprow .sts-btn { min-height: 48px; font-size: 15px; }

/* left-border callouts */
.callout { display: flex; gap: 14px; align-items: start; padding: 18px 22px; border-radius: 0 10px 10px 0; line-height: 1.55; color: var(--sts-ink-2); }
.callout--warn { border-left: 3px solid var(--sts-warn); background: #fff7ee; }
.callout--blue { border-left: 3px solid var(--sts-blue); background: var(--sts-blue-25); }
.callout strong { color: var(--sts-ink); }
.callout .sts-icon { flex: 0 0 auto; margin-top: 1px; }

/* fixed grids (desktop trees never reflow — mobile has its own markup) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* numbered step badge */
.step-badge { background: var(--sts-blue); color: #fff; display: grid; place-items: center; font-family: var(--sts-font-display); font-weight: 700; flex: 0 0 auto; }

/* check list item */
.check-li { display: flex; gap: 10px; align-items: start; color: var(--sts-ink-2); }
.check-li .sts-icon { color: var(--sts-blue); margin-top: 2px; flex: 0 0 auto; }

/* pricing cards */
.price-card { background: #fff; border: 1px solid var(--sts-line); border-radius: 16px; padding: 28px; }
.price-card--featured { background: var(--sts-blue); color: #fff; border-color: var(--sts-blue); box-shadow: var(--sts-shadow); }
.price-card__amt { font-family: var(--sts-font-display); color: var(--sts-blue); font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.price-card--featured .price-card__amt { color: #fff; }
.price-card__title { font-family: var(--sts-font-display); color: var(--sts-blue); font-size: 22px; font-weight: 600; margin-top: 12px; }
.price-card--featured .price-card__title { color: #fff; }
.price-card__desc { font-size: 15px; color: var(--sts-ink-2); margin-top: 6px; }
.price-card--featured .price-card__desc { color: #fff; opacity: .92; }

/* add-on fee table (two columns + divider) */
.addon { display: grid; grid-template-columns: 1fr 2px 1fr; column-gap: 32px; font-size: 15px; }
.addon__divider { background: var(--sts-blue); opacity: .18; border-radius: 1px; }
.addon__row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--sts-line); }
.addon__row.is-last { border-bottom: none; }
.addon__amt { font-family: var(--sts-font-display); color: var(--sts-blue); font-weight: 600; font-size: 18px; min-width: 52px; }
.addon__label { font-weight: 600; color: var(--sts-ink); }
.addon__note { font-size: 13px; color: var(--sts-ink-3); margin-top: 2px; }

/* generic icon+text+arrow row card (accounts, payments, links) */
.rowcard { padding: 22px; display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; }
.rowcard__icon { color: var(--sts-blue); }
.rowcard__body { flex: 1; min-width: 0; }
.rowcard__title { font-family: var(--sts-font-display); color: var(--sts-blue); font-weight: 600; font-size: 19px; }
.rowcard__desc { font-size: 14px; color: var(--sts-ink-2); margin-top: 4px; }
.rowcard__arrow { color: var(--sts-blue); }

/* news article row (desktop) */
.news-article { padding: 28px; display: grid; grid-template-columns: 160px 1fr auto; gap: 28px; align-items: start; }
.news-article--featured { background: var(--sts-blue-25); border-color: var(--sts-blue); }
.news-article__meta-date { font-family: var(--sts-font-display); color: var(--sts-ink-2); font-size: 15px; }
.news-article h2 { font-size: 26px; margin: 0 0 10px; }
.news-article__body { font-size: 16px; line-height: 1.6; color: var(--sts-ink-2); margin: 0; }

/* download / file link row */
.filelink { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--sts-line); border-radius: 10px; text-decoration: none; color: var(--sts-blue); font-weight: 600; font-size: 15px; background: #fff; }

/* trigger line (uppercase blue) reused on conditional cards */
.trigger-line { font-size: 13px; font-weight: 700; color: var(--sts-blue); text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }

/* =========================================================
   MOBILE SHELL (inner pages) — reused chrome
   ========================================================= */
.ms-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--sts-line); }
.ms-top .sts-btn { min-height: 40px; padding: 0 10px; font-size: 14px; }
.ms-hint { background: var(--sts-blue); color: #fff; padding: 12px 18px; display: flex; flex-direction: column; gap: 4px; }
.ms-hint__l1 { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.ms-hint__l1 .dot { width: 8px; height: 8px; border-radius: 999px; background: #7ee2a8; }
.ms-hint__l2 { font-size: 12px; opacity: .88; }
.ms-rail { padding: 8px 18px; border-bottom: 1px solid var(--sts-line); display: flex; gap: 4px; overflow-x: auto; }
.ms-rail a { padding: 8px 12px; border-radius: 8px; font-weight: 600; font-size: 13px; color: var(--sts-ink-2); background: transparent; text-decoration: none; white-space: nowrap; }
.ms-rail a.is-current { color: var(--sts-blue); background: var(--sts-blue-50); }

/* news-article right-meta layout */
@media (min-width:761px){
.news-article{grid-template-columns:1fr auto;grid-template-areas:"title meta" "body body" "btn btn";gap:6px 28px;}
.news-article>div:first-child{grid-area:meta;text-align:right;}
.news-article>div:nth-child(2){display:contents;}
.news-article>div:nth-child(2)>h2{grid-area:title;}
.news-article>div:nth-child(2)>.news-article__body{grid-area:body;padding-left:18px;border-left:3px solid var(--sts-blue-50);}
.news-article>a{grid-area:btn;justify-self:start;margin-top:12px;}
}

/* news buttons right */
@media (min-width:761px){
.news-article{grid-template-areas:"title meta" "body btn";}
.news-article>a{grid-area:btn;justify-self:end;align-self:start;margin-top:0;}
}

/* important highlight */
.news-article--featured{background:var(--sts-blue-50);border-color:var(--sts-blue);box-shadow:inset 5px 0 0 var(--sts-blue);}
