/* Editorial pages: /updates, /updates/<slug>, /news, /news/<slug>.
   Loaded after styles.css and chrome.css. platform.css supplies .campaign-card / [data-reveal] and the shared
   .editorial-hero / .hero-band-* / .polaroid-pair band classes. This file owns the feed, update card,
   filter toolbar, rail (note / missions / follow), help band and the detail templates. */

.public-site {
  /* geometry */
  --ed-aside: 320px;
  --ed-gallery-max: 800px;
  --ed-news-thumb: 200px;
  --ed-featured-photo: 480px;
  --ed-avatar: 16px;
  --ed-chip-h: var(--tap-size);
  --ed-search-w: 260px;
  --ed-state-icon: 40px;
  --ed-card-pad: 20px;
  --ed-card-gap: 24px;
  --ed-icon-btn: 44px;
  --ed-thumb: 48px;
  --ed-lockup-mark: 56px;
  --ed-skeleton-line-h: 14px;
  --ed-skeleton-short: 40%;
  --ed-skeleton-title: 80%;
  --ed-rule: 1px;
  --ed-quote-rule: 3px;
  --ed-ratio-photo: 4 / 3;
  --ed-ratio-featured: 16 / 10;
  --ed-clamp-lines: 2;
  --ed-excerpt-lines: 3;
  --ed-lede-max: 70ch;
  --ed-band-pad: 32px;
  /* type */
  --ed-fs-title: 20px; --ed-lh-title: 28px;
  --ed-fs-summary: 17px; --ed-lh-summary: 28px;
  --ed-fs-note: 24px; --ed-lh-note: 30px;
  --ed-h1-min: 26px; --ed-h1-fluid: 4vw;
  --ed-h2-min: 22px; --ed-h2-fluid: 2.8vw;
  --ed-ls-tag: .08em; --ed-ls-role: .06em;
  --ed-underline-offset: 4px; --ed-underline-offset-sm: 3px;
  /* colour */
  --ed-note-ink: var(--charcoal);
  --ed-band-bg: var(--tint-soft); --ed-lockup-bg: var(--tint-soft);
  --ed-count-bg: rgba(23, 26, 29, .72);
  --ed-disabled-opacity: .5;
  /* motion */
  --ed-crossfade: 200ms;
}

.ed-sr-only { position: absolute; width: var(--ed-rule); height: var(--ed-rule); padding: 0; margin: calc(-1 * var(--ed-rule)); overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ---------- Layout: feed column + 320px rail (rail stacks below on small screens) ---------- */
.editorial-layout { display: grid; gap: 40px; padding: 36px 0 64px; }
.editorial-main { min-width: 0; }
.editorial-aside { display: grid; gap: var(--s-6); align-self: start; }
.editorial-section + .editorial-section { margin-top: var(--s-10); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(var(--ed-h2-min), var(--ed-h2-fluid), var(--fs-h2)); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); font-weight: 800; }
.section-head p { color: var(--muted); font-size: var(--fs-small); line-height: var(--lh-small); }
.feed-head-dot { color: var(--red-primary); }
.back-link { display: inline-flex; align-items: center; gap: var(--s-1); min-height: var(--tap-size); font-size: var(--fs-small); font-weight: 600; color: var(--muted); text-decoration: none; }
.back-link:hover { color: var(--red-primary); }

/* Hero photo host inside the shared band: empty until real photos or the branded mark arrive. */
.hero-photos { min-height: var(--s-4); }
.polaroid.is-brand .polaroid-frame { display: grid; place-items: center; aspect-ratio: var(--ed-ratio-photo); background: var(--ed-lockup-bg); }
.polaroid.is-brand .polaroid-brand-mark { width: 40%; height: auto; max-width: 120px; }

