/* =====================================================
   GMA brand design system — Logo Palette (ocean blue)
   Sampled from the official GMA circular seal:
   ocean blue · leaf green · wheat gold · terracotta
   ===================================================== */

:root {
  /* ════════════════════════════════════════════════════════════
     GMA design system — LOGO PALETTE
     Primary: ocean blue (from the globe in the seal).
     Accent:  wheat gold (from the name ring).
     Dark:    deep navy (hero + footer bookends).
     ════════════════════════════════════════════════════════════ */

  /* ── Brand ── */
  --gma-primary:       #154D79;   /* ocean blue — from the logo (was #B11E2F) */
  --gma-primary-dark:  #0F3A5C;   /* deep navy hover/pressed (was #8E1626) */
  --gma-primary-tint:  #EAF1F6;   /* sky tint wash (was #FBEDEE) */
  --gma-accent:        #B8922E;   /* wheat gold — from the ring (was #C8881A) */
  --gma-accent-dark:   #8F7022;   /* gold hover (was #A66E12) */
  --gma-accent-tint:   #F4EFD9;   /* faint gold wash (was #FBF3E2) */

  /* ── Extended palette (green + terracotta) ── */
  --gma-secondary:      #5E7E2A;  /* leaf green — links/success/accents */
  --gma-secondary-tint: #EEF2E2;
  --gma-warm:           #C55E3E;  /* terracotta — festival/event accent */

  /* ── Festive saffron (was missing from palette) ── */
  --gma-saffron-real:  #E8A33D;   /* true festive saffron */
  --gma-saffron-tint:  #FBEED7;   /* saffron tint for fills */

  /* ── Typography ── */
  --gma-font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --gma-font-telugu: 'Noto Sans Telugu', 'Noto Sans', sans-serif;

  /* ── Neutrals (the canvas — warmed per update-safe spec) ── */
  --gma-ink:           #1C1A19;   /* keep dark neutral text */
  --gma-text:          #1C1A19;   /* keep */
  --gma-text-muted:    #6B6354;   /* warm muted (was #5E6352 cool) */
  --gma-bg:            #FAF6EC;   /* warm ivory canvas (was #F6F8F2 cool) */
  --gma-surface:       #FFFFFF;   /* keep */
  --gma-white:         #FFFFFF;   /* keep */
  --gma-border:        #E4E7DD;   /* cool border (unchanged) */

  /* ── Dark sections — hero + footer bookends ── */
  --gma-dark:          #102E45;   /* deep navy (was #2A0E10 dark maroon) */

  /* ── System (unchanged) ── */
  --gma-radius:        14px;
  --gma-radius-sm:     8px;
  --gma-shadow-sm:     0 1px 2px rgba(28,26,25,.06), 0 1px 3px rgba(28,26,25,.04);
  --gma-shadow:        0 4px 14px rgba(28,26,25,.07);
  --gma-shadow-lg:     0 12px 32px rgba(28,26,25,.10);
  --gma-max-w:         1320px;
  --gma-section-gap:   4.5rem;

  /* ── Back-compat aliases — fixed to point at festive colors not blue ── */
  --gma-saffron:       var(--gma-saffron-real);   /* was var(--gma-accent) muted gold */
  --gma-maroon:        var(--gma-dark);
  --gma-purple:        var(--gma-warm);            /* terracotta, was blue --gma-primary */
  --gma-green:         #5E7E2A;                    /* leaf green directly, was blue --gma-primary */
  --gma-gold-pale:     var(--gma-accent-tint);
  --gma-saffron-pale:  var(--gma-saffron-tint);   /* was accent-tint */
  --gma-purple-pale:   var(--gma-primary-tint);
  --gma-green-pale:    var(--gma-secondary-tint);  /* was blue tint */
  --gma-red-pale:      #F7E3DC;                    /* terracotta tint, was blue tint */
}

/* ── Icon defaults ── */
.gma-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   CONTRAST ENFORCEMENT — text color follows the background.

   Any section painted with a DARK background gets light text on ALL of
   its text elements (headings, paragraphs, links, list items, spans).
   This beats Olivero's base h1–h6 / a color rules, which were rendering
   near-black headings on the dark hero/join/footer (invisible text).

   Three dark zones are bookends/CTAs: .gma-hero, .gma-join, .gma-footer.
   Add the .gma-on-dark utility class to any future dark section to opt in.
   ════════════════════════════════════════════════════════════════ */
.gma-hero,
.gma-hero :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, blockquote),
.gma-page-hero,
.gma-page-hero :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, blockquote),
.gma-join,
.gma-join :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, blockquote),
.gma-footer,
.gma-footer :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, blockquote),
.gma-on-dark,
.gma-on-dark :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, blockquote) {
  color: #ffffff;
}

/* Slightly softened body/secondary text on dark, so it isn't pure-white glare */
.gma-hero .gma-hero__sub,
.gma-page-hero .gma-page-hero__sub,
.gma-join .gma-join__sub,
.gma-footer .gma-footer__brand-tagline,
.gma-footer .gma-footer__brand-ein,
.gma-footer .gma-footer__bottom,
.gma-on-dark .gma-muted {
  color: rgba(255, 255, 255, .82);
}

/* Links inside dark zones: readable + clear hover (footer keeps its own
   dimmed style defined later, which is fine — this is the safe default). */
