/* ============================================================
   Hope for Victims — shared stylesheet
   Palette: Navy #102A43 · Gold #C9A25A · Ivory #F8F6F1
            Sage #AAB5A1 · Body #334155
   Type:    Playfair Display (headings) · Inter (body)
   ============================================================ */

:root {
  --navy: #102A43;
  --gold: #C9A25A;
  --ivory: #F8F6F1;
  --sage: #AAB5A1;
  --body: #334155;
  --white: #FFFFFF;
  --sage-tint: #EEF0EA;
  --gold-soft: #E9DCC3;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header / Nav ---------- */

.site-header {
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--body);
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--navy); border-bottom-color: var(--gold); }

.nav-links a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover, .nav-cta:focus-visible { background: #1d3d5c; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(16,42,67,.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248, 246, 241, 0.92) 0%,
    rgba(248, 246, 241, 0.78) 34%,
    rgba(248, 246, 241, 0.25) 62%,
    rgba(248, 246, 241, 0) 85%
  );
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
  width: 100%;
}

.hero-content { max-width: 540px; animation: rise .9s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 26px;
  color: var(--body);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible { background: #1d3d5c; }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--navy); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover, .btn-gold:focus-visible { background: #b98f45; color: var(--white); }

.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover, .btn-light:focus-visible { background: var(--gold-soft); }

/* ---------- Hero announcement panel (permanent component) ---------- */

.hero-announce {
  margin-top: 34px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 162, 90, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.10);
  text-decoration: none;
  display: block;
  transition: transform .2s, box-shadow .2s;
}

.hero-announce:hover,
.hero-announce:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.14);
}

.hero-announce .eyebrow { margin-bottom: 8px; }

.hero-announce h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-announce .announce-copy {
  font-size: 0.98rem;
  color: var(--body);
  margin-bottom: 6px;
}

.hero-announce .announce-date {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.hero-announce .announce-date .dot { color: var(--gold); }

.hero-announce .announce-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}

.hero-announce .announce-cta::after { content: "→"; color: var(--gold); }

/* ---------- Shared section rhythm ---------- */

.section { padding: 88px 0; }
.section-tint { background: var(--sage-tint); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(248,246,241,.85); }

.eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 16px; }

.lede { font-size: 1.12rem; max-width: 640px; }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto;
  max-width: 220px;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.divider .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: block;
}

.card:hover, .card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16,42,67,.12);
}

.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

.card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.card .card-link::after { content: " →"; color: var(--gold); }

.disclaimer {
  margin-top: 34px;
  padding: 18px 24px;
  background: var(--white);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Feature band (Memorial Bricks) ---------- */

.feature-band { text-align: center; }

.feature-band .eyebrow { color: var(--gold); }

.feature-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

.feature-band p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.12rem;
}

.feature-date {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: block;
}

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

.link-list { list-style: none; margin-top: 24px; }
.link-list li { margin-bottom: 12px; }
.link-list a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.link-list a:hover { color: var(--gold); }

/* ---------- Quotes ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 18px;
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--body);
  border-top: 1px solid var(--gold-soft);
  padding-top: 14px;
}

.quote-card cite strong { color: var(--navy); }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  max-width: 720px;
  margin: 40px auto 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field .hint {
  font-weight: 400;
  color: var(--sage);
  font-size: 0.85rem;
}

.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--body);
  padding: 12px 14px;
  border: 1px solid rgba(16,42,67,.2);
  border-radius: 8px;
  background: var(--ivory);
  transition: border-color .2s, box-shadow .2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,90,.2);
}

.char-count { font-size: 0.8rem; color: var(--sage); margin-top: 4px; text-align: right; }

fieldset {
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 24px;
  grid-column: 1 / -1;
}

fieldset legend {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.1rem;
  padding: 0 10px;
}

fieldset .form-field + .form-field { margin-top: 16px; }

.form-actions { margin-top: 28px; text-align: center; }
.form-actions .btn { width: 100%; }

.form-note {
  font-size: 0.9rem;
  color: var(--body);
  text-align: center;
  margin-top: 14px;
}

/* ---------- Payment step ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 40px auto 0;
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  position: relative;
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(248,246,241,.85);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(248,246,241,.15);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer h3 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(248,246,241,.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(248,246,241,.6);
}

address { font-style: normal; line-height: 1.8; }

/* ---------- Content pages ---------- */