/* ---------- Toolbar: icon chips + search ---------- */
.feed-toolbar { display: grid; gap: var(--s-4); margin-top: var(--s-6); padding-bottom: var(--s-5); border-bottom: var(--ed-rule) solid var(--border); }
.filter-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.filter-chip { display: inline-flex; align-items: center; gap: var(--s-2); min-height: var(--ed-chip-h); padding: 0 var(--s-4); border: var(--ed-rule) solid transparent; border-radius: var(--r-pill); background: transparent; color: var(--gray-dark); font-size: var(--fs-small); font-weight: 600; cursor: pointer; transition: background-color var(--motion-button) var(--ease-standard), color var(--motion-button) var(--ease-standard), border-color var(--motion-button) var(--ease-standard); }
.filter-chip svg { color: var(--muted); flex: 0 0 auto; }
.filter-chip:hover { background: var(--gray-light); color: var(--charcoal); }
.filter-chip[aria-pressed="true"] { background: var(--red-primary); border-color: var(--red-primary); color: var(--white); }
.filter-chip[aria-pressed="true"] svg { color: currentColor; }
.filter-chip:focus-visible { outline: var(--focus-width) solid var(--red-bright); outline-offset: var(--focus-offset); }
.feed-search { position: relative; display: flex; align-items: center; width: 100%; }
.feed-search-icon { position: absolute; left: var(--s-4); display: grid; place-items: center; color: var(--muted); pointer-events: none; }
.feed-search input { width: 100%; min-height: var(--ed-chip-h); padding: 0 var(--s-4) 0 calc(var(--s-4) + 18px + var(--s-2)); border: var(--ed-rule) solid var(--border-strong); border-radius: var(--r-pill); background: var(--white); color: var(--charcoal); font: inherit; font-size: var(--fs-small); line-height: var(--lh-small); -webkit-appearance: none; appearance: none; }
.feed-search input::placeholder { color: var(--muted); }
.feed-search input:focus-visible { outline: var(--focus-width) solid var(--red-bright); outline-offset: var(--focus-offset); border-color: var(--red-primary); }
.feed-search input::-webkit-search-cancel-button { cursor: pointer; }
.feed-meta { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: var(--s-5); font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--muted); }
.feed-meta .tag { color: var(--muted); }
.feed-total { font-variant-numeric: tabular-nums; }

/* ---------- Shared small type ---------- */
.tag { display: inline-flex; align-items: center; font-size: var(--fs-micro); line-height: var(--lh-micro); font-weight: 700; letter-spacing: var(--ed-ls-tag); text-transform: uppercase; color: var(--red-primary); }
.meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-3); font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--muted); }
.meta-row time { color: var(--muted); }
.read-link { display: inline-flex; align-items: center; gap: var(--s-2); min-height: var(--tap-size); font-size: var(--fs-small); font-weight: 700; color: var(--red-primary); text-decoration: none; }
.read-link:hover { color: var(--red-dark); text-decoration: underline; text-underline-offset: var(--ed-underline-offset); }
.read-link svg { transition: transform var(--motion-button) var(--ease-out); }
.read-link:hover svg { transform: translateX(2px); }

/* ---------- Update feed: card grid ---------- */
.update-feed { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--ed-card-gap); margin-top: var(--s-5); transition: opacity var(--ed-crossfade) var(--ease-standard); }
.update-feed.is-fading { opacity: 0; }

/* Card: natural photo · metadata · byline · title · excerpt · cause tag · footer */
.update-card { display: flex; flex-direction: column; min-width: 0; border: var(--ed-rule) solid var(--border); border-radius: var(--r-card); background: var(--white); overflow: hidden; }
.public-site .update-card { transition: border-color var(--motion-feed) var(--ease-standard), box-shadow var(--motion-feed) var(--ease-out); }
.update-card.is-brand { background: var(--ed-lockup-bg); border-color: transparent; }
.update-card-cover { position: relative; display: block; aspect-ratio: var(--ed-ratio-photo); overflow: hidden; background: var(--gray-light); text-decoration: none; }
.update-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.update-card-lockup { display: grid; place-items: center; align-content: center; gap: var(--s-3); width: 100%; height: 100%; padding: var(--s-6); background: var(--ed-lockup-bg); color: var(--ed-note-ink); text-align: center; }
.update-card-lockup img { width: var(--ed-lockup-mark); height: var(--ed-lockup-mark); }
.update-card-lockup-text { font-size: var(--fs-small); line-height: var(--lh-small); font-weight: 600; font-style: italic; }
.public-site .update-card-chip.card-chip { position: absolute; left: 12px; top: 12px; padding: 5px 10px; border-radius: 999px; background: #fff; display: inline-flex; align-items: center; gap: 4px; text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 12px; line-height: 1.5; }
.update-card-count { position: absolute; right: var(--s-3); bottom: var(--s-3); display: inline-flex; align-items: center; gap: var(--s-1); padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); background: var(--ed-count-bg); color: var(--white); font-size: var(--fs-micro); line-height: var(--lh-micro); font-weight: 600; }
.update-card-body { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; padding: var(--ed-card-pad); }