.gma-hero a:not(.gma-btn),
.gma-join a:not(.gma-btn),
.gma-on-dark a:not(.gma-btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gma-hero a:not(.gma-btn):hover,
.gma-join a:not(.gma-btn):hover,
.gma-on-dark a:not(.gma-btn):hover { color: var(--gma-accent); }

/* The gold metallic eyebrow uses background-clip:text — keep its gradient,
   don't let the white override blank it out. */
.gma-hero .gma-hero__eyebrow { color: transparent; }

/* ── Global typography — Inter for UI, Noto Sans Telugu for :lang(te) ── */
html, body, input, button, select, textarea,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gma-font-sans);
}
body {
  font-size: 1.0625rem;  /* ~17px */
  line-height: 1.65;
}
.text-content, article, .node__content {
  max-width: 70ch;       /* 50–75 char readable measure */
}

/* ── Telugu rendering — Sans pairs better with Inter than Serif ── */
:lang(te) {
  font-family: var(--gma-font-telugu);   /* was 'Noto Serif Telugu' */
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

/* ── Utilities ────────────────────────────────── */
.gma-container {
  max-width: var(--gma-max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.gma-section {
  padding-block: var(--gma-section-gap);
}

.gma-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gma-primary);
  text-align: center;
  margin: 0 0 .5rem;
}

.gma-section-sub {
  text-align: center;
  color: var(--gma-text-muted);
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
}

/* ── Buttons ──────────────────────────────────── */
.gma-btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  letter-spacing: .02em;
}
.gma-btn:active { transform: scale(.97); }

.gma-btn--primary {
  background: var(--gma-primary);
  color: var(--gma-white);
  box-shadow: 0 3px 10px rgba(192,57,43,.35);
}
.gma-btn--primary:hover {
  background: var(--gma-primary-dark);
  box-shadow: 0 5px 16px rgba(192,57,43,.45);
}

.gma-btn--white {
  background: var(--gma-white);
  color: var(--gma-primary);
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.gma-btn--white:hover { background: #fff8f5; }

.gma-btn--outline {
  background: transparent;
  color: var(--gma-white);
  border: 2px solid rgba(255,255,255,.75);
}
.gma-btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.gma-btn--gold {
  background: var(--gma-accent);
  color: #3a1a00;
  box-shadow: 0 3px 10px rgba(244,161,24,.4);
}
.gma-btn--gold:hover { background: var(--gma-accent-dark); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
/* Hero region wrapper — sizes to content now (the 3-col hero has its own
   padding); no forced 480px that created dead white space. */
.gma-hero-region {
  display: block;
  width: 100%;
}

/* ══════════════════════════════════════════════
   HERO — compact 3 columns: principles · slideshow · promise
   ══════════════════════════════════════════════ */
.gma-hero3 {
  background: var(--gma-dark);
  color: #fff;
  padding: 2.25rem 1.5rem 2.5rem;
  position: relative;
}
.gma-hero3::before {  /* slim gold rule on top, matches the banner border */
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gma-accent);
}
.gma-hero3__grid {
  max-width: var(--gma-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;   /* top-align all 3 columns so their headers line up */
}
/* Nudge the side columns down so their kicker lines up with the top of the
   slideshow (the center column has no kicker above the image). */
.gma-hero3__col { padding-top: .25rem; }
/* On tablet/mobile the three columns stack: slideshow first, then the two
   text columns side by side, then single column on small phones. */
@media (max-width: 960px) {
  .gma-hero3__grid { grid-template-columns: 1fr 1fr; }
  .gma-hero3__center { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 560px) {
  .gma-hero3__grid { grid-template-columns: 1fr; }
}

/* Side text columns (rendered from editable Drupal blocks). Force light text
   on the dark hero (the .gma-on-dark contrast rules also cover this). */
.gma-hero3__col,
.gma-hero3__col :where(p, li, h2, h3, span, strong) { color: #fff; }
.gma-hcol__kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gma-accent); margin: 0 0 .4rem;
}
.gma-hero3__col .gma-hcol__title,
.gma-hero3__col h3 {
  font-size: 1.05rem; font-weight: 800; line-height: 1.3; margin: 0 0 .75rem;
}
.gma-hero3__col .gma-hcol__title [lang="te"] { color: var(--gma-accent); }
.gma-hcol__list {
  list-style: none; padding: 0; margin: 0 0 .9rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.gma-hcol__list li {
  font-size: .85rem; line-height: 1.45; color: rgba(255,255,255,.85);
  padding-left: 1rem; position: relative;
}
.gma-hcol__list li::before {
  content: '›'; position: absolute; left: 0; color: var(--gma-accent); font-weight: 700;
}
.gma-hcol__list--promise li strong { color: #fff; }

/* Founding Principles grid (left hero column) — the 9 "One Community"
   principles, each Telugu + English, in a compact 3-up grid. */
.gma-fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;        /* equal-height rows */
  gap: .5rem;
  margin: 0 0 1rem;
}
.gma-fp-grid > * { min-width: 0; }
@media (max-width: 700px) { .gma-fp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .gma-fp-grid { grid-template-columns: 1fr; } }
.gma-fp-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,136,26,.25);
  border-radius: 8px;
  padding: .6rem .35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* vertically center text in each equal-height card */
  gap: .15rem;
  min-height: 62px;
}
.gma-fp-item__te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: .82rem; font-weight: 600; line-height: 1.35;
  color: var(--gma-accent);
}
.gma-fp-item__en {
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.gma-hcol__link {
  font-size: .82rem; font-weight: 600; color: var(--gma-accent);
  text-decoration: none;
}
.gma-hcol__link:hover { color: #fff; text-decoration: underline; }

/* Center column: slideshow + headline + CTAs */
.gma-hero3__center { text-align: center; }
.gma-hero3__headline {
  font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.2;
  color: #fff; margin: 1.1rem 0 1rem;
}
.gma-hero3__ctas {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
}

/* ── Photo slideshow ── */
.gma-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--gma-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  background: #1a0a0a;
}
.gma-slideshow__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease;
}
.gma-slideshow__img.is-active { opacity: 1; }
.gma-slideshow__dots {
  position: absolute; left: 0; right: 0; bottom: .6rem;
  display: flex; justify-content: center; gap: .4rem; z-index: 2;
}
.gma-slideshow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45); transition: background .2s, transform .2s;
}
.gma-slideshow__dot.is-active { background: #fff; transform: scale(1.25); }

/* ── Services slideshow (TANA-style: service photo + title/blurb overlay) ──
   Same crossfade mechanism as the photo slideshow, but each slide is a
   clickable panel: full-bleed background image, dark scrim for legibility,
   and the service name + short blurb + "Learn more" overlaid at the bottom. */
.gma-service-slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  opacity: 0; transition: opacity .6s ease;
}
.gma-service-slide.is-active { opacity: 1; }
/* Scrim: bottom-weighted gradient so the title is always readable. */
.gma-service-slide__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(20,8,8,.85) 0%, rgba(20,8,8,.55) 35%, rgba(20,8,8,.05) 70%, transparent 100%);
}
.gma-service-slide__body {
  position: relative; z-index: 1;
  width: 100%;
  padding: 1.1rem 1.25rem 1.6rem;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.gma-service-slide__title {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.gma-service-slide__blurb {
  font-size: .82rem;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  /* keep to two lines so slides stay uniform height */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.gma-service-slide__cta {
  margin-top: .15rem;
  font-size: .8rem;
  font-weight: 700;
  /* accent gold so it pops on the dark photo scrim */
  color: var(--gma-accent);
  letter-spacing: .02em;
}
.gma-service-slide:hover .gma-service-slide__cta { text-decoration: underline; }
/* Lift the dots above the scrim so they stay visible/tappable. */
.gma-slideshow--services .gma-slideshow__dots { z-index: 3; }

/* Hero: one of only two dark zones on the site (hero + footer bookend it).
   Solid deep maroon — no multi-stop gradient. */
.gma-hero {
  background: var(--gma-dark);
  color: #fff;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
}
/* No special z-index needed — hero is now clean, no positioned children */
/* Gold decorative border strip at top — matches banner border */
.gma-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg,
    #5C3A00, #8B6914, #D4AA30, #F4D060, #FFE580, #F4D060, #D4AA30, #8B6914, #5C3A00
  );
  pointer-events: none;
  z-index: 3;
}
/* Gold border strip at bottom */
.gma-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg,
    #5C3A00, #8B6914, #D4AA30, #F4D060, #FFE580, #F4D060, #D4AA30, #8B6914, #5C3A00
  );
  z-index: 3;
}