.page-hero {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(248,246,241,.85); max-width: 620px; font-size: 1.1rem; }

.prose { max-width: 720px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; font-size: 1.2rem; }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.board-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--sage);
}

.board-card strong { color: var(--navy); font-family: var(--serif); font-size: 1.05rem; display: block; }
.board-card span { font-size: 0.9rem; }

.resource-list { list-style: none; margin-top: 20px; }
.resource-list li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.resource-list a {
  display: block;
  padding: 20px 24px;
  text-decoration: none;
  font-weight: 600;
}
.resource-list a:hover { color: var(--gold); }
.resource-list a span { display: block; font-weight: 400; font-size: .92rem; color: var(--body); margin-top: 4px; }

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  border-top: 3px solid var(--gold);
  max-width: 560px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .card-grid, .quote-grid, .board-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(16,42,67,.1);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }

  .hero { min-height: auto; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(248,246,241,.92) 0%,
      rgba(248,246,241,.78) 55%,
      rgba(248,246,241,.35) 100%
    );
  }
  .hero-inner { padding: 56px 24px; }

  .hero-announce {
    margin-top: 24px;
    padding: 18px 20px;
    max-width: 100%;
  }
  .hero-announce h2 { font-size: 1.2rem; }
  .hero-announce .announce-copy { font-size: 0.94rem; }
  .hero-announce .announce-date { margin-bottom: 12px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
  .card, .card:hover { transition: none; transform: none; }
}