.update-card-byline, .card-byline { display: flex; align-items: center; gap: var(--s-2); min-width: 0; font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--muted); }
.update-card-byline .byline-avatar { display: grid; place-items: center; flex: 0 0 auto; width: var(--ed-avatar); height: var(--ed-avatar); border-radius: var(--r-pill); overflow: hidden; background: var(--white); }
.update-card-byline .byline-avatar img { width: 100%; height: 100%; object-fit: contain; }
.update-card-byline .byline-name { color: var(--charcoal); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.update-card-byline .byline-check { display: inline-flex; flex: 0 0 auto; color: var(--red-primary); }
.update-card-byline .byline-when { margin-left: auto; flex: 0 0 auto; font-size: var(--fs-micro); line-height: var(--lh-micro); letter-spacing: var(--ed-ls-role); text-transform: uppercase; color: var(--muted); font-variant-numeric: tabular-nums; }
.update-card-title { margin-top: var(--s-3); font-size: var(--ed-fs-title); line-height: var(--ed-lh-title); font-weight: 800; letter-spacing: var(--ls-h2); color: var(--charcoal); }
.update-card-title a { color: inherit; text-decoration: none; }
.update-card-title a:hover { color: var(--red-primary); }
.update-card-excerpt { margin-top: var(--s-2); color: var(--gray-dark); font-size: var(--fs-story); line-height: var(--lh-story); display: -webkit-box; -webkit-line-clamp: var(--ed-excerpt-lines); -webkit-box-orient: vertical; overflow: hidden; }
.update-card-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.cause-tag { display: inline-flex; align-items: center; min-height: 28px; padding: 0 var(--s-3); border-radius: var(--r-pill); background: var(--gray-light); color: var(--gray-dark); font-size: var(--fs-micro); line-height: var(--lh-micro); font-weight: 600; text-decoration: none; }
a.cause-tag:hover { background: var(--tint-soft); color: var(--red-dark); }
.update-card-divider { height: var(--ed-rule); margin-top: auto; padding-top: var(--s-5); border-bottom: var(--ed-rule) solid var(--border); }
.update-card.is-brand .update-card-divider { border-color: rgba(23, 26, 29, .1); }
.update-card-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: var(--s-2); }
.update-card-actions { display: flex; align-items: center; gap: var(--s-1); }
.icon-btn { display: inline-grid; place-items: center; width: var(--ed-icon-btn); height: var(--ed-icon-btn); padding: 0; border: 0; border-radius: var(--r-pill); background: transparent; color: var(--muted); cursor: pointer; transition: background-color var(--motion-button) var(--ease-standard), color var(--motion-button) var(--ease-standard); }
.icon-btn:hover { background: var(--gray-light); color: var(--charcoal); }
.icon-btn:focus-visible { outline: var(--focus-width) solid var(--red-bright); outline-offset: 0; }
.icon-btn[aria-pressed="true"] { color: var(--red-primary); }
.icon-btn[aria-pressed="true"] svg { fill: currentColor; }
.icon-btn:disabled { cursor: default; opacity: var(--ed-disabled-opacity); }
.icon-btn-feedback { font-size: var(--fs-micro); line-height: var(--lh-micro); color: var(--muted); max-width: 16ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.icon-btn-feedback:empty { display: none; }

/* ---------- Feed status, load more, states ---------- */
.feed-foot { display: grid; justify-items: center; gap: var(--s-3); margin-top: var(--s-8); }
.feed-count { font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--muted); font-variant-numeric: tabular-nums; }
.feed-state { margin-top: var(--s-6); padding: var(--s-8) var(--s-6); border: var(--ed-rule) dashed var(--border-strong); border-radius: var(--r-card); text-align: center; }
.feed-state h1, .feed-state h2, .feed-state h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); font-weight: 700; }
.feed-state p { margin: var(--s-2) auto 0; max-width: 44ch; color: var(--muted); font-size: var(--fs-small); line-height: var(--lh-small); }
.feed-state .btn { margin-top: var(--s-4); }
.feed-state-icon { width: var(--ed-state-icon); height: var(--ed-state-icon); margin: 0 auto var(--s-3); border-radius: var(--r-pill); background: var(--tint-soft); color: var(--red-primary); display: grid; place-items: center; }