/* Official GMA circular emblem — displayed as a medallion */
.gma-hero__logo {
  height: 120px;
  width: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)) drop-shadow(0 0 20px rgba(244,213,96,.3));
  border-radius: 50%;
}

/* Eyebrow in the banner's gold colour */
.gma-hero__eyebrow {
  display: inline-block;
  background: transparent;
  border: none;
  padding: .2rem 0;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  /* Metallic gold gradient text — matches the banner gold text style */
  background: linear-gradient(135deg, #D4AA30, #FFE580, #F4D060, var(--gma-accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gma-hero__headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.gma-hero__sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  opacity: .92;
  margin: 0 0 2.2rem;
  max-width: 560px;
  margin-inline: auto;
}

.gma-hero__ctas {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gma-hero__badge {
  margin-top: 2.5rem;
  font-size: .9rem;
  opacity: .75;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════
   IMPACT STATS BAR — gold/marigold background
   ══════════════════════════════════════════════ */
/* Stats: clean white band, hairline dividers, crimson numbers.
   Lets the numbers do the talking instead of a loud background. */
.gma-stats {
  background: var(--gma-surface);
  border-bottom: 1px solid var(--gma-border);
}

.gma-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  text-align: center;
}

.gma-stats__item {
  padding: 2.25rem 1rem;
  border-right: 1px solid var(--gma-border);
}
.gma-stats__item:last-child { border-right: none; }

.gma-stats__number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gma-primary);
  line-height: 1;
  margin-bottom: .4rem;
}

.gma-stats__label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gma-text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ══════════════════════════════════════════════
   ABOUT STRIP
   ══════════════════════════════════════════════ */