/* Our Stories expanded story experience */
.story-grid { align-items: stretch; }
.story-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.story-card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.story-open { appearance: none; border: 0; background: transparent; padding: 0; font: inherit; text-align: left; cursor: pointer; margin-top: auto; }
.story-coming { color: #9b7635; font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-top: auto; }
.story-video-feature { align-items: center; }
.story-sheet { width: min(860px, calc(100% - 28px)); max-height: 90vh; padding: 0; border: 0; border-radius: 16px; color: #334155; background: #f8f6f1; box-shadow: 0 24px 80px rgba(12,35,53,.32); }
.story-sheet::backdrop { background: rgba(8,27,42,.72); backdrop-filter: blur(3px); }
.story-sheet-inner { position: relative; overflow-y: auto; max-height: 90vh; }
.story-close { position: sticky; top: 14px; float: right; z-index: 2; margin: 14px 14px -58px 0; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(15,43,64,.16); background: rgba(255,255,255,.94); color: #102a43; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.story-sheet-hero { display: grid; grid-template-columns: minmax(220px,.75fr) 1.25fr; gap: 34px; align-items: center; padding: 38px; background: #fff; }
.story-sheet-hero img { width: 100%; border-radius: 10px; }
.story-sheet-copy { padding: 38px; }
.story-sheet-copy h3 { margin-top: 28px; }
.story-quote { margin: 32px 0; padding: 24px 28px; border-left: 3px solid #c9a25a; background: rgba(201,162,90,.08); font-family: "Playfair Display", serif; font-size: 1.18rem; color: #102a43; }
.story-links { margin-top: 28px; }
@media (max-width: 680px) {
  .story-sheet { width: calc(100% - 16px); max-height: 94vh; }
  .story-sheet-inner { max-height: 94vh; }
  .story-sheet-hero { grid-template-columns: 1fr; padding: 24px; gap: 22px; }
  .story-sheet-hero img { max-width: 300px; }
  .story-sheet-copy { padding: 24px; }
}


/* Inline SproutVideo player */
.video-embed-wrap {
  width: 100%;
  max-width: 760px;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
}
.video-embed-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 12px;
}

/* Center story sheet reliably on desktop and mobile */
.story-sheet {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.story-sheet[open] {
  display: block;
}

@media (max-width: 680px) {
  .story-sheet {
    width: calc(100% - 16px);
    max-height: 94vh;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

/* On-page video viewer */
.video-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(900px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #081b2a;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.video-dialog[open] { display: block; }
.video-dialog::backdrop { background: rgba(8,27,42,.82); backdrop-filter: blur(3px); }
.video-dialog-inner { position: relative; padding: 54px 18px 18px; }
.video-dialog .video-embed-wrap { max-width: none; margin: 0; }
.video-close {
  position: absolute; top: 10px; right: 12px; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1); color: white; font-size: 1.55rem; cursor: pointer;
}
@media(max-width:680px){
  .video-dialog { width: calc(100% - 16px); }
  .video-dialog-inner { padding: 50px 10px 10px; }
}
.video-open{margin-top:26px}.book-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:42px;align-items:start}.book-box{background:#fff;border:1px solid rgba(15,43,64,.12);border-radius:14px;padding:30px}.book-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}@media(max-width:760px){.video-open{margin-top:24px}.book-grid{grid-template-columns:1fr}}
/* v4.4 Emma portrait refinement */
.story-card.emma-card .story-card-img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 680px) {
  .story-card.emma-card .story-card-img {
    aspect-ratio: 4 / 5;
    object-position: center top;
  }
}

/* v4.4 Book promo */
.book-promo {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid rgba(15,43,64,.12);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.book-promo h3 { margin: 0 0 8px; }
.book-promo p { margin: 0; }
@media (max-width: 720px) {
  .book-promo { grid-template-columns: 1fr; }
}

/* v4.4 Book page */
.book-page-grid {
  display: grid;
  grid-template-columns: minmax(280px,.9fr) 1.1fr;
  gap: 48px;
  align-items: start;
}
.book-page-photo img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.book-order-box {
  margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(15,43,64,.12);
  border-radius: 14px;
  padding: 28px;
}
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 780px) {
  .book-page-grid { grid-template-columns: 1fr; gap: 28px; }
  .book-page-photo img { max-width: 520px; margin: 0 auto; }
}

/* v4.5 Hero announcement switcher */
.hero-announce-switcher { display:block; }
.hero-announce-tabs { display:flex; gap:8px; margin-bottom:14px; flex-wrap:wrap; }
.hero-announce-tab { appearance:none; border:1px solid rgba(16,42,67,.18); background:rgba(255,255,255,.78); color:#102a43; border-radius:999px; padding:6px 11px; font:inherit; font-size:.74rem; font-weight:700; cursor:pointer; }
.hero-announce-tab.is-active { background:#102a43; color:#fff; border-color:#102a43; }
.hero-announce-panel[hidden] { display:none !important; }
.hero-announce-panel .announce-cta { display:inline-flex; margin-top:12px; }

/* v4.6 Stabilize hero announcement geometry */
.hero-announce-switcher {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.hero-announce-tabs {
  flex: 0 0 auto;
}
.hero-announce-panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-announce-panel[hidden] {
  display: none !important;
}
@media (max-width: 680px) {
  .hero-announce-switcher {
    min-height: 360px;
  }
}

/* v4.6 Remembrance page refinement */
.remembrance-hero {
  text-align: left;
}
.remembrance-hero .container {
  max-width: 900px;
}
.remembrance-kicker {
  margin-bottom: 10px;
}
.remembrance-meta {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 18px;
  align-items: center;
  font-weight: 600;
}
.remembrance-invite {
  margin-top: 24px;
  max-width: 760px;
}
.remembrance-photo img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
@media (max-width: 720px) {
  .remembrance-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* v4.7 Remembrance event detail contrast */
.remembrance-hero .remembrance-meta {
  color: #ffffff;
  font-weight: 700;
}
.remembrance-hero .remembrance-meta span {
  color: #ffffff;
}
.remembrance-hero .lede {
  color: rgba(255,255,255,.90);
}