/* ---------- Skeletons (same footprint as a card) ---------- */
.update-skeleton { display: flex; flex-direction: column; border: var(--ed-rule) solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.update-skeleton .skeleton-photo { aspect-ratio: var(--ed-ratio-photo); border-radius: 0; }
.update-skeleton .skeleton-lines { padding: var(--ed-card-pad); }
.skeleton-line { height: var(--ed-skeleton-line-h); }
.skeleton-line + .skeleton-line { margin-top: var(--s-3); }
.skeleton-line.is-short { width: var(--ed-skeleton-short); }
.skeleton-line.is-title { height: var(--s-6); width: var(--ed-skeleton-title); }
.skeleton-lines { display: grid; align-content: start; }

/* ---------- Rail: note card ---------- */
.note-card { position: relative; padding: 28px; border-radius: 16px; background: #f7f3eb; color: var(--ed-note-ink); }
.note-eyebrow { color: var(--ed-note-ink); opacity: .75; }
.note-card h2 { margin-top: var(--s-3); font-size: var(--ed-fs-note); line-height: var(--ed-lh-note); font-weight: 800; letter-spacing: var(--ls-h2); color: var(--ed-note-ink); }
.note-card p { margin-top: var(--s-3); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--ed-note-ink); }

/* ---------- Rail: current missions (48px thumb rows) ---------- */
.aside-card { padding: var(--s-5); border: var(--ed-rule) solid var(--border); border-radius: var(--r-card); background: var(--white); }
.aside-card h2 { display: flex; align-items: center; gap: var(--s-2); font-size: var(--fs-h3); line-height: var(--lh-h3); font-weight: 700; }
.aside-card h2 svg { color: var(--red-primary); flex: 0 0 auto; }
.aside-card p { margin-top: var(--s-1); color: var(--muted); font-size: var(--fs-xs); line-height: var(--lh-xs); }
.missions-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.missions-count { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; min-height: 24px; padding: 0 var(--s-2); border-radius: var(--r-pill); background: var(--tint-soft); color: var(--red-dark); font-size: var(--fs-micro); line-height: var(--lh-micro); font-weight: 700; font-variant-numeric: tabular-nums; }
.mission-rows { display: grid; margin-top: var(--s-3); }
.mission-row { display: grid; grid-template-columns: var(--ed-thumb) minmax(0, 1fr) auto; align-items: center; gap: var(--s-3); min-height: var(--tap-size); padding: var(--s-3) 0; border-bottom: var(--ed-rule) solid var(--border-light); color: var(--charcoal); text-decoration: none; }
.mission-row:last-child { border-bottom: 0; }
.mission-thumb { display: block; width: var(--ed-thumb); height: var(--ed-thumb); border-radius: var(--r-field); overflow: hidden; background: var(--gray-light); }
.mission-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.mission-copy { display: grid; gap: 2px; min-width: 0; }
.mission-title { font-size: var(--fs-small); line-height: var(--lh-small); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mission-meta { font-size: var(--fs-micro); line-height: var(--lh-micro); color: var(--red-primary); font-weight: 600; }
.mission-arrow { display: inline-grid; place-items: center; color: var(--muted); transition: color var(--motion-button) var(--ease-standard), transform var(--motion-button) var(--ease-out); }
.mission-row:hover .mission-title { color: var(--red-primary); }
.mission-row:hover .mission-arrow { color: var(--red-primary); transform: translate(1px, -1px); }
.mission-row:focus-visible { outline: var(--focus-width) solid var(--red-bright); outline-offset: var(--focus-offset); border-radius: var(--r-field); }
.mission-row.is-skeleton { background: transparent; color: transparent; }
.mission-row.is-skeleton::after { display: none; }
.mission-row.is-skeleton .mission-title { height: var(--ed-skeleton-line-h); width: 70%; }
.mission-row.is-skeleton .mission-meta { height: 10px; width: 40%; }
.mission-skeletons { display: grid; }
.mission-empty { margin-top: var(--s-3) !important; }
.missions-explore { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); margin-top: var(--s-3); padding-top: var(--s-4); min-height: var(--tap-size); border-top: var(--ed-rule) solid var(--border); font-size: var(--fs-small); font-weight: 700; color: var(--red-primary); text-decoration: none; }
.missions-explore:hover { color: var(--red-dark); text-decoration: underline; text-underline-offset: var(--ed-underline-offset); }

/* ---------- Rail: follow along (only when the organization supplies Instagram) ---------- */
.aside-follow { display: grid; justify-items: center; gap: var(--s-2); padding: var(--s-6) var(--s-4); text-align: center; }
.aside-follow-mark { color: var(--red-primary); }
.aside-follow-title { font-size: var(--ed-fs-note); line-height: var(--ed-lh-note); font-weight: 600; font-style: italic; color: var(--charcoal); }
.aside-social { display: inline-flex; align-items: center; gap: var(--s-1); min-height: var(--tap-size); font-size: var(--fs-small); font-weight: 600; color: var(--charcoal); text-decoration: underline; text-underline-offset: var(--ed-underline-offset); }
.aside-social:hover { color: var(--red-primary); }

/* ---------- Help band (full width below the columns) ---------- */
.help-band { display: grid; gap: var(--s-5); align-items: center; margin: 0 0 var(--s-16); padding: var(--ed-band-pad); border-radius: var(--r-card); background: var(--ed-band-bg); }
.help-band-copy h2 { font-size: clamp(var(--ed-h2-min), var(--ed-h2-fluid), var(--fs-h2)); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); font-weight: 800; }
.help-band-copy p { margin-top: var(--s-2); max-width: var(--ed-lede-max); color: var(--gray-dark); font-size: var(--fs-small); line-height: var(--lh-small); }
.help-band .btn { justify-self: start; }
[data-page="update"] .help-band, [data-page="news-article"] .help-band { margin-top: var(--s-12); }