/* About: warm parchment with red left border accent */
.gma-about {
  background: linear-gradient(160deg, #fffaf6 0%, var(--gma-bg) 100%);
  border-top: 4px solid var(--gma-primary);
  border-bottom: 1px solid var(--gma-border);
}

.gma-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gma-about__tag {
  display: inline-block;
  background: var(--gma-primary-tint);
  color: var(--gma-primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.gma-about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gma-text);
  margin: 0 0 1rem;
}

.gma-about__body {
  color: var(--gma-text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.gma-about__image {
  border-radius: var(--gma-radius);
  overflow: hidden;
  background: var(--gma-primary-tint);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gma-about__image-placeholder {
  font-size: 4rem;
  opacity: .5;
}

@media (max-width: 720px) {
  .gma-about__inner { grid-template-columns: 1fr; }
  .gma-about__image { display: none; }
}

/* ══════════════════════════════════════════════
   PROGRAMS GRID
   ══════════════════════════════════════════════ */
/* Programs: white surface section (sits on the cream canvas). */
.gma-programs {
  background: var(--gma-surface);
  color: var(--gma-ink);
  border-top: 1px solid var(--gma-border);
  border-bottom: 1px solid var(--gma-border);
}

.gma-programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Cards: clean white with a gold top accent + hover lift */
.gma-program-card {
  background: var(--gma-surface);
  border: 1px solid var(--gma-border);
  border-top: 3px solid var(--gma-accent);
  border-radius: var(--gma-radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: var(--gma-shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.gma-program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gma-shadow);
}

.gma-program-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gma-accent-tint); color: var(--gma-accent-dark);
}

.gma-program-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gma-ink);
  margin: 0;
}

.gma-program-card__body {
  color: var(--gma-text-muted);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
}

.gma-program-card__link {
  color: var(--gma-primary);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.gma-program-card__link:hover { color: var(--gma-primary-dark); text-decoration: underline; }

/* ══════════════════════════════════════════════
   EVENTS STRIP
   ══════════════════════════════════════════════ */
/* Events: warm canvas — no purple. */
.gma-events {
  background: var(--gma-bg);
}

.gma-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.gma-event-card {
  background: var(--gma-surface);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: start;
  box-shadow: var(--gma-shadow-sm);
  transition: box-shadow .18s, transform .18s;
}
.gma-event-card:hover { box-shadow: var(--gma-shadow); transform: translateY(-2px); }

.gma-event-card__date {
  background: var(--gma-primary-tint);
  color: var(--gma-primary);
  border-radius: var(--gma-radius-sm);
  text-align: center;
  padding: .5rem .3rem;
  line-height: 1.2;
}
.gma-event-card__day  { display: block; font-size: 1.6rem; font-weight: 800; }
.gma-event-card__mon  { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.gma-event-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gma-text);
  margin: 0 0 .3rem;
}
.gma-event-card__meta {
  font-size: .875rem;
  color: var(--gma-text-muted);
  margin: 0;
}

.gma-events__cta { text-align: center; }

/* ══════════════════════════════════════════════
   JOIN CTA BANNER
   ══════════════════════════════════════════════ */
/* Join CTA: the one strong crimson moment — single brand color, solid. */
.gma-join {
  background: var(--gma-primary);
  color: var(--gma-white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.gma-join__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 .75rem;
}

.gma-join__sub {
  font-size: 1.15rem;
  opacity: .88;
  margin: 0 0 2.2rem;
  max-width: 540px;
  margin-inline: auto;
}

.gma-join__ctas {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
/* Footer: the closing dark bookend — same token as the hero. */
.gma-footer {
  background: var(--gma-dark);
  color: rgba(255,238,224,.78);
  padding: 2.25rem 1.5rem 1.25rem;
  font-size: .95rem;
  border-top: 3px solid var(--gma-accent);
}

/* Lean footer: brand block + two action columns. The brand keeps generous
   space on the left; the two link columns group together on the right rather
   than stretching sparsely across the full width. */
.gma-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 840px) {
  /* Brand spans the full row, the two columns sit side-by-side beneath it. */
  .gma-footer__grid { grid-template-columns: 1fr 1fr; }
  .gma-footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .gma-footer__grid { grid-template-columns: 1fr; }
  .gma-footer__grid > :first-child { grid-column: auto; }
}

.gma-footer__brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gma-white);
  margin: 0 0 .35rem;
}

.gma-footer__brand-tagline {
  color: rgba(255,255,255,.6);
  margin: 0 0 1rem;
  font-size: .9rem;
}

.gma-footer__col-title {
  font-weight: 700;
  color: var(--gma-white);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 .6rem;
}

.gma-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.gma-footer__links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
}
.gma-footer__links a:hover { color: var(--gma-white); }

.gma-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ══════════════════════════════════════════════
   ABOUT PILLARS LIST
   ══════════════════════════════════════════════ */
.gma-about__pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.gma-about__pillars li {
  font-size: .95rem;
  color: var(--gma-text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.gma-about__pillars li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gma-primary);
  font-weight: 700;
}
.gma-about__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.gma-btn--outline-blue {
  background: transparent;
  color: var(--gma-primary);
  border: 2px solid var(--gma-primary);
}
.gma-btn--outline-blue:hover { background: var(--gma-primary-tint); }

