/* ============================================================
   Brahmakshatriya Hitechchhu - Unified Stylesheet
   Design tokens: navy + gold on cream, Playfair + Inter
============================================================ */

:root {
  --navy:        #1a2a4f;
  --navy-deep:   #0f1c3a;
  --gold:        #c9a55a;
  --gold-soft:   #e6cf94;
  --cream:       #faf7f0;
  --paper:       #ffffff;
  --ink:         #1f2533;
  --muted:       #6b7280;
  --line:        #ece7da;
  --shadow-sm:   0 1px 2px rgba(15, 28, 58, 0.06);
  --shadow-md:   0 6px 18px rgba(15, 28, 58, 0.08);
  --shadow-lg:   0 14px 40px rgba(15, 28, 58, 0.14);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --serif:       'Playfair Display', 'Georgia', serif;
  --sans:        'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container:   1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); margin: 0 0 0.6em; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

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

/* Skip-to-content link - invisible until focused via Tab key.
   Lets keyboard / screen-reader users jump past the nav. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--navy);
  color: var(--gold);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); }

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;          /* slightly smaller so it fits next to long nav */
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.2px;
  flex-shrink: 0;              /* keep brand intact when nav grows */
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 2px var(--gold-soft);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;          /* don't wrap "Brahmakshatriya Hitechchhu" */
}
.brand-text small { font-size: 0.68rem; color: var(--muted); font-family: var(--sans); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav a {
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  white-space: nowrap;          /* never wrap "In Memoriam" mid-link */
}
.nav a:hover { background: var(--cream); color: var(--navy); }
.nav a.active {
  color: var(--navy);
  background: var(--cream);
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Switch to hamburger earlier - 10 nav items don't fit comfortably
   below ~1080px even with reduced padding. */
@media (max-width: 1080px) {
  .site-header .container { position: relative; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    display: none;
    z-index: 50;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 0.95rem; }
  .nav a.active::after { display: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;   /* WCAG/iOS minimum touch target */
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Layout / sections ---------- */
main { flex: 1; padding-bottom: 64px; }

.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head h2,
.section-head .section-h1 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);   /* match the old h2 size for visual continuity */
}
.section-head p { color: var(--muted); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Hero (Home) ---------- */
.hero {
  background:
    radial-gradient(circle at top right, rgba(201, 165, 90, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-cover {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-cover .cover-frame {
  position: relative;
  width: clamp(200px, 36vw, 280px);
  aspect-ratio: 3 / 4;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.hero-cover .cover-frame:hover { transform: rotate(0deg) scale(1.02); }
.hero-cover .cover-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.hero-cover .cover-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}

/* ---------- Stats band ("By the numbers") ---------- */
.stats-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 165, 90, 0.15), transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(201, 165, 90, 0.12), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-section .section-head h2       { color: #fff; }
.stats-section .section-head .eyebrow { color: var(--gold-soft); }
.stats-section .section-head p        { color: rgba(255, 255, 255, 0.82); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.stat-tile:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 165, 90, 0.16);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 18px;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-plus {
  color: var(--gold-soft);
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 600;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 720px) {
  .stats-grid { gap: 14px; }
  .stat-tile  { padding: 24px 16px 22px; }
  .stat-icon  { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 12px; }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.08em; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- "From the Editor" excerpt (home page) ---------- */
.editor-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 165, 90, 0.10), transparent 45%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.editor-grid {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.editor-grid::before {
  content: '“';
  position: absolute;
  top: -32px; right: 24px;
  font-family: var(--serif);
  font-size: 12rem;
  color: rgba(201, 165, 90, 0.16);
  line-height: 1;
  pointer-events: none;
}
.editor-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
}
.editor-body { position: relative; z-index: 1; }
.editor-headline {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 8px 0 14px;
  font-weight: 700;
  font-style: italic;
}
.editor-excerpt {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 620px;
}
.editor-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.editor-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-soft);
  flex-shrink: 0;
}
.editor-photo img { width: 100%; height: 100%; object-fit: cover; }
.editor-name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.1;
}
.editor-name-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.9rem;
}
.editor-role {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.editor-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .editor-grid { grid-template-columns: 1fr; padding: 28px 22px; gap: 18px; }
  .editor-mark { width: 56px; height: 56px; font-size: 1.2rem; }
  .editor-grid::before { font-size: 8rem; top: -20px; right: 16px; }
}

/* ---------- Editions archive ---------- */
.year-block { margin-bottom: 40px; }
.year-block .year-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.year-block .year-head h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin: 0;
}
.year-block .year-head .count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.scroller {
  position: relative;
}
.scroller-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.scroller-track::-webkit-scrollbar { display: none; }
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  opacity: 0.92;
  transition: background 0.2s, transform 0.2s;
}
.scroll-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.06); }
.scroll-btn.left  { left: -16px; }
.scroll-btn.right { right: -16px; }