/* ---------- Update detail ---------- */
.article-head { padding: var(--s-6) 0 var(--s-6); }
.public-site .article-head h1 { margin-top: 20px; font-size: 48px; line-height: 1.12; letter-spacing: -.04em; max-width: none; }
.article-head .lede { max-width: var(--ed-lede-max); }
.update-cause { margin-top: var(--s-4); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--muted); }
.update-cause span { color: var(--charcoal); font-weight: 600; }
.article-campaign { display: inline-flex; align-items: center; gap: var(--s-2); margin-top: var(--s-3); padding: var(--s-2) var(--s-4); border: var(--ed-rule) solid var(--border); border-radius: var(--r-pill); font-size: var(--fs-small); font-weight: 600; color: var(--charcoal); text-decoration: none; }
.article-campaign:hover { border-color: var(--red-primary); color: var(--red-primary); }
.update-gallery { width: 100%; max-width: 896px; margin-inline: 0; }
.update-gallery .carousel { border-radius: 16px; }
.gallery-caption { min-height: var(--lh-small); margin-top: var(--s-3); padding-inline: var(--gutter); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--muted); }
.article-body { max-width: 896px; margin-top: 32px; font-size: 17px; line-height: 1.85; color: var(--gray-dark); }
.article-body > * + * { margin-top: var(--s-4); }
.article-body h2 { margin-top: var(--s-8); font-size: var(--ed-fs-title); line-height: var(--ed-lh-title); color: var(--charcoal); }
.article-body h3 { margin-top: var(--s-6); font-size: var(--fs-h3); line-height: var(--lh-h3); color: var(--charcoal); }
.article-body ul, .article-body ol { padding-left: var(--s-5); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li + li { margin-top: var(--s-2); }
.article-body img { max-width: 100%; height: auto; border-radius: var(--r-image); }
.article-body blockquote { margin: 0; padding-left: var(--s-4); border-left: var(--ed-quote-rule) solid var(--tint); color: var(--muted); }
.article-nav { display: grid; gap: var(--s-3); margin-top: var(--s-10); padding-top: var(--s-6); border-top: var(--ed-rule) solid var(--border); }
.article-nav a { display: grid; gap: var(--s-1); padding: var(--s-4); border: var(--ed-rule) solid var(--border); border-radius: var(--r-field); color: var(--charcoal); text-decoration: none; }
.article-nav a:hover { border-color: var(--red-primary); color: var(--red-primary); }
.article-nav .tag { color: var(--muted); }
.article-nav .is-next { text-align: right; }
.article-nav-label { font-size: var(--fs-small); line-height: var(--lh-small); font-weight: 600; }
.article-source { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2); margin-top: var(--s-4); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--muted); }
.article-source a { color: var(--charcoal); font-weight: 600; text-decoration: underline; text-underline-offset: var(--ed-underline-offset-sm); }
.article-source a:hover { color: var(--red-primary); }
.article-figure { margin: 32px 0 0; max-width: 896px; }
.article-figure img { width: 100%; height: auto; display: block; border-radius: var(--r-image); background: var(--gray-light); }
.article-figure figcaption { margin-top: var(--s-2); font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--muted); }
.article-summary { max-width: 896px; margin-top: 24px; font-size: var(--ed-fs-summary); line-height: var(--ed-lh-summary); font-weight: 500; color: var(--charcoal); }
.article-disclosure { max-width: var(--prose); }