/* ── Manifesto card ── */
.gma-manifesto-card {
  background: var(--gma-primary);
  color: var(--gma-white);
  border-radius: var(--gma-radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--gma-shadow);
}
.gma-manifesto-card__eyebrow {
  font-size: .85rem;
  font-weight: 700;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 1.25rem;
}
.gma-manifesto-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.gma-manifesto-card__list li {
  font-size: .9rem;
  opacity: .92;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: .65rem;
}
.gma-manifesto-card__list li:last-child { border-bottom: none; }
.gma-manifesto-card__footer {
  font-size: .8rem;
  opacity: .65;
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════════
   MISSION PILLARS
   ══════════════════════════════════════════════ */
/* Mission: saffron pale — warm, light, airy */
.gma-mission { background: linear-gradient(160deg, var(--gma-bg) 0%, var(--gma-bg) 100%); border-top: 4px solid var(--gma-saffron); }
.gma-mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}
.gma-mission__pillar {
  background: var(--gma-white);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--gma-shadow);
  text-align: center;
}
.gma-mission__icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.gma-mission__title { font-size: 1.1rem; font-weight: 700; color: var(--gma-primary); margin: 0 0 .5rem; }
.gma-mission__body { font-size: .9rem; color: var(--gma-text-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════
   VALUES GRID
   ══════════════════════════════════════════════ */
/* Values: gold pale — marigold light */
.gma-values { background: linear-gradient(160deg, var(--gma-bg) 0%, var(--gma-accent-tint) 100%); border-top: 4px solid var(--gma-accent); }
.gma-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.gma-value-card {
  background: linear-gradient(135deg, var(--gma-surface) 0%, var(--gma-primary-tint) 100%);
  border: 1px solid var(--gma-border);
  border-top: 3px solid var(--gma-primary);
  border-radius: var(--gma-radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.gma-value-card__telugu {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gma-primary);
  font-family: 'Noto Serif Telugu', 'Noto Serif', serif;
  line-height: 1.4;
  margin: 0 0 .4rem;
}
.gma-value-card__en { font-size: .95rem; font-weight: 700; color: var(--gma-text); margin: 0 0 .4rem; }
.gma-value-card__desc { font-size: .85rem; color: var(--gma-text-muted); margin: 0; font-style: italic; }

/* ══════════════════════════════════════════════
   MAHASABHA EVENT STRIP
   ══════════════════════════════════════════════ */
.gma-mahasabha {
  background: var(--gma-surface);
  color: var(--gma-ink);
  padding: 2.75rem 1.5rem;
  border-top: 1px solid var(--gma-border);
}
.gma-mahasabha__inner {
  max-width: var(--gma-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 760px) { .gma-mahasabha__inner { grid-template-columns: 1fr; } }
.gma-mahasabha__eyebrow {
  display: inline-block;
  background: var(--gma-primary-tint);
  color: var(--gma-primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.gma-mahasabha__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 .25rem; color: var(--gma-ink); }
.gma-mahasabha__tagline { color: var(--gma-primary); font-size: 1.1rem; margin: 0 0 1rem; font-weight: 600; }
.gma-mahasabha__body { color: var(--gma-text-muted); line-height: 1.6; font-size: 1rem; margin: 0 0 1rem; }
.gma-mahasabha__details {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: .5rem;
  font-size: .95rem; color: var(--gma-text-muted);
}
.gma-mahasabha__details li { display: flex; align-items: center; gap: .55rem; }
.gma-mahasabha__details .gma-icon { color: var(--gma-primary); }
.gma-mahasabha__schedule {
  background: var(--gma-bg);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 1.75rem;
}
.gma-mahasabha__sched-title {
  font-size: 1rem; font-weight: 700; color: var(--gma-primary);
  margin: 0 0 1.25rem; text-transform: uppercase; letter-spacing: .06em;
}
.gma-mahasabha__day { margin-bottom: 1.25rem; }
.gma-mahasabha__day:last-child { margin-bottom: 0; }
.gma-mahasabha__day strong {
  display: block; font-size: .9rem; color: var(--gma-ink);
  margin-bottom: .5rem; border-bottom: 1px solid var(--gma-border); padding-bottom: .4rem;
}
.gma-mahasabha__day ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.gma-mahasabha__day li { font-size: .875rem; color: var(--gma-text-muted); }

/* ══════════════════════════════════════════════
   ROADMAP
   ══════════════════════════════════════════════ */
.gma-roadmap { background: var(--gma-bg); border-top: 1px solid var(--gma-border); }
.gma-roadmap__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 700px) { .gma-roadmap__grid { grid-template-columns: 1fr; } }
.gma-roadmap__phase {
  background: var(--gma-white);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--gma-shadow);
}
.gma-roadmap__phase--mid { border-top: 3px solid var(--gma-primary); transform: translateY(-4px); }
.gma-roadmap__phase-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gma-primary); margin-bottom: .4rem; }
.gma-roadmap__phase-title { font-size: 1.25rem; font-weight: 800; color: var(--gma-text); margin: 0 0 1rem; }
.gma-roadmap__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.gma-roadmap__items li { font-size: .9rem; color: var(--gma-text-muted); padding-left: 1.2rem; position: relative; }
.gma-roadmap__items li::before { content: '✓'; position: absolute; left: 0; color: var(--gma-primary); font-weight: 700; }
.gma-roadmap__goal { text-align: center; font-size: 1.1rem; color: var(--gma-text-muted); }

/* ── Join CTA extras ── */
.gma-join__contact { margin-top: 1.5rem; font-size: .9rem; opacity: .75; }
.gma-join__contact a { text-decoration: underline; }

/* ── Footer extras ── */
.gma-footer__brand-telugu { font-size: .875rem; color: rgba(255,255,255,.55); font-family: 'Noto Serif Telugu', serif; margin: .1rem 0 .6rem; }
/* Single contact line (phone + email). Replaces the old separate EIN +
   Helpline lines — EIN now appears once, in the copyright row. */
.gma-footer__brand-contact { font-size: .875rem; color: rgba(255,255,255,.65); margin: 0; }
.gma-footer__brand-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.gma-footer__brand-contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   DASHBOARD (member portal)
   ══════════════════════════════════════════════ */
.gma-dashboard-summary {
  padding: 1.5rem 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .gma-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gma-stats__item:nth-child(2) { border-right: none; }
}

/* ══════════════════════════════════════════════
   BODY/HTML — FULL SAFFRON BACKGROUND
   Like ATA: the entire page is immersed in the
   festival palette, not just coloured sections.
   ══════════════════════════════════════════════ */
/* Calm warm-white canvas — the entire site sits on one quiet background.
   No turmeric frame, no busy patterns. Color comes from content, not the page. */
html, body {
  background-color: var(--gma-bg);
  background-image: none;
}

/* Hide Drupal/Olivero's own header and primary menu regions on ALL pages —
   GMA renders its own header + menubar directly in the page template */
.layout-header,
.region--primary-menu,
.block-system-branding-block,
[id*="block-gma-branding"],
[id*="block-olivero"] { display: none !important; }

/* Hide the Drupal page title on the front page (the "Home" h1) */
.path-frontpage .page-title,
.path-frontpage h1.page__title,
.path-frontpage .block-page-title-block,
.path-frontpage .page-title-block { display: none !important; }

/* On inner pages: hide Drupal's default h1 page title (our content has its own
   hero heading via gma-page-hero in the node body) */
.gma-inner-page-wrapper .page-title,
.gma-inner-page-wrapper h1.page__title,
.gma-inner-page-wrapper .block-page-title-block { display: none !important; }

/* Inner page: clean white content area */
.gma-inner-page-wrapper {
  background: var(--gma-white);
  min-height: 60vh;
}

/* Hide node tabs (View / Edit / Delete) on all non-admin pages */
.path-frontpage .tabs--primary,
.path-frontpage nav.tabs,
.gma-inner-page-wrapper .tabs--primary,
.gma-inner-page-wrapper nav.tabs { display: none !important; }

/* Inner page breadcrumb — minimal */
.gma-inner-page-wrapper nav.breadcrumb {
  padding: .5rem 1.5rem;
  font-size: .85rem;
  color: var(--gma-text-muted);
  background: var(--gma-bg);
  border-bottom: 1px solid var(--gma-border);
}

/* ══════════════════════════════════════════════
   FREE FOREVER BANNER
   GMA's #1 differentiator — unmissable
   ══════════════════════════════════════════════ */
/* Free banner: slim crimson accent strip directly under the gold nav.
   One of the few saturated moments — reinforces the #1 message. */
.gma-free-banner {
  background: #B11E2F;   /* intentional crimson — this banner stays red regardless of palette */
  color: #fff;
  padding: .6rem 0;
  font-size: .9rem;
  text-align: center;
}
.gma-free-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.gma-free-banner__icon { display: inline-flex; }
.gma-free-banner__cta {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-left: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.gma-free-banner__cta:hover { border-bottom-color: #fff; }

/* ══════════════════════════════════════════════
   MANIFESTO AS ART — full-width visual statement
   Large Telugu script, not a sidebar widget
   ══════════════════════════════════════════════ */
/* Manifesto: the ONE feature band — a quiet crimson-tinted section so it
   reads as special without another dark gradient. Light, not loud. */
.gma-manifesto-full {
  background: var(--gma-primary-tint);
  color: var(--gma-ink);
  padding: 4.5rem 1.5rem;
  position: relative;
  border-top: 1px solid var(--gma-border);
  border-bottom: 1px solid var(--gma-border);
}
.gma-manifesto-full::before { content: none; }
.gma-manifesto-full__layout {
  max-width: var(--gma-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 720px) { .gma-manifesto-full__layout { grid-template-columns: 1fr; } }

.gma-manifesto-full__kicker {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gma-primary);
  margin-bottom: .75rem;
}
.gma-manifesto-full__headline {
  margin: 0 0 1.25rem;
  line-height: 1.1;
}
.gma-manifesto-full__te {
  display: block;
  font-family: 'Noto Serif Telugu', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gma-primary);
  line-height: 1.2;
  margin-bottom: .2rem;
}
.gma-manifesto-full__en {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gma-ink);
}
.gma-manifesto-full__body {
  color: var(--gma-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

/* The 9-item manifesto grid */
.gma-manifesto-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 480px) { .gma-manifesto-full__grid { grid-template-columns: repeat(2, 1fr); } }

.gma-mf-item {
  background: var(--gma-surface);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius-sm);
  padding: .85rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  text-align: center;
}
.gma-mf-item span:first-child {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 1rem;
  color: var(--gma-primary);
  font-weight: 600;
  line-height: 1.5;
}
.gma-mf-item span:last-child {
  font-size: .72rem;
  color: var(--gma-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════════
   PROMISE CARDS — what only GMA can say
   ══════════════════════════════════════════════ */
.gma-promise {
  background: var(--gma-bg);
}
.gma-promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.gma-promise__card {
  background: var(--gma-surface);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--gma-shadow-sm);
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.gma-promise__card:hover { box-shadow: var(--gma-shadow); transform: translateY(-2px); }
.gma-promise__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gma-primary-tint); color: var(--gma-primary);
  margin-bottom: .9rem;
}
.gma-promise__title { font-size: 1.05rem; font-weight: 800; color: var(--gma-ink); margin: 0 0 .4rem; }
.gma-promise__body { font-size: .9rem; color: var(--gma-text-muted); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════
   NEWS + CONNECT 2-COL
   ══════════════════════════════════════════════ */
.gma-news-connect { background: var(--gma-bg); border-top: 1px solid var(--gma-border); }
.gma-news-connect__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) { .gma-news-connect__grid { grid-template-columns: 1fr; } }

/* ── Connect column cards (GMA-specific actions) ── */
.gma-connect-col { display: flex; flex-direction: column; gap: 1rem; }

.gma-connect-card {
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 3px 10px rgba(107,28,28,.1);
}

.gma-connect-card__icon { font-size: 1.6rem; margin-bottom: .35rem; display: block; }
.gma-connect-card__title { font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .4rem; }
.gma-connect-card__body  { font-size: .85rem; margin: 0 0 .75rem; line-height: 1.5; }
.gma-connect-card__link  { font-size: .85rem; font-weight: 600; text-decoration: none; }

/* Join — gold */
.gma-connect-card--join {
  background: linear-gradient(135deg, #F4A118, var(--gma-accent));
  color: #3a1a00;
}
.gma-connect-card--join .gma-connect-card__title { color: #3a1a00; }

/* WhatsApp — green */
.gma-connect-card--whatsapp {
  background: linear-gradient(135deg, var(--gma-primary), var(--gma-primary));
  color: #fff;
}
.gma-connect-card--whatsapp .gma-connect-card__title { color: #fff; }
.gma-connect-card--whatsapp .gma-connect-card__body  { color: rgba(255,255,255,.85); }

/* SEVA — kumkum red */
.gma-connect-card--seva {
  background: linear-gradient(135deg, var(--gma-primary), var(--gma-primary-dark));
  color: #fff;
  text-align: center;
}
.gma-connect-card--seva .gma-connect-card__title { color: #fff; }
.gma-connect-card--seva .gma-connect-card__body  { color: rgba(255,255,255,.8); }
.gma-connect-card__seva-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: .1rem 0 .4rem;
}
.gma-connect-card--seva .gma-connect-card__link { color: var(--gma-accent-dark); }

/* Social */
.gma-connect-card--social {
  background: #fff;
  border: 1px solid var(--gma-border);
}
.gma-connect-card--social .gma-connect-card__title { color: var(--gma-text); }

/* ══════════════════════════════════════════════
   OLD HOMEPAGE 2-COL GRID (kept for compatibility)
   ══════════════════════════════════════════════ */
.gma-homepage-wrap { padding: 2rem 0 3rem; }
.gma-homepage-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .gma-homepage-grid { grid-template-columns: 1fr; }
}

/* ── Home section header ── */
.gma-home-section {
  margin-bottom: 2rem;
}

.gma-home-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gma-primary);
  padding-bottom: .5rem;
}

.gma-home-section__title { margin: 0; }

.gma-home-section__title-badge {
  background: var(--gma-primary);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .75rem;
  border-radius: 4px;
}

.gma-home-section__more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gma-primary);
  text-decoration: none;
}
.gma-home-section__more:hover { text-decoration: underline; }