/* The whole edition card is an <a> - clicking anywhere opens the edition.
   We remove the underline, add a clear hover lift, gold border + cover zoom,
   and a visible focus ring for keyboard users. */
.edition-card {
  flex: 0 0 200px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.edition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
/* Keyboard focus ring (accessibility) */
.edition-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Subtle zoom on the cover image when the card is hovered */
.edition-card .cover img {
  transition: transform 0.5s ease;
}
.edition-card:hover .cover img { transform: scale(1.04); }

/* Replace the old gold button with a subtle "Read edition >" text cue.
   Less visual noise now that the entire card is the link. */
.edition-card-cta {
  align-self: center;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;          /* parent <a> handles the click */
}
.edition-card-cta .fa-book-open { font-size: 0.82em; }
.edition-card-arrow {
  font-size: 0.7em;
  transition: transform 0.25s ease;
}
.edition-card:hover .edition-card-arrow { transform: translateX(4px); }

/* Hero cover frame is also an anchor - keep its tilt/badge styling intact
   and add the same focus ring for keyboard users. */
.hero-cover .cover-frame {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.hero-cover .cover-frame:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
  border-radius: var(--radius);
}
.edition-card .cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy);
}
.edition-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.edition-card .title { font-family: var(--serif); font-weight: 700; color: var(--navy); margin: 0; font-size: 1.05rem; }
.edition-card .date { font-size: 0.8rem; color: var(--muted); margin: 0; }
.edition-card .btn { padding: 8px 16px; font-size: 0.82rem; align-self: center; margin-top: 4px; }
/* Continuous edition number - small gold pill under the title */
.edition-card .edition-no {
  display: inline-block;
  align-self: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(201, 165, 90, 0.18);
  border: 1px solid rgba(201, 165, 90, 0.35);
  padding: 2px 9px;
  border-radius: 999px;
  margin-top: -4px;
}

/* Archive filter bar (year + month) */
.archive-filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.archive-filter-bar select {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.archive-filter-bar select:focus { border-color: var(--gold); background: #fff; }
.archive-filter-bar .btn { padding: 10px 18px; font-size: 0.85rem; }

@media (max-width: 720px) {
  .archive-filter-bar { grid-template-columns: 1fr; }
  .archive-filter-bar .btn { justify-self: stretch; justify-content: center; }
}

/* Flat archive grid (used when a filter is active) */
.archive-grid-block { margin-bottom: 40px; }
.archive-grid-block .year-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.archive-grid-block .year-head h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin: 0;
}
.archive-grid-block .year-head .count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201, 165, 90, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.info-card h3 { margin-bottom: 8px; }
.info-card ul { padding-left: 20px; margin: 0; color: var(--muted); }
.info-card ul li { margin-bottom: 6px; }
.info-card p { color: var(--muted); margin: 0; }

/* ---------- Trustees ---------- */
.trustee-group { margin-bottom: 48px; }
.designation-title {
  font-family: var(--serif);
  text-align: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.designation-title .designation-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0;
}
.designation-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.trustee-grid {
  /* Flex so that single-trustee groups (President, Editor, Co-Editor)
     centre cleanly instead of left-aligning into a fr-track. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.trustee-card {
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 240px;
}
.trustee-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trustee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trustee-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream);
  border: 3px solid var(--gold-soft);
  box-shadow: 0 6px 14px rgba(15, 28, 58, 0.1);
}
.trustee-photo img { width: 100%; height: 100%; object-fit: cover; }
.trustee-card h4 { font-family: var(--serif); margin: 0 0 2px; color: var(--navy); font-size: 1.15rem; }
.trustee-card .trustee-name-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 6px;
  opacity: 0.78;
}
.trustee-card .role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trustee-card .role .role-sep { opacity: 0.6; }
.trustee-card .role .role-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;          /* slightly larger so Gujarati glyphs read clearly */
  letter-spacing: 0;            /* Gujarati doesn't want letter-spacing */
  text-transform: none;
  opacity: 0.92;
}
.trustee-card .bio { color: var(--muted); font-size: 0.9rem; min-height: 42px; }

.trustee-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.trustee-actions a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.trustee-actions a:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }

/* ---------- Network ---------- */
.filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.filter-bar select,
.filter-bar input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.filter-bar select:focus,
.filter-bar input:focus { border-color: var(--gold); background: #fff; }

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.directory-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.directory-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.directory-card h3 { font-family: var(--serif); margin: 0 0 4px; font-size: 1.15rem; color: var(--navy); }
.directory-card .location {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(201, 165, 90, 0.18);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.directory-card .info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.directory-card .info i {
  width: 16px;
  margin-top: 4px;
  color: var(--gold);
  text-align: center;
}
.directory-card .info a { color: var(--ink); }
.directory-card .info a:hover { color: var(--gold); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ---------- Events ---------- */
.event-tabs {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}
.event-tabs-wrap { display: flex; justify-content: center; }
.event-tabs button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.event-tabs button .count {
  background: var(--cream);
  color: var(--navy);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}
.event-tabs button.active { background: var(--navy); color: #fff; }
.event-tabs button.active .count { background: var(--gold); color: var(--navy); }
.event-tabs button:hover:not(.active) { background: var(--cream); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card.is-past { opacity: 0.94; }

.event-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-card:hover .event-media img { transform: scale(1.04); }

.event-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 56px;
}
.event-date-badge .day   { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.event-date-badge .month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-top: 2px; }
.event-date-badge .year  { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.event-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
}
.event-card.is-past .event-status { background: rgba(15, 28, 58, 0.78); color: #fff; }

.event-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.event-body h3 { margin: 0; font-size: 1.2rem; }
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.event-meta span { display: flex; align-items: center; gap: 8px; }
.event-meta i { color: var(--gold); width: 14px; text-align: center; }
.event-desc { color: var(--ink); margin: 0; font-size: 0.93rem; line-height: 1.55; flex: 1; }
.event-body .btn { align-self: flex-start; padding: 9px 18px; font-size: 0.85rem; }
.event-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
  align-items: center;
}
.event-actions .btn { align-self: stretch; }

/* Compact icon-only button (used for Share next to Read more) */
.btn-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-icon:hover { background: var(--navy); color: var(--gold); transform: translateY(-1px); }


/* Share popover (fallback when Web Share API unavailable) */
.share-popover {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.share-popover.open { opacity: 1; transform: translateY(0); }
.share-popover .share-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.share-popover .share-opt i {
  width: 18px;
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
}
.share-popover .share-opt:hover { background: var(--cream); color: var(--navy); }

/* Lightbox prev/next arrows + counter */
.event-lightbox-figure {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
.event-lightbox-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: min(90vw, 900px);
  text-align: center;
}
.event-lightbox-caption {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.event-lightbox-counter {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 12px;
  border-radius: 999px;
}
.event-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
}
.event-lightbox-nav:hover { background: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.05); }
.event-lightbox-nav.prev { left: 24px; }
.event-lightbox-nav.next { right: 24px; }

@media (max-width: 720px) {
  .event-lightbox-nav { width: 44px; height: 44px; font-size: 1rem; }
  .event-lightbox-nav.prev { left: 10px; }
  .event-lightbox-nav.next { right: 10px; }
}

.muted-count { color: var(--muted); font-weight: 500; font-size: 0.85em; font-family: var(--sans); }
.event-modal-cta { gap: 12px; flex-wrap: wrap; }

/* Inline "Open in Maps" link on venue rows */
.event-map-link {
  color: inherit;
  border-bottom: 1px dashed transparent;
  transition: color 0.18s, border-color 0.18s;
}
.event-map-link i { font-size: 0.72em; margin-left: 4px; opacity: 0.7; color: var(--gold); }
.event-map-link:hover { color: var(--navy); border-bottom-color: var(--gold); }
.event-map-link.on-dark { color: rgba(255,255,255,0.95); }
.event-map-link.on-dark i { color: var(--gold-soft); }
.event-map-link.on-dark:hover { color: #fff; border-bottom-color: var(--gold-soft); }

/* "How to reach" - embedded map + directions CTA inside the modal */
.event-location-line {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.event-location-line i { color: var(--gold); margin-top: 4px; }
.event-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
}
.event-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.event-map-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* Event detail modal */
.event-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 58, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.event-modal-backdrop.open { opacity: 1; visibility: visible; }

.event-modal {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.event-modal-backdrop.open .event-modal { transform: translateY(0); }

.event-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.2s;
}
.event-modal-close:hover { background: var(--gold); transform: rotate(90deg); }

.event-modal-body {
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Modal hero */
.event-modal-hero {
  position: relative;
  aspect-ratio: 16 / 7;
  background: var(--navy);
  overflow: hidden;
}
.event-modal-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.event-modal-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,28,58,0.05) 0%, rgba(15,28,58,0.85) 100%);
}
.event-modal-hero .event-status {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--navy);
  z-index: 2;
}
.event-modal-hero .event-status.is-past { background: rgba(255,255,255,0.92); color: var(--navy); }
.event-modal-hero-text {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  z-index: 2;
  color: #fff;
}
.event-modal-hero-text h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.event-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
}
.event-modal-meta i { color: var(--gold); margin-right: 6px; }

/* Modal sections */
.event-modal-section {
  padding: 26px 32px;
  border-bottom: 1px solid var(--line);
}
.event-modal-section:last-child { border-bottom: 0; }
.event-modal-section h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.event-modal-section p { margin: 0; color: var(--ink); line-height: 1.7; }

/* Highlights / number tiles */
.event-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.event-stat {
  background: linear-gradient(180deg, rgba(201,165,90,0.08) 0%, rgba(201,165,90,0.02) 100%);
  border: 1px solid rgba(201,165,90,0.35);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.event-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
}
.event-stat-label {
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Agenda */
.event-agenda {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-agenda li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}
.event-agenda-time {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--serif);
}

/* Gallery */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.event-gallery-thumb {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-gallery-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-gallery-btn {
  border: 0;
  padding: 0;
  background: var(--cream);
  cursor: zoom-in;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.event-gallery-btn img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, filter 0.2s ease;
}
.event-gallery-thumb:hover .event-gallery-btn img { transform: scale(1.05); filter: brightness(1.04); }
.event-gallery-thumb figcaption {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink);
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.event-modal-cta {
  padding: 22px 32px 30px;
  display: flex;
  justify-content: center;
}

/* Image lightbox (above modal) */
.event-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 24px;
  cursor: zoom-out;
}
.event-lightbox[hidden] { display: none; }
.event-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.event-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.event-lightbox-close:hover { background: var(--gold); color: var(--navy); }

@media (max-width: 720px) {
  .event-modal { max-height: 96vh; border-radius: var(--radius); }
  .event-modal-section { padding: 20px 22px; }
  .event-modal-hero-text { left: 18px; right: 18px; bottom: 16px; }
  .event-agenda li { grid-template-columns: 1fr; gap: 4px; }
  .event-modal-cta { padding: 18px 22px 24px; }
}

.events-filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 180px 200px 1fr;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.events-filter-bar select,
.events-filter-bar input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.events-filter-bar select:focus,
.events-filter-bar input:focus { border-color: var(--gold); background: #fff; }

@media (max-width: 720px) {
  .events-filter-bar { grid-template-columns: 1fr; }
}

/* ---------- Ads (Display + Classified) ---------- */
.ad-tabs-wrap   { display: flex; justify-content: center; }
.ad-tabs        { /* mirror .event-tabs */
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}
.ad-tabs button {
  border: 0; background: transparent;
  color: var(--ink); font-family: var(--sans);
  font-weight: 600; font-size: 0.92rem;
  padding: 10px 22px; border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.ad-tabs button .count {
  background: var(--cream); color: var(--navy);
  border-radius: 999px; padding: 2px 9px;
  font-size: 0.78rem; font-weight: 700;
  min-width: 22px; text-align: center;
}
.ad-tabs button.active { background: var(--navy); color: #fff; }
.ad-tabs button.active .count { background: var(--gold); color: var(--navy); }
.ad-tabs button:hover:not(.active) { background: var(--cream); }

.ads-filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 200px 200px 1fr;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.ads-filter-bar select,
.ads-filter-bar input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.95rem;
  background: var(--cream); color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ads-filter-bar select:focus,
.ads-filter-bar input:focus { border-color: var(--gold); background: #fff; }

.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.ad-grid.is-classified {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.ad-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ad-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ad-display .ad-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  overflow: hidden;
}
.ad-display .ad-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.ad-display:hover .ad-media img { transform: scale(1.04); }

.ad-category {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
.ad-display .ad-category {
  position: absolute;
  top: 14px; left: 14px;
  box-shadow: var(--shadow-md);
}

.ad-classified {
  border-left: 4px solid var(--gold);
}
.ad-classified-head {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.ad-classified-head .ad-city {
  font-size: 0.78rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 5px;
}
.ad-classified-head .ad-city i { color: var(--gold); }

.ad-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ad-body h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--serif);
  color: var(--navy);
}
.ad-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  flex: 1;
}
.ad-meta {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  font-size: 0.82rem; color: var(--muted);
}
.ad-meta span { display: inline-flex; align-items: center; gap: 6px; }
.ad-meta i { color: var(--gold); width: 12px; text-align: center; }

.ad-contact {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.ad-contact-btn {
  flex: 1 1 auto;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.84rem; font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.ad-contact-btn:hover { background: var(--navy); color: var(--gold); transform: translateY(-1px); }
.ad-contact-btn.whatsapp:hover { background: #25D366; color: #fff; }
.ad-contact-btn i { font-size: 0.9rem; }

@media (max-width: 720px) {
  .ads-filter-bar { grid-template-columns: 1fr; }
  .ad-grid, .ad-grid.is-classified { grid-template-columns: 1fr; }
  .ad-contact-btn { flex: 1 1 calc(33% - 6px); padding: 8px 8px; font-size: 0.78rem; }
}

/* ---------- Community News (સમાચાર) ---------- */
.news-filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 200px 200px 1fr;
  gap: 12px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.news-filter-bar select,
.news-filter-bar input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.news-filter-bar select:focus,
.news-filter-bar input:focus { border-color: var(--gold); background: #fff; }

.news-year { margin-bottom: 36px; }
.news-year-head {
  font-family: var(--serif);
  text-align: left;
  color: var(--navy);
  font-size: 1.6rem;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 18px;
}

/* News cards now share the .event-card layout (image-top + date badge +
   body + buttons). The tweaks below adapt the look slightly for news:
   the status pill uses the gold "category" treatment instead of the
   gold/dark "status" treatment used for event upcoming/past.            */
.news-card-event-style .event-status {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.news-card-event-style .news-title-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.92rem;
  margin-top: -2px;
  margin-bottom: 4px;
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 88px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.news-date-badge {
  position: absolute;
  top: 22px; left: 18px;
  width: 56px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.news-date-badge .day {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.news-date-badge .month {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}
.news-category {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 165, 90, 0.18);
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.news-body h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
  font-size: 1.1rem;
}
.news-title-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--ink);
  font-size: 0.92rem;
  opacity: 0.78;
  margin-top: -2px;
}
.news-summary {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.55;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}
.news-meta span { display: inline-flex; align-items: center; gap: 5px; }
.news-meta i { color: var(--gold); }

@media (max-width: 720px) {
  .news-filter-bar { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { padding: 18px 18px 18px 78px; }
  .news-date-badge { left: 14px; top: 18px; width: 50px; }
}

/* ---------- Memorial / In Memoriam (શ્રદ્ધાંજલિ) ---------- */
.memorial-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-style: italic;
}
.memorials-filter-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.memorials-filter-bar select,
.memorials-filter-bar input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.memorials-filter-bar select:focus,
.memorials-filter-bar input:focus { border-color: var(--gold); background: #fff; }

.memorial-year { margin-bottom: 40px; }
.memorial-year-head {
  font-family: var(--serif);
  text-align: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 14px;
}
.memorial-year-head::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.memorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.memorial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.memorial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.memorial-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.memorial-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(0.96);
}
.memorial-flame {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold);
  font-size: 1.2rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.memorial-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.memorial-body h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
  font-size: 1.15rem;
}
.memorial-name-gu {
  font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
  color: var(--ink);
  font-size: 0.95rem;
  margin-top: -4px;
  opacity: 0.78;
}
.memorial-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.memorial-dates span { display: inline-flex; align-items: center; gap: 6px; }
.memorial-dates i { color: var(--gold); font-size: 0.7em; }

.memorial-city {
  font-size: 0.82rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.memorial-city i { color: var(--gold); }

.memorial-tribute {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid rgba(201, 165, 90, 0.4);
  font-style: italic;
}

.memorial-pub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}
.memorial-pub i { color: var(--gold); margin-right: 4px; }

.memorial-family {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.memorial-family span { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.memorial-family i { color: var(--gold); }

@media (max-width: 720px) {
  .memorials-filter-bar { grid-template-columns: 1fr; }
  .memorial-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-grid .info-card iframe {
  margin-top: 14px;
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius-sm);
}
.contact-grid .info-card .meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.contact-grid .info-card .meta-line i { color: var(--gold); width: 18px; text-align: center; }
.contact-grid .info-card .social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.contact-grid .info-card .social-row a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
}
.contact-grid .info-card .social-row a:hover { background: var(--navy); color: var(--gold); }

/* Publication Particulars: stacked label + value (handles long labels) */
.pub-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px 0;
}
.pub-list dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1.3;
}
.pub-list dt i {
  width: 18px;
  text-align: center;
  color: var(--gold);
  font-size: 0.95rem;
}
.pub-list dd {
  margin: 2px 0 0 26px;          /* aligned under the label text, past the icon */
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
  word-wrap: break-word;
}
.pub-list .muted { color: var(--muted); font-size: 0.88em; }

.contact-form { display: grid; gap: 14px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: flex-start; }

/* ---------- Submit Your Content form ---------- */
.submit-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.submit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.submit-form .field-group {
  margin-top: 6px;
  padding: 22px 22px 6px;
  background: var(--cream);
  border: 1px dashed rgba(201, 165, 90, 0.45);
  border-radius: var(--radius);
}
.submit-form .field-group-title {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 14px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.submit-form .field-group-title i {
  width: 30px; height: 30px;
  background: rgba(201, 165, 90, 0.18);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.submit-form select,
.submit-form input,
.submit-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.submit-form .field-group select,
.submit-form .field-group input,
.submit-form .field-group textarea {
  background: var(--paper);
}
.submit-form .form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 6px 0 14px;
  font-style: italic;
}

/* File input - keep it on-brand (the default <input type=file> looks ugly) */
.submit-form .file-input {
  padding: 10px 12px;
  cursor: pointer;
}
.submit-form .file-input::file-selector-button {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.2s;
}
.submit-form .file-input::file-selector-button:hover { background: var(--gold); color: var(--navy); }

/* Friendly placeholder shown when no submission type is selected yet */
.submit-form .submit-hint {
  margin-top: 6px;
  padding: 18px 22px;
  background: rgba(201, 165, 90, 0.08);
  border: 1px dashed rgba(201, 165, 90, 0.45);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: italic;
}
.submit-form .submit-hint i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* JS toggles each .field-group via inline `style.display` after page load.
   Initial state is hidden by an inline style on each block in the markup
   (see submit.html), so there's no flash-of-all-fields before JS runs.
   The `.always-visible` modifier is a marker for blocks (like the file
   attachment) that should appear no matter which submission type is picked. */
.submit-form .field-group.always-visible {
  /* Same visual treatment as conditional groups; just listed for clarity. */
}

@media (max-width: 720px) {
  .submit-form { padding: 24px 22px; }
  .submit-form .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #d6dbe6;
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer p, .site-footer a { color: #c9d0dc; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 6px; }
.site-footer .brand { color: #fff; }
.site-footer .brand .brand-text small { color: var(--gold-soft); }
.site-footer .footer-social { display: flex; gap: 10px; margin-top: 12px; }
.site-footer .footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.site-footer .footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #97a0b3;
}

/* ============================================================
   Responsive - desktop / tablet / mobile / small-mobile
============================================================ */

/* Tablet (≤ 880px) - stack two-column grids */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-cover { order: -1; }                 /* cover above text on tablet+down */
  .contact-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .events-filter-bar { grid-template-columns: 1fr; }
  .archive-filter-bar { grid-template-columns: 1fr; }
  .archive-filter-bar .btn { justify-self: stretch; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-social, .site-footer .brand { justify-content: center; }
  .site-footer .brand { display: inline-flex; }
}

/* Mobile (≤ 720px) - collapse nav, simplify spacing */
@media (max-width: 720px) {
  :root { --container: 100%; }
  .container { padding: 0 18px; }

  /* iOS Safari auto-zooms when a focused input's font-size is below
     16px - force 16px on touch-width screens so the page never zooms. */
  input, select, textarea { font-size: 16px; }

  /* Hamburger nav */
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    min-width: 200px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav a.active::after { display: none; }

  /* Brand text reduces */
  .brand { font-size: 1.05rem; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; font-size: 1rem; }
  .brand-text small { display: none; }

  /* Vertical rhythm */
  .section { padding: 36px 0; }
  .section-head { margin-bottom: 28px; }
  .hero { padding: 32px 0; }
  main { padding-bottom: 40px; }

  /* Hero */
  .hero-cover .cover-frame { width: clamp(180px, 60vw, 240px); }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 10px 18px; font-size: 0.9rem; }

  /* Carousel arrows pull in */
  .scroll-btn.left  { left: 4px; }
  .scroll-btn.right { right: 4px; }
  .scroller-track { padding-left: 0; padding-right: 0; }

  /* Edition cards */
  .edition-card { flex: 0 0 170px; padding: 12px; }
  .editions-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

  /* About + trustees + network grids → single column on small phones */
  .about-grid { grid-template-columns: 1fr; }
  .trustee-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }

  /* Modal */
  .event-modal { max-height: 96vh; border-radius: var(--radius); }
  .event-modal-section { padding: 20px 18px; }
  .event-modal-hero { aspect-ratio: 16 / 10; }
  .event-modal-hero-text { left: 16px; right: 16px; bottom: 14px; }
  .event-modal-hero-text h2 { font-size: 1.25rem; }
  .event-modal-meta { gap: 6px 12px; font-size: 0.82rem; flex-direction: column; align-items: flex-start; }
  .event-agenda li { grid-template-columns: 1fr; gap: 4px; }
  .event-modal-cta { padding: 18px 18px 22px; }

  /* Events filter bar gap tighter */
  .events-filter-bar { padding: 12px; gap: 8px; }
  .filter-bar { padding: 12px; gap: 8px; }

  /* Tabs scroll horizontally if too wide */
  .event-tabs { width: 100%; justify-content: center; }
  .event-tabs button { padding: 9px 16px; font-size: 0.86rem; }

  /* Map embeds shorter */
  .event-map { aspect-ratio: 4 / 3; }
}

/* Small mobile (≤ 480px) - extra compaction */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .section-head .eyebrow { font-size: 0.7rem; }

  /* Hero - text-first, card scales down further */
  .hero { padding: 24px 0 28px; }
  .hero-grid { gap: 28px; }
  .hero-copy p { font-size: 0.95rem; }
  .hero-cover .cover-frame { width: clamp(160px, 56vw, 200px); }
  .hero-cover .badge { font-size: 0.68rem; padding: 6px 11px; top: -10px; right: -10px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Buttons stretch full-width on cards */
  .event-actions { flex-direction: column; align-items: stretch; }
  .event-actions .btn { justify-content: center; }

  /* Stat tiles get smaller */
  .event-highlights { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .event-stat { padding: 14px 12px; }
  .event-stat-num { font-size: 1.4rem; }

  /* Trustee actions wrap nicely */
  .trustee-actions { gap: 8px; }
  .trustee-actions a { width: 34px; height: 34px; font-size: 0.85rem; }

  /* Modal close button doesn't overlap title */
  .event-modal-close { top: 10px; right: 10px; width: 34px; height: 34px; }

  /* Lightbox arrows tighter */
  .event-lightbox-nav.prev { left: 6px; }
  .event-lightbox-nav.next { right: 6px; }
  .event-lightbox-nav { width: 40px; height: 40px; }

  /* Footer pulls icons + links closer */
  .site-footer { padding: 30px 0 16px; }
}

/* Prevent horizontal overflow on any device */
html, body { overflow-x: hidden; }

/* ============================================================
   <noscript> fallback - shown only when JavaScript is disabled.
   Keeps content readable + invites users to enable JS.
============================================================ */
.noscript-banner {
  background: #fff8e6;
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  text-align: center;
  font-size: 0.95rem;
  font-family: var(--sans);
}
.noscript-banner a { color: var(--navy); text-decoration: underline; }