/* ---------- News ---------- */
.news-featured { display: grid; gap: 0; margin: 28px 0 48px; background: #f7f3eb; border-radius: 18px; overflow: hidden; }
.news-featured-photo { display: block; height: 100%; min-height: 320px; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-light); }
.news-featured-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-featured h2 { margin-top: var(--s-2); font-size: clamp(var(--ed-h2-min), var(--ed-h2-fluid), var(--fs-h2)); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
.news-featured h2 a, .news-item h3 a { color: var(--charcoal); text-decoration: none; }
.news-featured h2 a:hover, .news-item h3 a:hover { color: var(--red-primary); }
.news-featured p, .news-item p { margin-top: var(--s-2); color: var(--gray-dark); font-size: var(--fs-story); line-height: var(--lh-story); display: -webkit-box; -webkit-line-clamp: var(--ed-clamp-lines); -webkit-box-orient: vertical; overflow: hidden; }
.news-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 40px 32px; }
.news-item { display: flex; flex-direction: column; gap: 18px; padding: 0; }
.news-featured-body { padding: 36px; align-self: center; }
.news-item-photo { display: block; aspect-ratio: var(--ed-ratio-featured); overflow: hidden; border-radius: var(--r-image); background: var(--gray-light); }
.news-item-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-item-body { min-width: 0; }
.news-item h3 { margin-top: var(--s-2); font-size: var(--ed-fs-title); line-height: var(--ed-lh-title); font-weight: 700; }
.news-list .update-skeleton { margin-top: var(--s-6); }
.pager { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); margin-top: var(--s-8); padding-top: var(--s-6); border-top: var(--ed-rule) solid var(--border); }
.pager-links { display: flex; gap: var(--s-2); }
.pager .btn[aria-disabled="true"] { opacity: var(--ed-disabled-opacity); pointer-events: none; }

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .update-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feed-toolbar { grid-template-columns: minmax(0, 1fr) minmax(0, var(--ed-search-w)); align-items: center; }
  .article-nav { grid-template-columns: 1fr 1fr; }
  .article-nav a.is-next { grid-column: 2; }
  .news-featured { grid-template-columns: repeat(2,minmax(0,1fr)); align-items: stretch; }
  .help-band { grid-template-columns: auto minmax(0, 1fr) auto; }
  .help-band .btn { justify-self: end; }
}

@media (min-width: 769px) {
  .update-gallery { margin-inline: 0; }
  .update-gallery .carousel { border-radius: var(--r-image); }
  .gallery-caption { padding-inline: 0; }
}

@media (min-width: 1024px) {
  .public-site[data-page="updates"] .editorial-layout { grid-template-columns: minmax(0, 1fr) 320px; column-gap: 40px; }
  .public-site[data-page="updates"] .editorial-aside { position: sticky; top: 24px; }
  .help-band { padding: var(--ed-band-pad) var(--s-10); }
}

@media (prefers-reduced-motion: reduce) {
  .update-feed, .update-feed.is-fading { opacity: 1; transition: none; }
  .update-card, .icon-btn, .filter-chip, .read-link svg, .mission-arrow { transition: none; }
  .read-link:hover svg, .mission-row:hover .mission-arrow { transform: none; }
}