/* ── News cards ── */
.gma-news-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gma-news-card {
  background: #fff;
  border: 1px solid var(--gma-border);
  border-left: 4px solid var(--gma-primary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  box-shadow: 0 2px 8px rgba(107,28,28,.1);
}

.gma-news-card__date {
  background: var(--gma-primary);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: .4rem .3rem;
  line-height: 1.2;
}
.gma-news-card__day { display: block; font-size: 1.4rem; font-weight: 800; }
.gma-news-card__mon { display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.gma-news-card__yr  { display: block; font-size: .6rem; opacity: .75; }

.gma-news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gma-text);
  margin: 0 0 .35rem;
}
.gma-news-card__summary {
  font-size: .875rem;
  color: var(--gma-text-muted);
  margin: 0 0 .4rem;
  line-height: 1.55;
}
.gma-news-card__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gma-primary);
  text-decoration: none;
}
.gma-news-card__link:hover { text-decoration: underline; }

/* ── Upcoming Events list (homepage, dynamic from Drupal) ──
   Date-string-first rows. Each row has a crimson date chip on the left and
   the event title + meta on the right, matching the news-card language but
   tuned for events whose exact day may not be set yet. */
.gma-events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gma-event-row {
  background: #fff;
  border: 1px solid var(--gma-border);
  border-left: 4px solid var(--gma-primary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 2px 8px rgba(107,28,28,.1);
  transition: box-shadow .15s ease, transform .15s ease;
}
.gma-event-row:hover { box-shadow: var(--gma-shadow); transform: translateY(-2px); }

/* Date chip — supports either a day+month stack OR a month/year string. */
.gma-event-row__date {
  background: var(--gma-primary);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: .45rem .35rem;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.gma-event-row__day  { display: block; font-size: 1.5rem; font-weight: 800; }
.gma-event-row__mon  { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.gma-event-row__when { display: block; font-size: .72rem; font-weight: 700; line-height: 1.3; }

.gma-event-row__body { min-width: 0; }
.gma-event-row__title {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gma-text);
  text-decoration: none;
  margin: 0 0 .3rem;
}
a.gma-event-row__title:hover { color: var(--gma-primary); text-decoration: underline; }
.gma-event-row__meta {
  font-size: .82rem;
  color: var(--gma-text-muted);
  margin: 0;
  line-height: 1.45;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .6rem;
}
.gma-event-row__fulldate { font-weight: 600; color: var(--gma-text); }
.gma-event-row__fulldate::after { content: "·"; margin-left: .6rem; color: var(--gma-border); }
.gma-events-empty {
  font-size: .9rem;
  color: var(--gma-text-muted);
  background: #fff;
  border: 1px dashed var(--gma-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.gma-events-empty a { color: var(--gma-primary); font-weight: 600; }

/* ── Featured programs grid ── */
.gma-featured-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 600px) {
  .gma-featured-programs { grid-template-columns: repeat(2, 1fr); }
}

.gma-feat-prog {
  background: #fff;
  border: 1px solid var(--gma-border);
  border-radius: 8px;
  padding: .9rem .75rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  box-shadow: 0 2px 6px rgba(107,28,28,.08);
  transition: transform .15s, box-shadow .15s;
}
.gma-feat-prog:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(107,28,28,.15); }

.gma-feat-prog__icon { font-size: 1.6rem; line-height: 1; }
.gma-feat-prog__name { font-size: .85rem; font-weight: 700; color: var(--gma-primary); }
.gma-feat-prog__sub  { font-size: .72rem; color: var(--gma-text-muted); }

/* ── Matrimonial strip ── */
.gma-matrimonial-strip {
  background: linear-gradient(135deg, var(--gma-primary) 0%, var(--gma-primary) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gma-matrimonial-strip__icon { font-size: 2.2rem; flex-shrink: 0; }
.gma-matrimonial-strip__text { flex: 1; min-width: 200px; }
.gma-matrimonial-strip__title { font-size: 1.1rem; font-weight: 800; margin: 0 0 .3rem; }
.gma-matrimonial-strip__sub { font-size: .875rem; opacity: .9; margin: 0; line-height: 1.5; }

/* ── Sidebar widgets ── */
.gma-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;   /* below the sticky nav */
}

.gma-widget {
  background: #fff;
  border: 1px solid var(--gma-border);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 3px 10px rgba(107,28,28,.1);
}

.gma-widget__title {
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: var(--gma-primary);
  margin: -1.25rem -1.25rem .9rem;
  padding: .5rem 1.25rem;
  border-radius: 10px 10px 0 0;
}

/* President widget */
.gma-widget--president .gma-widget__title { background: var(--gma-maroon); }
.gma-president { display: flex; flex-direction: column; gap: .75rem; }
.gma-president__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gma-saffron-pale), var(--gma-border));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--gma-border);
  flex-shrink: 0;
  margin: 0 auto;
}
.gma-president__quote {
  font-size: .875rem;
  color: var(--gma-text-muted);
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 .4rem;
  border-left: 3px solid var(--gma-accent);
  padding-left: .75rem;
}
.gma-president__name { font-weight: 700; font-size: .85rem; color: var(--gma-primary); margin: 0; }
.gma-president__placeholder { font-size: .7rem; color: #aaa; margin: 0; }

/* Member widget */
.gma-widget--member { text-align: center; }
.gma-widget--member .gma-widget__title { background: var(--gma-saffron); }
.gma-widget__member-icon { font-size: 2rem; margin-bottom: .4rem; }
.gma-widget__body { font-size: .85rem; color: var(--gma-text-muted); margin: 0 0 1rem; line-height: 1.55; }

/* Social widget */
.gma-widget--social .gma-widget__title { background: var(--gma-ink); }
.gma-social-links { display: flex; flex-direction: column; gap: .6rem; }
.gma-social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  border-radius: var(--gma-radius-sm);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  background: var(--gma-bg);
  border: 1px solid var(--gma-border);
  color: var(--gma-ink);
  transition: background .15s, border-color .15s;
}
.gma-social-link:hover { background: var(--gma-primary-tint); border-color: var(--gma-primary); }
.gma-social-link__icon { color: var(--gma-primary); display: inline-flex; }
.gma-social-link--yt    { }
.gma-social-link--email { }
.gma-social-link--phone { }
.gma-social-link__icon  { font-size: 1rem; flex-shrink: 0; }

/* Newsletter widget */
.gma-widget--newsletter .gma-widget__title { background: var(--gma-purple); }

/* Links widget */
.gma-widget--links .gma-widget__title { background: var(--gma-ink); }
.gma-widget-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.gma-widget-links li { border-bottom: 1px solid var(--gma-border); }
.gma-widget-links li:last-child { border-bottom: none; }
.gma-widget-links a {
  display: block;
  padding: .45rem .25rem;
  font-size: .875rem;
  color: var(--gma-text);
  text-decoration: none;
  transition: color .12s, padding-left .12s;
}
.gma-widget-links a:hover { color: var(--gma-primary); padding-left: .5rem; }
.gma-widget-links a::before { content: '› '; opacity: .5; }

/* SEVA widget */
.gma-widget--seva {
  background: linear-gradient(135deg, var(--gma-primary), var(--gma-primary-dark));
  border-color: transparent;
  text-align: center;
  color: #fff;
}
.gma-widget--seva .gma-widget__title {
  background: rgba(0,0,0,.2);
  color: #fff;
}
.gma-widget__seva-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: .25rem 0 .5rem;
  letter-spacing: .02em;
}
.gma-widget--seva .gma-widget__body { color: rgba(255,255,255,.85); }
.gma-widget__seva-link {
  color: var(--gma-accent-dark);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
}
.gma-widget__seva-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════════════════
   MATRIMONY-SPECIFIC CHROME
   Rendered only when matrimony.gmaworld.org is the request host
   (controlled by is_matrimony in gma.theme + page.html.twig).
   Replaces the GMA topbar + brand row + main menu with a minimal,
   distraction-free header. Brand identity stays via the GMA emblem +
   "GMA Matrimonial" wordmark.
   ════════════════════════════════════════════════════════════════════════════ */