.public-site[data-page="updates"] .editorial-hero { background: #fff; padding: 48px 24px; }
.public-site[data-page="updates"] .hero-title { font-size: 48px; line-height: 1.1; }
.public-site[data-page="updates"] .hero-accent { font-family: Georgia, serif; font-style: italic; }
.public-site[data-page="news-article"] main.container, .public-site[data-page="update"] main.container { max-width: 944px; }
.public-site[data-page="news"] .editorial-aside .aside-card { background: #faf8f5; }
.public-site .article-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.public-site .update-dialog { position: fixed; inset: 0; margin: auto; width: min(944px, calc(100% - 32px)); max-height: calc(100dvh - 40px); border: 0; border-radius: 20px; padding: 28px 40px 48px; color: #171a1d; background: #fff; overscroll-behavior: contain; }
.public-site .update-dialog::backdrop { background: #171a1db3; }
.public-site .dialog-close { display: block; position: sticky; top: 0; margin-left: auto; z-index: 5; min-height: 44px; padding: 10px 18px; border: 1px solid #ded7d3; border-radius: 999px; background: #fff; font: inherit; font-size: 13px; cursor: pointer; }
.public-site .update-dialog .article-head h2 { font-size: 36px; margin: 18px 0; }
@media (max-width: 639px) {
  .public-site[data-page="updates"] .editorial-hero { padding: 32px 20px; }
  .public-site[data-page="updates"] .hero-title { font-size: 36px; }
  .public-site .article-head h1 { font-size: 36px; }
  .news-list { grid-template-columns: 1fr; }
  .news-featured-photo { min-height: 0; }
  .news-featured-body { padding: 24px; }
  .public-site .update-dialog { width: calc(100% - 16px); padding: 16px 20px 32px; max-height: calc(100dvh - 16px); }
  .public-site .update-dialog .article-head h2 { font-size: 28px; }
}

/* Reading photographs retain their natural frame; only the gallery uses a stable stage. */
.public-site .update-feed { align-items: start; }
.public-site .update-card-cover { aspect-ratio: auto; overflow: visible; }
.public-site .update-card-cover > img { display: block; width: 100%; height: auto; }
.public-site .update-card-photo-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.public-site .update-card-chip.card-chip, .public-site .update-card-count { position: static; padding: 0; background: transparent; color: var(--red-dark); }
.public-site .update-gallery .carousel { aspect-ratio: auto; height: auto; background: #faf7f1; }
.public-site .update-gallery .carousel::after { display: none; }
.public-site .update-gallery .carousel-track { height: min(72svh, 640px); aspect-ratio: auto; }
.public-site .update-gallery .carousel-slide { display: flex; align-items: center; justify-content: center; height: 100%; background: #faf7f1; }
.public-site .update-gallery .hero-photo { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.public-site .update-gallery .carousel-dots { position: static; background: #faf7f1; }
.public-site .update-gallery .carousel-dot::before { background: #b6a8a1; }
.public-site .update-gallery .carousel-dot[aria-selected="true"]::before { background: var(--red-dark); }
.public-site .update-gallery .carousel-arrow { width: 44px; height: 44px; }
.public-site .gallery-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.public-site .gallery-meta a { flex-shrink: 0; display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 639px) { .public-site .update-gallery .carousel-track { height: 60svh; } }

.public-site[data-page="news"] .editorial-hero { background: var(--band-bg); padding: 64px 0; }
.public-site[data-page="news"] .hero-band-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; align-items: start; }
.public-site[data-page="news"] .hero-band-copy > .eyebrow { grid-column: 1/-1; }
.public-site[data-page="news"] .hero-title { grid-row: 2/5; }
.public-site .news-featured.is-text-only { grid-template-columns: 1fr; border-radius: 18px; border: 1px solid var(--border); border-top: 4px solid var(--red-dark); background: var(--band-bg); }
.public-site .news-featured.is-text-only .news-featured-body { padding: 32px; max-width: 960px; }
.public-site .news-featured.is-text-only h2 { font-size: 32px; line-height: 1.2; max-width: none; }
.public-site .news-featured p, .public-site .news-item p { display: block; overflow: visible; line-height: 1.65; }
.public-site .news-list { grid-template-columns: 1fr 1fr; gap: 24px; }
.public-site .news-item, .public-site .news-item.is-text-only { display: flex; flex-direction: column; position: relative; gap: 20px; padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.public-site .news-item h3 { font-size: 24px; line-height: 1.3; display: block; overflow: visible; }
.public-site .news-item-photo { width: 100%; }
.public-site .news-featured .icon-box { margin-bottom: 20px; }
.public-site .news-source { color: #625c58; }
.public-site .news-source::before { content: "Source: "; }
.public-site .article-byline { margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--red-dark); }
.public-site[data-page="news-article"] .article-head h1 { font-size: 48px; line-height: 1.15; }
.public-site :is(.article-body, .article-summary, .article-disclosure) { max-width: 66ch; font-size: 16px; line-height: 1.65; }
.public-site .article-head { border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.public-site .article-head .tag { padding: 6px 12px; border-radius: 999px; background: #F7ECE8; color: var(--red-dark); }
.public-site .article-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.public-site .help-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: var(--band-bg); }
.public-site .help-band-copy { flex: 1; max-width: 66ch; }
.public-site .help-band-copy h2 { font-size: 28px; }
.public-site .note-card { background: var(--band-bg); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: none; transform: none; }
.public-site .note-card h2 { font-size: 22px; line-height: 1.3; font-style: normal; }
.public-site .moment-tips { display: grid; gap: 16px; margin-top: 20px; font-size: 14px; }
.public-site .moment-tips li { display: flex; align-items: center; gap: 12px; }
.public-site .aside-card { border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: none; }
.public-site .aside-card > .icon-box { margin-bottom: 16px; }
.public-site .aside-card > p { font-size: 14px; line-height: 1.65; margin-top: 12px; }
.public-site .update-card { border-radius: 18px; }
.public-site .update-card-excerpt { -webkit-line-clamp: 2; }
@media (min-width: 1024px) { .public-site[data-page="updates"] .editorial-layout { grid-template-columns: minmax(0,1fr) 272px; gap: 36px; } }
@media (max-width: 899px) { .public-site[data-page="updates"] .hero-band-inner { grid-template-columns: 1fr; } .public-site[data-page="updates"] .hero-band-photos { max-width: 580px; margin: auto; } }
@media (max-width: 639px) {
  .public-site[data-page="news"] .editorial-hero { padding: 40px 0; }
  .public-site[data-page="news"] .hero-band-copy { display: block; }
  .public-site .news-list { grid-template-columns: 1fr; }
  .public-site .news-featured.is-text-only .news-featured-body { padding: 28px 20px; }
  .public-site .news-featured.is-text-only h2 { font-size: 28px; }
  .public-site[data-page="news-article"] .article-head h1 { font-size: 36px; }
  .public-site .help-band { flex-direction: column; align-items: start; padding: 28px 20px; }
}
@media (hover: hover) and (pointer: fine) {
  .public-site .update-card:hover { border-color: #8F0D1859; box-shadow: 0 10px 28px #30251b12; }
}
.public-site .update-card:focus-within { border-color: var(--red-dark); }
.public-site[data-page="updates"] .hero-band-inner { position: relative; isolation: isolate; grid-template-columns: 5fr 7fr; background: #FAF7F1; border-radius: 28px; padding: 48px; }
.public-site[data-page="updates"] .hero-band-inner::before { content: ""; position: absolute; width: 88px; height: 24px; top: -10px; left: 48px; background: #F7ECE8; transform: rotate(-5deg); z-index: -1; }
.public-site[data-page="updates"] .hero-band-photos { position: relative; min-width: 0; }
.public-site[data-page="updates"] .hero-band-photos::after { content: ""; position: absolute; left: 8px; bottom: -16px; width: 96px; height: 30px; border-bottom: 2px solid var(--red-primary); border-radius: 0 0 40% 70%; }
@media (max-width:899px) {
  .public-site[data-page="updates"] .hero-band-inner { grid-template-columns: 1fr; }
  .public-site[data-page="updates"] .hero-band-photos { width: 100%; max-width: 580px; }
}
@media (max-width:639px) {
  .public-site[data-page="updates"] .hero-band-inner { padding: 24px; border-radius: 20px; }
}