.gma-matrimony-header {
  background: #fff;
  border-bottom: 1px solid var(--gma-border, #ECE5DD);
  padding: .75rem 0;
}
.gma-matrimony-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.gma-matrimony-header__brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--gma-primary, #154D79);
}
.gma-matrimony-header__brand .gma-emblem img {
  display: block;
  width: 44px;
  height: 44px;
}
.gma-matrimony-header__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.gma-matrimony-header__title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gma-primary, #154D79);
  letter-spacing: .005em;
}
.gma-matrimony-header__sub {
  font-size: .72rem;
  color: var(--gma-text-muted, #6E665E);
  margin-top: .12rem;
  letter-spacing: .01em;
}
.gma-matrimony-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}
.gma-matrimony-header__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gma-ink, #1C1A19);
  white-space: nowrap;
}
.gma-matrimony-header__link:hover { color: var(--gma-primary, #154D79); }
.gma-matrimony-header__link--login {
  background: var(--gma-primary-tint, #EAF1F6);
  color: var(--gma-primary, #154D79);
  padding: .4rem .85rem;
  border-radius: 6px;
}
.gma-matrimony-header__link--back {
  color: var(--gma-text-muted, #6E665E);
  font-weight: 500;
  font-size: .85rem;
}

/* Mobile: stack brand + actions; keep the back link visible but smaller. */
@media (max-width: 640px) {
  .gma-matrimony-header__inner {
    gap: .6rem;
    padding: 0 .9rem;
  }
  .gma-matrimony-header__actions {
    gap: .65rem;
    width: 100%;
    justify-content: flex-end;
  }
  .gma-matrimony-header__title {
    font-size: 1.05rem;
  }
  .gma-matrimony-header__sub {
    display: none;
  }
}
