
/* ── v3 HERO FULL WIDTH OVERRIDE ──
   lbf-hero-static.css constrains .lbf-hero-static to max-width:1200px.
   In v3 the hero must fill edge-to-edge so the photo goes behind the header. */
/*
 * LBF Homepage v3 — lbf-home-v3.css
 * ─────────────────────────────────────────────────────────────────
 * Premium blueberry festival design system.
 * Scoped to body.lbf-home-v3
 * Fonts: Outfit (display) + Plus Jakarta Sans (UI/body)
 * Brand: #0033ac (blue), #038203 (green)
 * ─────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   §1  ROOT CANVAS
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 {
  background: radial-gradient(circle at top center, #edf5ff 0%, #eef7f0 26%, #f7fbff 52%, #fffdf8 78%, #fbfdff 100%);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Outer centering wrapper */
body.lbf-home-v3 .v3-canvas {
  max-width: 1480px;
  margin: 0 auto;
  /* Top padding: floating header (var --header-h) + small visual gap */
  padding: calc(var(--header-h, 82px) + 0.5rem)
           clamp(0.75rem, 2vw, 1.5rem)
           clamp(1.5rem, 3vw, 2.5rem);
}
/* ═══════════════════════════════════════════════════════════════
   v3-outer-card — single rounded container holding hero + content
   This gives the mockup's big rounded-corner card effect.
   overflow:hidden clips the hero photo to the rounded corners.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-outer-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 32px 100px rgba(0,51,172,0.13);
  background: rgba(255,255,255,0.84);
}



/* Main card shell — rounded container holding everything below hero */
body.lbf-home-v3 .v3-shell {
  /* Rounded corners now handled by v3-outer-card wrapper */
  overflow: visible;
  background: rgba(255,255,255,0.84);
  /* backdrop-filter removed — was blurring hero background-image */
}

/* ═══════════════════════════════════════════════════════════════
   §2  HERO — full-bleed photo background, text left-aligned
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  min-height: clamp(480px, 56vw, 680px);
  background: #e8f0fe; /* fallback while photo loads */
}

/* Full-bleed photo — no dark overlay, photo shows bright */
body.lbf-home-v3 .v3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}
body.lbf-home-v3 .v3-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}

/* No overlays — photo shows fully */
body.lbf-home-v3 .v3-hero::before,
body.lbf-home-v3 .v3-hero::after {
  content: none;
  display: none;
}

/* Inner layout */
body.lbf-home-v3 .v3-hero-inner {
  position: relative; z-index: 10;
  width: 100%;
  max-width: none;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.5rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: flex-start;
  align-items: flex-start;
  min-height: clamp(480px, 56vw, 680px);
}

/* ── Date pill — solid dark navy ── */
body.lbf-home-v3 .v3-hero-date {
  display: inline-flex; align-items: center; gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  background: #001a6e !important;
  border: none !important;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 1.125rem;
  white-space: nowrap;       /* prevent wrapping on mobile */
  flex-wrap: nowrap;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}
/* Shrink date pill on very small screens */
@media (max-width: 420px) {
  body.lbf-home-v3 .v3-hero-date {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    gap: 0.3rem;
  }
  body.lbf-home-v3 .v3-hero-date svg { width: 11px !important; height: 11px !important; }
}
body.lbf-home-v3 .v3-hero-date svg,
body.lbf-home-v3 .v3-hero-date .v3-hero-date-icon svg {
  width: 14px; height: 14px;
  color: #ffffff !important;   /* override .lbf-hs-date svg { color:#1841ad } */
  stroke: #ffffff !important;  /* SVG uses stroke="currentColor" */
  opacity: 1;
}

/* ── Festival logo (replaces headline text) ── */
body.lbf-home-v3 .v3-hero-logo {
  margin-bottom: 1.25rem;
}
body.lbf-home-v3 .v3-hero-logo-img {
  width: clamp(260px, 36vw, 440px);
  height: auto;
  display: block;
  /* Drop shadow so logo pops off the photo */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.22))
          drop-shadow(0 1px 4px rgba(0,0,0,0.18));
}

/* ── CTA buttons — smaller to match mockup ── */
body.lbf-home-v3 .v3-hero-btns {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
body.lbf-home-v3 .v3-btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #001a6e 0%, #0037a7 100%);
  color: #ffffff; border: none; border-radius: 999px;
  padding: 0.55rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(0,26,110,0.30);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,26,110,0.38);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-primary svg { width: 13px; height: 13px; }

body.lbf-home-v3 .v3-btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none;
  border-radius: 999px; padding: 0.54rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(29,78,216,0.30);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(29,78,216,0.42);
  filter: brightness(1.08);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-ghost svg { width: 13px; height: 13px; }

body.lbf-home-v3 .v3-btn-hero-green {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #038203 0%, #16a34a 100%);
  color: #fff; border: none;
  border-radius: 999px; padding: 0.55rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(3,130,3,0.32);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3,130,3,0.42);
  filter: brightness(1.08);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-green svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  body.lbf-home-v3 .v3-hero-h1 { max-width: 100%; font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-hero-sub { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   §3  STATS BAND — frosted pill, first child of v3-shell
   Negative margin-top pulls it up so it overlaps the hero bottom.
   This avoids all overflow:hidden parent clipping issues.
═══════════════════════════════════════════════════════════════ */

/* Pill sits as first element of the white shell, pulled up into the hero */
body.lbf-home-v3 .v3-stats-band {
  position: relative;
  z-index: 30;
  /* Pull up past shell padding-top (3rem) + half pill height (~1.25rem) */
  margin-top: calc(-3rem - 1.25rem);
  margin-bottom: 1.25rem;

  display: flex;
  justify-content: center;

  width: fit-content;
  max-width: min(960px, calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.80);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;       /* tighter vertical padding = skinnier bar */
  box-shadow:
    0 16px 48px rgba(0, 51, 172, 0.16),
    0 3px 10px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Stat items in a single horizontal row */
body.lbf-home-v3 .v3-stats-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Divider line between items */
body.lbf-home-v3 .v3-stat-card + .v3-stat-card {
  border-left: 1px solid rgba(0, 51, 172, 0.12);
}

/* Individual stat card */
body.lbf-home-v3 .v3-stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  padding: 0.2rem 1.375rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}

/* Circular blue icon badge */
body.lbf-home-v3 .v3-stat-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: linear-gradient(135deg, #0037a7, #0a58ca);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 51, 172, 0.28);
}
body.lbf-home-v3 .v3-stat-icon svg {
  width: 13px; height: 13px;
}

/* Number — centred above label */
body.lbf-home-v3 .v3-stat-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: #0033ac;
  line-height: 1;
  display: block;
  text-align: center;
}

/* Label — centred below number */
body.lbf-home-v3 .v3-stat-lbl {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.1rem;
  display: block;
  text-align: center;
}

/* Inner text wrapper — stack num + lbl vertically, centred */
body.lbf-home-v3 .v3-stat-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Shell: compensate for the negative margin so content below starts correctly */
body.lbf-home-v3 .v3-shell.post-hero-first {
  padding-top: 3rem;  /* creates space; pill's negative margin pulls it into hero */
  position: relative;
  z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════
   §4  MAIN CONTENT AREA
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-main {
  background: linear-gradient(180deg, #f8fbff 0%, #fffdf8 100%);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
  display: flex; flex-direction: column;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
}

/* ── Shared section card ── */
body.lbf-home-v3 .v3-card {
  border: 1px solid #e6eefc; border-radius: 30px;
  /* Extra right padding keeps content clear of the absolute chevron */
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(3.5rem, 5vw, 4.5rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 18px 38px rgba(0,51,172,0.065);
  position: relative; /* anchors the absolute-positioned collapse chevron */
}

/* ── Section header row ── */
body.lbf-home-v3 .v3-sec-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}

/* ── Centred section heading treatment ── */
body.lbf-home-v3 .lbf-sec-hdr-centred {
  flex-direction: column;
  align-items: center !important;
  text-align: center;
  justify-content: center !important;
  margin-bottom: 0.75rem;
}
body.lbf-home-v3 .lbf-sec-heading-block {
  text-align: center;
  width: 100%;
}
/* Decorative side lines on eyebrow */
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::before,
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 2rem;
  background: linear-gradient(90deg, transparent, rgba(47,103,201,0.4));
}
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::after {
  background: linear-gradient(90deg, rgba(47,103,201,0.4), transparent);
}
/* Centred title */
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-title {
  text-align: center;
}
/* Intro paragraph — two-line centred copy under heading */
body.lbf-home-v3 .v3-sec-intro {
  text-align: center;
  max-width: 100ch;
  margin: 0 auto 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}
/* Pill-link that uses the new gradient (Become a Sponsor, etc.) */
body.lbf-home-v3 .lbf-pill-btn-grad {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%) !important;
  color: #fff !important;
}
body.lbf-home-v3 .v3-sec-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #2f67c9; margin-bottom: 0.25rem;
}
body.lbf-home-v3 .v3-sec-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem); font-weight: 700;
  letter-spacing: -0.03em; color: #0f172a; line-height: 1.1; margin: 0;
}
body.lbf-home-v3 .v3-sec-title span { color: #0033ac; }
body.lbf-home-v3 .v3-sec-sub {
  font-size: 0.875rem; color: #64748b; margin-top: 0.2rem;
}

/* ── Pill link button ── */
body.lbf-home-v3 .v3-pill-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,51,172,0.07);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.12s ease;
}
body.lbf-home-v3 .v3-pill-link:hover { transform: translateY(-1px); text-decoration: none; color: #0033ac; }

/* ── Two-column grid layout ── */
body.lbf-home-v3 .v3-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   §5  ATTRACTIONS
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-attr-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem;
}
body.lbf-home-v3 .attr-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #edf2ff; border-radius: 22px;
  padding: 0.875rem; box-shadow: 0 8px 18px rgba(0,51,172,0.04);
  display: flex; align-items: flex-start; gap: 0.75rem;
  transition: box-shadow 0.15s ease;
}
body.lbf-home-v3 .attr-card:hover { box-shadow: 0 12px 26px rgba(0,51,172,0.09); }
body.lbf-home-v3 .attr-img {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #edf4ff, #eef8ef 56%, #fff4dd);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,51,172,0.05);
  font-size: 1.25rem; overflow: visible; /* visible so SVG isn't clipped */
  color: #0033ac;
}
body.lbf-home-v3 .attr-img svg { /* Lucide SVG icons in attr-img */
  width: 22px; height: 22px; flex-shrink: 0;
}
body.lbf-home-v3 .attr-img span { /* wrapper span around icon output */
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; color: #0033ac;
}
body.lbf-home-v3 .attr-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
body.lbf-home-v3 .attr-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.2rem;
}
body.lbf-home-v3 .attr-body p {
  font-size: 0.8125rem; line-height: 1.5; color: #64748b; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
body.lbf-home-v3 .attr-body .tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.15rem 0.55rem; border-radius: 999px; margin-top: 0.35rem;
}
/* Legacy attr card icon float — hide in v3 */
body.lbf-home-v3 .attr-card-icon-float { display: none; }

/* ═══════════════════════════════════════════════════════════════
   §6  SCHEDULE
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #schedule.section { padding: 0; }
body.lbf-home-v3 #schedule .lbf-sec-card { display: none; } /* hidden — replaced by v3-card */

body.lbf-home-v3 .v3-sched-wrap { display: flex; flex-direction: column; gap: 0.75rem; }

body.lbf-home-v3 .day-tabs {
  /* Guaranteed single row — flex:1 on each tab shares width, nowrap prevents overflow */
  display: flex; flex-wrap: nowrap; gap: 0.3rem; margin-bottom: 0.75rem;
  width: 100%; overflow-x: auto; /* scrollable fallback if truly too many tabs */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* hide scrollbar — looks clean */
}
body.lbf-home-v3 .day-tabs::-webkit-scrollbar { display: none; }
body.lbf-home-v3 .day-tab {
  background: #f1f5fd; border: none; border-radius: 999px;
  flex: 1 1 0; min-width: 0; /* equal share, allowed to shrink to nothing */
  padding: 0.3rem 0.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  color: #4b68b0; text-transform: uppercase; text-align: center;
  cursor: pointer; transition: background 0.15s, color 0.15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.lbf-home-v3 .day-tab.active,
body.lbf-home-v3 .day-tab:hover {
  background: #0033ac; color: #fff;
}
body.lbf-home-v3 .sched-panel { display: none; }
body.lbf-home-v3 .sched-panel.active { display: block; }
body.lbf-home-v3 .sched-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0.875rem; /* side padding: time off left, badge off right */
  border-bottom: 1px solid #f0f4ff;
}
body.lbf-home-v3 .sched-row:last-child { border-bottom: none; }
body.lbf-home-v3 .sched-time {
  font-size: 0.8125rem; font-weight: 700; color: #0033ac;
  white-space: nowrap; min-width: 68px; padding-top: 0.1rem;
}
body.lbf-home-v3 .sched-info h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.15rem;
}
body.lbf-home-v3 .sched-loc {
  font-size: 0.8125rem; color: #6b7280; margin: 0;
}
body.lbf-home-v3 .sched-cat { margin-left: auto; flex-shrink: 0; padding-left: 0.5rem; }
body.lbf-home-v3 .sched-cat-badge {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; border: 1px solid;
}
body.lbf-home-v3 .lbf-schedule-soon {
  color: #64748b; font-size: 0.9375rem; text-align: center; padding: 2rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   §7  ENTERTAINERS
═══════════════════════════════════════════════════════════════ */
/* Blueberry-themed background when no custom bg is set via Studio */
body.lbf-home-v3 #v3-entertainers:not([style*="background"]) {
  background: linear-gradient(155deg,
    #f5f0ff 0%, #eef4ff 30%, #e8f0ff 55%,
    #f3eeff 80%, #f8f5ff 100%) !important;
  border-color: #c8d0ff !important;
}
body.lbf-home-v3 .v3-ent-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.875rem;
}
body.lbf-home-v3 .v3-ent-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 60%, #f5f0ff 100%);
  border: 1px solid rgba(180,200,255,0.55); border-radius: 24px;
  padding: 1rem; box-shadow: 0 10px 22px rgba(60,80,200,0.07);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
body.lbf-home-v3 .v3-ent-card:hover {
  box-shadow: 0 16px 36px rgba(60,80,200,0.15), 0 0 0 1px rgba(106,77,255,0.15);
  border-color: rgba(106,77,255,0.25);
  transform: translateY(-3px);
}
body.lbf-home-v3 .v3-ent-thumb {
  width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
body.lbf-home-v3 .v3-ent-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.lbf-home-v3 .v3-ent-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0;
}
body.lbf-home-v3 .v3-ent-stage {
  font-size: 0.8125rem; color: #64748b; margin: 0.1rem 0 0;
}
body.lbf-home-v3 .v3-ent-time-pill {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #eff4ff, #f3eeff);
  color: #4338ca; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(67,56,202,0.08);
  border: 1px solid #ddd6ff; width: fit-content;
}
/* Empty state */
body.lbf-home-v3 .v3-ent-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 2.5rem 1rem; color: #94a3b8;
  font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════════
   §8  PAGEANT
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #pageant.section { padding: 0; }
body.lbf-home-v3 .v3-pag-intro-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
body.lbf-home-v3 .v3-pag-intro-row p {
  font-size: 0.9375rem; color: #475569; margin: 0; max-width: 480px;
}
body.lbf-home-v3 .v3-pag-grid {
  display: grid !important;    /* override .cat-grid { display:flex } in style.css */
  /* 3 per row — all 6 categories side-by-side in 2 rows */
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: none !important;  /* override .cat-grid max-width:900px */
  gap: 0.875rem; margin-bottom: 1.25rem;
}

/* Override .cat-card flex sizing from style.css so grid cells work correctly */
body.lbf-home-v3 .v3-pag-grid .cat-card {
  width: auto !important;
  flex-shrink: unset !important;
  min-width: 0 !important;
}
body.lbf-home-v3 .cat-card {
  /* Royal blue-to-green gradient fill */
  background: linear-gradient(135deg, #eef3ff 0%, #e8f4e8 60%, #f0f8ff 100%);
  border: 1px solid rgba(0,51,172,0.12);
  border-radius: 20px;
  padding: 1.25rem 1.375rem;
  box-shadow: 0 8px 22px rgba(0,51,172,0.08);
  /* Vertical stack: icon on top, text below — no overflow */
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  gap: 0.625rem;
  min-height: 110px; /* tall enough for icon + two-line name + age */
  transition: box-shadow 0.15s, background 0.15s;
}
body.lbf-home-v3 .cat-card:hover { box-shadow: 0 12px 24px rgba(3,130,3,0.09); }
body.lbf-home-v3 .cat-card--empty { opacity: 0.45; border-style: dashed; }
body.lbf-home-v3 .cat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, #0033ac, #1f64d8 60%, #038203);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0,51,172,0.22);
}
body.lbf-home-v3 .cat-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700; color: #0f172a; line-height: 1.25;
  text-align: center; white-space: normal;
  word-break: break-word; /* last resort wrap */
}
body.lbf-home-v3 .cat-age { font-size: 0.8125rem; color: #475569; margin-top: 0; text-align: center; }

/* Pageant edit hint */
body.lbf-home-v3 .lbf-pag-edit-hint {
  font-size: 0.8rem; color: #94a3b8; margin-top: 0.5rem;
  background: #f8faff; padding: 0.5rem 0.75rem; border-radius: 8px;
}

/* Pageant buttons */
body.lbf-home-v3 .v3-pag-btns {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1rem;
  justify-content: center;
  padding-bottom: 1.5rem;
}
body.lbf-home-v3 .v3-pag-btns .btn-gold {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 12px 22px rgba(0,51,172,0.18);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
}
body.lbf-home-v3 .v3-pag-btns .btn-ghost-white {
  background: #fff; color: #374151;
  border: 1px solid #dfe9ff; border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   §9  REGISTRATION + SPONSORS SIDE-BY-SIDE
═══════════════════════════════════════════════════════════════ */
/* Registration grid — compact 2-col */
body.lbf-home-v3 #forms.section { padding: 0; }
body.lbf-home-v3 .v3-reg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem;
}
body.lbf-home-v3 .form-card {
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 20px;
  padding: 0.875rem;
  box-shadow: 0 8px 18px rgba(0,51,172,0.04);
  border-top: 3px solid #0033ac; /* overridden inline by card color */
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s;
}
/* Icon + title on same row */
body.lbf-home-v3 .form-card .form-card-header {
  display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.375rem;
}
body.lbf-home-v3 .form-card:hover { box-shadow: 0 12px 26px rgba(0,51,172,0.08); }
body.lbf-home-v3 .form-card .form-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef 56%, #fff4dd);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,51,172,0.05);
  margin-bottom: 0; color: #0033ac;
}
body.lbf-home-v3 .form-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700; color: #0f172a;
  margin: 0; line-height: 1.25;
}
body.lbf-home-v3 .form-card p {
  font-size: 0.8rem; color: #64748b; line-height: 1.45; margin: 0 0 0.5rem;
}
body.lbf-home-v3 .feat-list {
  list-style: none; padding: 0; margin: 0 0 0.625rem;
}
body.lbf-home-v3 .feat-list li {
  font-size: 0.75rem; color: #475569; padding: 0.1rem 0;
  padding-left: 1rem; position: relative;
}
body.lbf-home-v3 .feat-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #038203; font-weight: 700; font-size: 0.7rem;
}
body.lbf-home-v3 .form-card .btn-blue.btn-full {
  /* Pill matching tier-view-all style but with gradient fill */
  display: flex; align-items: center; gap: 0.35rem;
  width: calc(100% - 0px); /* full width of the card */
  justify-content: center;
  margin: 0.75rem 0 0;
  text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff !important; border: none; border-radius: 999px;
  padding: 0.3rem 0.875rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,51,172,0.18);
  transition: filter 0.12s;
}
body.lbf-home-v3 .form-card .btn-blue.btn-full:hover {
  filter: brightness(1.1); text-decoration: none; color: #fff !important;
}

/* ── Sponsors ── */
body.lbf-home-v3 #sponsors.section { padding: 0; }
body.lbf-home-v3 .v3-tier-block { margin-bottom: 1rem; }
body.lbf-home-v3 .v3-tier-block:last-child { margin-bottom: 0; }

/* Presenting tier — gradient border */
body.lbf-home-v3 .tier-row.v3-presenting-tier {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  border-radius: 24px; padding: 1.5px;
  box-shadow: 0 16px 34px rgba(0,51,172,0.16);
}
body.lbf-home-v3 .tier-row.v3-presenting-tier .v3-tier-inner {
  background: linear-gradient(180deg, #eef5ff, #f1faf1 54%, #fff8eb);
  border-radius: 22.5px; padding: 1rem 1.25rem;
}
body.lbf-home-v3 .tier-row.v3-presenting-tier .tier-label.tp { color: #0033ac; }

/* Regular tiers */
body.lbf-home-v3 .tier-row:not(.v3-presenting-tier) {
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 22px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 10px 22px rgba(0,51,172,0.04);
}

body.lbf-home-v3 .tier-head {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 0.75rem;
  flex-direction: column; text-align: center;
}
body.lbf-home-v3 .tier-div { display: none; } /* divider line hidden with centered label */
body.lbf-home-v3 .tier-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}
body.lbf-home-v3 .tier-label.tp { color: #2f67c9; }
body.lbf-home-v3 .tier-label.tg { color: #a16207; }
body.lbf-home-v3 .tier-label.ts { color: #475569; }
body.lbf-home-v3 .tier-label.tb { color: #92400e; }
body.lbf-home-v3 .tier-div { flex: 1; height: 1px; background: #e5ecff; }
body.lbf-home-v3 .v3-top-tier-badge {
  background: rgba(255,255,255,0.85); border: 1px solid #d9f0d9;
  border-radius: 999px; padding: 0.2rem 0.625rem;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #038203;
}

body.lbf-home-v3 .sponsor-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
/* Logo sizes */
body.lbf-home-v3 .sp { display: flex; align-items: center; justify-content: center; }
body.lbf-home-v3 .sp img { max-height: 100%; width: auto; object-fit: contain; }
body.lbf-home-v3 .sp-xl { min-width: 180px; height: 72px; background: rgba(255,255,255,0.9); border-radius: 16px; border: 1px solid #e6eefc; padding: 0.625rem 1.25rem; box-shadow: 0 8px 18px rgba(0,51,172,0.05); }
body.lbf-home-v3 .sp-lg { min-width: 130px; height: 54px; background: #fff; border-radius: 14px; border: 1px solid #e6eefc; padding: 0.5rem 1rem; }
body.lbf-home-v3 .sp-md { min-width: 100px; height: 44px; background: #fff; border-radius: 12px; border: 1px solid #e6eefc; padding: 0.4rem 0.75rem; }
body.lbf-home-v3 .sp-sm { min-width: 80px; height: 36px; background: #f8faff; border-radius: 10px; border: 1px solid #edf2ff; padding: 0.3rem 0.625rem; font-size: 0.75rem; font-weight: 600; color: #475569; }
body.lbf-home-v3 .sp-xs { min-width: 60px; height: 30px; background: #f8faff; border-radius: 999px; border: 1px solid #edf2ff; padding: 0.2rem 0.5rem; font-size: 0.6875rem; font-weight: 600; color: #64748b; }
body.lbf-home-v3 .sp-name-text { font-size: 0.875rem; font-weight: 600; color: #1e3a8a; }

/* Sponsor CTA */
body.lbf-home-v3 .sp-cta {
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8faff, #f5fbf5);
  border: 1px solid #e6eefc; border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
body.lbf-home-v3 .sp-cta h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 0.2rem;
}
body.lbf-home-v3 .sp-cta p { font-size: 0.875rem; color: #64748b; margin: 0; }
body.lbf-home-v3 .sp-cta .btn-gold {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 8px;
  padding: 0.55rem 1rem; font-size: 0.875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
body.lbf-home-v3 .sp-cta .btn-blue {
  background: #fff; color: #0033ac; border: 1px solid #c7d8ff; border-radius: 8px;
  padding: 0.55rem 1rem; font-size: 0.875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   §10  DONATE
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #donate.section { padding: 0; }
body.lbf-home-v3 .v3-donate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  align-items: start;
}
body.lbf-home-v3 .imp-list { list-style: none; padding: 0; margin: 1rem 0 0; }
body.lbf-home-v3 .imp-item {
  display: flex; gap: 0.75rem; padding: 0.625rem 0;
  border-bottom: 1px solid #f1f5ff;
}
body.lbf-home-v3 .imp-item:last-child { border-bottom: none; }
body.lbf-home-v3 .imp-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #0033ac;
}
body.lbf-home-v3 .imp-h4 { font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
body.lbf-home-v3 .imp-p { font-size: 0.8125rem; color: #64748b; margin-top: 0.1rem; }

body.lbf-home-v3 .donate-card {
  border: 1px solid #e6eefc;
  border-radius: 22px; padding: 1.375rem;
  box-shadow: 0 14px 32px rgba(0,51,172,0.08);
}
body.lbf-home-v3 .donate-card-h {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem;
}
body.lbf-home-v3 .amt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.875rem;
}
body.lbf-home-v3 .amt-btn {
  background: linear-gradient(180deg, #fff, #fffaf1);
  border: 1px solid #edf2ff; border-radius: 14px;
  padding: 0.875rem 0.5rem; text-align: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.125rem; font-weight: 700; color: #0f172a;
  cursor: pointer; transition: border-color 0.14s, box-shadow 0.14s;
  box-shadow: 0 6px 14px rgba(0,51,172,0.05);
}
body.lbf-home-v3 .amt-btn.active,
body.lbf-home-v3 .amt-btn:hover {
  border-color: #0033ac; box-shadow: 0 8px 20px rgba(0,51,172,0.12);
}
body.lbf-home-v3 .cin {
  width: 100%; border: 1px solid #e6eefc; border-radius: 10px;
  padding: 0.625rem 0.875rem; font-size: 0.9375rem; color: #0f172a;
  margin-bottom: 0.75rem; outline: none;
}
body.lbf-home-v3 .cin:focus { border-color: #0033ac; }
body.lbf-home-v3 .recur-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: #475569; margin-bottom: 0.875rem; cursor: pointer;
}
body.lbf-home-v3 .donate-card .btn-green.btn-full {
  display: block; text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 14px;
  padding: 0.875rem; font-size: 0.9375rem; font-weight: 700;
  text-decoration: none; box-shadow: 0 14px 28px rgba(0,51,172,0.18);
  letter-spacing: 0.01em;
}
body.lbf-home-v3 .pay-row {
  display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.75rem;
}
body.lbf-home-v3 .pay-chip {
  font-size: 0.75rem; font-weight: 600; color: #64748b;
  background: #f8faff; border: 1px solid #e6eefc;
  border-radius: 6px; padding: 0.2rem 0.55rem;
}

/* ═══════════════════════════════════════════════════════════════
   §11  CONTACT
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #contact.section { padding: 0; }
body.lbf-home-v3 .v3-contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem;
}
body.lbf-home-v3 .info-cards {
  display: flex; flex-direction: column; gap: 0.625rem;
}
body.lbf-home-v3 .info-card {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 18px;
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 18px rgba(0,51,172,0.04);
}
body.lbf-home-v3 .info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #0033ac;
}
body.lbf-home-v3 .info-text h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.15rem;
}
body.lbf-home-v3 .info-text p { font-size: 0.875rem; color: #64748b; margin: 0; }
body.lbf-home-v3 .info-text a { color: #0033ac; text-decoration: none; }
body.lbf-home-v3 .info-text a:hover { text-decoration: underline; }
body.lbf-home-v3 .info-card--social .contact-social-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem;
}
body.lbf-home-v3 .contact-social-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; border-radius: 999px;
  padding: 0.3rem 0.75rem; font-size: 0.8125rem; font-weight: 600;
  text-decoration: none;
}
body.lbf-home-v3 .lbf-map-placeholder {
  background: #f8faff; border: 1px dashed #dbe7ff; border-radius: 14px;
  padding: 1.25rem; text-align: center; margin-top: 0.75rem;
}
body.lbf-home-v3 .map-box { margin-top: 0.75rem; }
body.lbf-home-v3 .map-box iframe { border-radius: 14px; width: 100%; }
body.lbf-home-v3 .cf h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem; font-weight: 700; color: #0f172a; margin: 0 0 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   §12  TABLET BREAKPOINTS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  body.lbf-home-v3 .v3-two-col { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-ent-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-pag-grid { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .v3-donate-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-contact-grid { grid-template-columns: 1fr; }
  /* Stats pill: 2×2 grid on tablet, still uses negative margin */
  body.lbf-home-v3 .v3-stats-band {
    border-radius: 20px;
    padding: 1rem 1.25rem;
    margin-top: -1.5rem;
    max-width: calc(100% - 2rem);
  }
  body.lbf-home-v3 .v3-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  body.lbf-home-v3 .v3-stat-card + .v3-stat-card { border-left: none; }
  body.lbf-home-v3 .v3-stat-card {
    padding: 0.625rem 1rem;
    border-radius: 10px;
    background: rgba(0,51,172,0.04);
  }
  body.lbf-home-v3 .v3-shell.post-hero-first { padding-top: 0; }
}

@media (max-width: 767px) {
  body.lbf-home-v3 .v3-attr-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-reg-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-ent-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-pag-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-stats-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-hero-h1 { font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-hero-h1 { font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-outer-card { border-radius: 16px; }
  body.lbf-home-v3 .v3-card { border-radius: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   §13  KEEP INLINE-EDITOR HOOKS VISIBLE
   lbf_ef() adds contenteditable/data-lbf-field — ensure they
   still show teal dashed outlines inside the v3 design.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 [data-lbf-field][contenteditable] {
  outline: 2px dashed rgba(13,148,136,0.35); outline-offset: 2px; border-radius: 3px;
}
body.lbf-home-v3 [data-lbf-field][contenteditable]:hover,
body.lbf-home-v3 [data-lbf-field][contenteditable]:focus {
  outline-color: #0d9488;
}

/* ═══════════════════════════════════════════════════════════════
   §14  OVERRIDE OLD v2 CARD SYSTEM INSIDE v3
   Sections rendered inside v3-card must not double-apply v2 styles.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .lbf-sec-card {
  margin: 0; border: none; border-radius: 0; background: transparent;
  box-shadow: none; padding: 0; overflow: visible;
}
body.lbf-home-v3 .container { padding-left: 0; padding-right: 0; }
body.lbf-home-v3 .lbf-heading-wrap { margin-bottom: 1rem; }
/* v2 sec-h uses Barlow — override to Outfit */
body.lbf-home-v3 .sec-h {
  font-family: 'Outfit', system-ui, sans-serif !important;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem) !important;
  font-weight: 700 !important; text-transform: none !important;
  letter-spacing: -0.03em !important;
}
body.lbf-home-v3 .sec-tag {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #2f67c9;
  background: none; padding: 0; border-radius: 0; margin-bottom: 0.25rem;
}

/* ── Per-tier "View all" link inside each sponsor tier ── */
body.lbf-home-v3 .tier-view-all {
  display: flex; justify-content: flex-end; margin-top: 0.5rem;
}
body.lbf-home-v3 .tier-view-all a {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.625rem; font-weight: 600; color: #2f67c9;
  background: #f0f5ff; border: 1px solid #dbe7ff;
  border-radius: 999px; padding: 0.15rem 0.55rem;
  text-decoration: none; white-space: nowrap;
  transition: background 0.12s;
}
body.lbf-home-v3 .tier-view-all a:hover {
  background: #e0ecff; text-decoration: none; color: #0033ac;
}

/* ═══════════════════════════════════════════════════════════════
   §15  COLLAPSIBLE SECTIONS
   The chevron sits absolute top-right of the card — completely
   out of flow, so sec-hdr and all content are never affected.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-collapsible { /* no extra layout needed */ }

/* Chevron — absolute top-right corner of the card */
body.lbf-home-v3 .v3-collapse-chevron {
  /* Absolute top-right — out of flow, nothing moves */
  position: absolute;
  top: clamp(1rem, 1.8vw, 1.5rem);
  right: clamp(1rem, 1.8vw, 1.5rem);
  /* Reset ALL browser button defaults */
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 0;
  margin: 0;
  /* Size: small icon only */
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #a0b0d0;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1), color 0.15s;
}
body.lbf-home-v3 .v3-collapse-chevron:hover,
body.lbf-home-v3 .v3-collapse-chevron:focus { color: #2f67c9; outline: none; box-shadow: none; }
body.lbf-home-v3 .v3-collapsible.v3-collapsed .v3-collapse-chevron {
  transform: rotate(-90deg);
}

/* Section body slides away on collapse — card header is untouched */
body.lbf-home-v3 .v3-section-body {
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22,0.61,0.36,1), opacity 0.25s ease;
  max-height: 9999px; opacity: 1;
}
body.lbf-home-v3 .v3-collapsible.v3-collapsed .v3-section-body {
  max-height: 0 !important; opacity: 0; pointer-events: none;
}

/* ── Donate + Contact side-by-side row ─────────────────────────────────── */
body.lbf-home-v3 .v3-donate-contact-row {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1100px) {
  body.lbf-home-v3 .v3-donate-contact-row { grid-template-columns: 1fr; }
}

/* ── Donate card: full-width, no inner two-col ──────────────────────────── */
body.lbf-home-v3 .v3-donate-full {
  /* no inner grid — just padding of parent card */
  padding: 0; border: none; border-radius: 0; box-shadow: none;
  background: transparent;
}

/* Amount buttons: larger, with label below the $ figure */
body.lbf-home-v3 .v3-donate-full .amt-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem; margin-bottom: 0;
}
body.lbf-home-v3 .v3-donate-full .amt-btn {
  /* Row layout: text left, heart right */
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: 16px; gap: 0.75rem;
  /* All buttons solid white — no active state difference */
  background: #fff !important;
  border-color: #e6eefc !important;
  box-shadow: 0 4px 12px rgba(0,51,172,0.06) !important;
}
body.lbf-home-v3 .v3-donate-full .amt-btn:hover {
  border-color: #0033ac !important;
  box-shadow: 0 6px 18px rgba(0,51,172,0.12) !important;
}
body.lbf-home-v3 .amt-btn-inner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem;
  flex: 1; min-width: 0;
}
body.lbf-home-v3 .amt-val {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #0f172a; line-height: 1;
}
body.lbf-home-v3 .amt-desc {
  font-size: 0.75rem; color: #64748b; line-height: 1.3; text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
/* Gradient heart icon — right side of each button */
body.lbf-home-v3 .amt-heart {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 22px; height: 22px; opacity: 0.7;
  transition: opacity 0.14s, transform 0.14s;
}
body.lbf-home-v3 .amt-heart svg { width: 22px; height: 22px; display: block; }
body.lbf-home-v3 .v3-donate-full .amt-btn:hover .amt-heart {
  opacity: 1; transform: scale(1.15);
}

/* Donate Now button wrap: full width, prominent, with breathing room */
body.lbf-home-v3 .v3-donate-btn-wrap {
  margin-top: 1.125rem;
  padding: 0;
}
body.lbf-home-v3 .v3-donate-cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0,51,172,0.22);
  transition: filter 0.15s, box-shadow 0.15s;
}
body.lbf-home-v3 .v3-donate-cta:hover {
  filter: brightness(1.07); color: #fff; text-decoration: none;
  box-shadow: 0 20px 44px rgba(0,51,172,0.28);
}

/* ── Contact: info on left, CTA button col on right ─────────────────────── */
body.lbf-home-v3 .v3-contact-cta-col {
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  gap: 1.25rem; padding-top: 0.5rem;
}
body.lbf-home-v3 .v3-contact-cta-text {
  font-size: 0.9375rem; line-height: 1.65; color: #475569; margin: 0;
}
body.lbf-home-v3 .v3-contact-page-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,51,172,0.2);
  transition: filter 0.15s, box-shadow 0.15s;
}
body.lbf-home-v3 .v3-contact-page-btn:hover {
  filter: brightness(1.07); color: #fff; text-decoration: none;
  box-shadow: 0 16px 34px rgba(0,51,172,0.28);
}
body.lbf-home-v3 .v3-contact-page-btn svg { color: #fff; }

/* Recurring gift checkbox row */
body.lbf-home-v3 .v3-recur-row {
  display: flex; align-items: center; gap: 0.625rem;
  margin: 1rem 0 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; color: #475569; cursor: pointer;
  user-select: none;
}
body.lbf-home-v3 .v3-recur-check {
  width: 16px; height: 16px; flex-shrink: 0; cursor: pointer;
  accent-color: #0033ac;
}

/* Payment method chips below Donate Now */
body.lbf-home-v3 .v3-pay-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.375rem; margin-top: 0.875rem;
}
body.lbf-home-v3 .v3-pay-chip {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 600; color: #64748b;
  background: #f8faff; border: 1px solid #e6eefc;
  border-radius: 999px; padding: 0.2rem 0.7rem;
}

/* Social icon buttons — circle with brand color on hover */
body.lbf-home-v3 .v3-social-icon-row {
  display: flex; gap: 0.625rem; margin-top: 0.625rem; align-items: center;
}
body.lbf-home-v3 .v3-social-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; text-decoration: none; flex-shrink: 0;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  box-shadow: 0 4px 12px rgba(0,51,172,0.1);
}
body.lbf-home-v3 .v3-social-icon-btn:hover {
  transform: translateY(-2px); text-decoration: none;
}
body.lbf-home-v3 .v3-social-fb:hover { background: #1877f2; color: #fff; }
body.lbf-home-v3 .v3-social-ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888);
  color: #fff;
}

/* ── v3 override: lbf-top-shell bg must be transparent so outer-card clips cleanly */
body.lbf-home-v3 .lbf-top-shell {
  background: transparent;
}


/* ── Stats pill: single column on phones ── */
@media (max-width: 520px) {
  body.lbf-home-v3 .v3-stats-band {
    border-radius: 18px;
    bottom: 0;
    padding: 0.875rem 1rem;
  }
  body.lbf-home-v3 .v3-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
  }
  body.lbf-home-v3 .v3-stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
  }
  body.lbf-home-v3 .v3-stat-num,
  body.lbf-home-v3 .v3-stat-lbl { display: block; margin-left: 0; }
  body.lbf-home-v3 .v3-shell.post-hero-first { padding-top: calc(1.75rem + 1.5rem); }

}
/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE THE FESTIVAL — Section CSS (v24.0)
   Scoped to .lbf-exp-* — zero bleed to other sections
═══════════════════════════════════════════════════════════════ */


/* Experience section — full width */
body.lbf-home-v3 .lbf-exp-section {
  width: 100%;
  /* Blueberry-themed section background */
  background: linear-gradient(160deg,
    #f0f4ff 0%, #e8f0ff 20%, #f3eeff 50%,
    #eef8ef 75%, #f5f0ff 100%) !important;
  border-color: #c8d8ff !important;
}

/* ── Centred heading block ── */
body.lbf-home-v3 .lbf-exp-hdr-centred {
  justify-content: center !important;
  text-align: center;
  flex-direction: column;
  align-items: center !important;
}
body.lbf-home-v3 .lbf-exp-heading-block {
  text-align: center;
  width: 100%;
}
/* Decorative lines flanking the eyebrow */
body.lbf-home-v3 .lbf-exp-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
body.lbf-home-v3 .lbf-exp-eyebrow::before,
body.lbf-home-v3 .lbf-exp-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(90deg, transparent, #c4b5fd);
}
body.lbf-home-v3 .lbf-exp-eyebrow::after {
  background: linear-gradient(90deg, #c4b5fd, transparent);
}
/* Heading size bump for centred treatment */
body.lbf-home-v3 .lbf-exp-title {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important;
  text-align: center;
}
/* "The Festival" span already gets #0033ac via global v3-sec-title span rule */

/* ── Intro text — larger, constrained to ~2 lines ── */
body.lbf-home-v3 .lbf-exp-intro {
  text-align: center;
  /* ~55ch keeps the text to roughly 2 lines at the larger font size */
  max-width: 100ch;
  margin: 0 auto 1.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

/* ── Five-card grid ── */
body.lbf-home-v3 .lbf-exp-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

/* ── Individual card ── */
body.lbf-home-v3 .lbf-exp-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(180,200,255,0.6);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 8px 22px rgba(60,80,140,0.07);
  transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.28s ease;
}
body.lbf-home-v3 .lbf-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(60,80,200,0.18),
              0 0 0 1px rgba(106,77,255,0.12);
  border-color: rgba(106,77,255,0.25);
}
body.lbf-home-v3 .lbf-exp-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── Card photo area ── */
body.lbf-home-v3 .lbf-exp-card__img-wrap {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: #1a3064;
}
body.lbf-home-v3 .lbf-exp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
body.lbf-home-v3 .lbf-exp-card:hover .lbf-exp-card__img {
  transform: scale(1.07);
}
body.lbf-home-v3 .lbf-exp-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e3a7a 0%, #2f5daa 100%);
}

/* Overlays */
body.lbf-home-v3 .lbf-exp-card__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(30,55,140,0.12) 0%,
    rgba(47,93,170,0.08) 45%,
    rgba(15,35,100,0.32) 100%);
}
body.lbf-home-v3 .lbf-exp-card__glow-top {
  position: absolute; inset-inline: 0; top: 0; height: 36px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
}
body.lbf-home-v3 .lbf-exp-card__glow-bot {
  position: absolute; inset-inline: 0; bottom: 0; height: 44px; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(100,130,215,0.22) 60%, rgba(255,255,255,0.18) 100%);
}

/* Pill tag */
body.lbf-home-v3 .lbf-exp-card__pill {
  position: absolute; top: 7px; left: 7px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 0.14rem 0.45rem;           /* ~15% smaller */
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.51rem; font-weight: 800; /* 0.6 * 0.85 = 0.51 */
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #334155;
  pointer-events: none;
}

/* ── Card body ── */
body.lbf-home-v3 .lbf-exp-card__body {
  position: relative;
  padding: 0.25rem 0.875rem 0.875rem;
  text-align: center;
}

/* Floating icon badge */
body.lbf-home-v3 .lbf-exp-card__icon {
  position: relative;
  width: 38px; height: 38px;
  margin: -22px auto 0.5rem;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(30,60,150,0.22);
  z-index: 2;
}
body.lbf-home-v3 .lbf-exp-card__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.975rem; font-weight: 700;
  color: #1e3a8a; line-height: 1.2;
  margin: 0 0 0.35rem;
}
body.lbf-home-v3 .lbf-exp-card__desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.7125rem; line-height: 1.5;
  color: #475569; margin: 0;
}

/* ── Schedule strip ── */
body.lbf-home-v3 .lbf-exp-sched {
  position: relative;
  border-radius: 20px;
  border: 1px solid #dfe3f3;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(52,76,139,0.08);
}

/* Sparkle dot texture background */
body.lbf-home-v3 .lbf-exp-sched__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 8% 20%,  rgba(255,255,255,0.9)  0, rgba(255,255,255,0.9)  1.5px, transparent 2.5px),
    radial-gradient(circle at 22% 68%, rgba(255,255,255,0.75) 0, rgba(255,255,255,0.75) 1px,   transparent 2px),
    radial-gradient(circle at 38% 32%, rgba(196,181,253,0.4)  0, rgba(196,181,253,0.4)  2px,   transparent 3.5px),
    radial-gradient(circle at 55% 75%, rgba(255,255,255,0.8)  0, rgba(255,255,255,0.8)  1.5px, transparent 2.5px),
    radial-gradient(circle at 67% 24%, rgba(96,165,250,0.22)  0, rgba(96,165,250,0.22)  2px,   transparent 3.5px),
    radial-gradient(circle at 80% 58%, rgba(255,255,255,0.7)  0, rgba(255,255,255,0.7)  1px,   transparent 2px),
    radial-gradient(circle at 92% 18%, rgba(167,139,250,0.3)  0, rgba(167,139,250,0.3)  2px,   transparent 3.5px),
    linear-gradient(180deg, #f7f8fe 0%, #eef2ff 100%);
}

body.lbf-home-v3 .lbf-exp-sched__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.82fr) 3.38fr;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(241,245,255,0.92));
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.9);
  margin: 2px;
}

/* Left panel */
body.lbf-home-v3 .lbf-exp-sched__left {
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(219,227,243,0.6);
}
body.lbf-home-v3 .lbf-exp-sched__heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800;
  line-height: 1.1; color: #1e3a8a;
  margin: 0 0 0.5rem;
}
body.lbf-home-v3 .lbf-exp-sched__sub {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; line-height: 1.5;
  color: #2d4a9e; margin: 0 0 1rem;
}
body.lbf-home-v3 .lbf-exp-sched__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(29,78,216,0.22);
  transition: filter 0.15s ease, transform 0.15s ease;
  align-self: flex-start;
}
body.lbf-home-v3 .lbf-exp-sched__btn:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .lbf-exp-sched__btn svg { flex-shrink: 0; }

/* Day boxes */
body.lbf-home-v3 .lbf-exp-sched__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
body.lbf-home-v3 .lbf-exp-day {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 0.5rem;
  min-height: 150px;
  text-decoration: none;
  border-right: 1px solid rgba(217,222,239,0.7);
  text-align: center;
  transition: background 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day--last { border-right: none; }
body.lbf-home-v3 .lbf-exp-day:hover { background: rgba(240,244,255,0.5); }

/* Hover ring */
body.lbf-home-v3 .lbf-exp-day__hover-ring {
  position: absolute; inset: 4px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(70,115,210,0.2),
              0 0 20px rgba(97,144,255,0.12);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__hover-ring { opacity: 1; }

/* Day icon */
body.lbf-home-v3 .lbf-exp-day__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 6px rgba(30,58,138,0.1);
  font-size: 0.9375rem; margin-bottom: 0.4rem;
  color: #1d4ed8;
  transition: transform 0.18s ease, background 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__icon {
  transform: scale(1.1); background: #fff;
}

body.lbf-home-v3 .lbf-exp-day__content {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  position: relative; z-index: 1;
}
body.lbf-home-v3 .lbf-exp-day__dow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #1e3a8a;
  transition: color 0.15s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__dow { color: #2b56b4; }

body.lbf-home-v3 .lbf-exp-day__date {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.65rem; font-weight: 800; line-height: 1;
  color: #1843a3;
  margin: 0.2rem 0 0.375rem;
  transition: color 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__date { color: #3b6fe0; }

body.lbf-home-v3 .lbf-exp-day__label {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.65rem; line-height: 1.35;
  color: #1e3a8a;
  transition: color 0.15s ease;
  padding: 0 0.25rem;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__label { color: #173d96; }

/* Hover label — fades in on hover */
body.lbf-home-v3 .lbf-exp-day__hover-label {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: #2558c8;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__hover-label {
  opacity: 1; transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .lbf-exp-sched__inner { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-exp-sched__left { border-right: none; border-bottom: 1px solid rgba(219,227,243,0.6); }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .lbf-exp-day { min-height: 120px; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(3) { border-right: none; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(4), body.lbf-home-v3 .lbf-exp-day:nth-child(5) {
    border-top: 1px solid rgba(217,222,239,0.7);
  }
}
@media (max-width: 480px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: 1fr 1fr; }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .lbf-exp-day { border-right: 1px solid rgba(217,222,239,0.7); }
  body.lbf-home-v3 .lbf-exp-day:nth-child(2n) { border-right: none; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(n+3) { border-top: 1px solid rgba(217,222,239,0.7); }
}


/* ── Experience icon rendering ──
   Symbol paths use stroke="currentColor"/fill="currentColor".
   currentColor resolves from the nearest ancestor with CSS `color` set.
   Must be set on the WRAPPER divs, not just the svg. */

/* Card badge (colored gradient bg) — white icons */
body.lbf-home-v3 .lbf-exp-card__icon {
  color: #ffffff !important;
}
/* Day box (white/translucent bg) — blue icons */
body.lbf-home-v3 .lbf-exp-day__icon {
  color: #1d4ed8 !important;
}

/* SVG element: inherit color, set defaults for stroke-based Lucide icons */
body.lbf-home-v3 .lbf-exp-card__icon svg,
body.lbf-home-v3 .lbf-exp-day__icon svg {
  display: block;
  color: inherit;
  overflow: visible;
  /* Stroke-based icons: use currentColor (inherited from wrapper) */
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Fill-based icons (fireworks, parade) — tagged with data-fill="1" by PHP */
body.lbf-home-v3 .lbf-exp-card__icon svg[data-fill="1"],
body.lbf-home-v3 .lbf-exp-day__icon svg[data-fill="1"] {
  fill: currentColor !important;
  stroke: none !important;
}

/* Size */
body.lbf-home-v3 .lbf-exp-card__icon svg { width: 18px; height: 18px; }
body.lbf-home-v3 .lbf-exp-day__icon svg  { width: 16px; height: 16px; }


/* ── Card image edit overlay (admin only) ── */
body.lbf-home-v3 .lbf-exp-card__img-wrap {
  cursor: default;
}
body.lbf-home-v3 .lbf-exp-card__img-overlay-edit {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 110, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  z-index: 6;
  border-radius: 0; /* clip handled by parent overflow:hidden */
}
body.lbf-home-v3 .lbf-exp-card__img-wrap:hover .lbf-exp-card__img-overlay-edit {
  opacity: 1;
}
body.lbf-home-v3 .lbf-exp-card__img-overlay-edit svg {
  stroke: #fff;
  width: 22px; height: 22px;
}

/* ── END EXPERIENCE THE FESTIVAL ── */

/* ═══════════════════════════════════════════════════════════════
   FEATURED ENTERTAINERS — redesigned v24.14
   Matches updated JSX design: lighter overlay, logo+stats row,
   "Why Catch This Set" right card, lifted active selector card.
═══════════════════════════════════════════════════════════════ */

/* ── Outer wrapper ── */
body.lbf-home-v3 .lbf-feat-ent {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(125,211,252,0.18);
  box-shadow: 0 18px 50px rgba(17,94,168,0.12);
  background: #040d1a;
}

/* ── Hero panel ── */
body.lbf-home-v3 .lbf-feat-hero {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.18s ease;
}
@media (min-width: 768px) {
  body.lbf-home-v3 .lbf-feat-hero { min-height: 530px; }
}
body.lbf-home-v3 .lbf-feat-hero--switching { opacity: 0; }

/* Subtle left-side gradient so text stays legible */
/* lbf-feat-hero__overlay removed */
/* lbf-feat-hero__shimmer removed */
body.lbf-home-v3 .lbf-feat-hero__top-line {
  position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.60), transparent);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-hero__glow-orb {
  display: none; /* removed — was causing hero image blur in Chrome */
}

/* Pills — top left */
body.lbf-home-v3 .lbf-feat-hero__pills {
  position: absolute;
  top: 1.125rem; left: 1.125rem;
  z-index: 4;
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  max-width: 80%;
}
body.lbf-home-v3 .lbf-feat-pill {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6375rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  line-height: 1;
}
body.lbf-home-v3 .lbf-feat-pill--accent {
  background: #fff;
  color: #0369a1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
body.lbf-home-v3 .lbf-feat-pill--glass {
  background: rgba(4,13,26,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.40);
}

/* Content grid — items-end so both columns sit at the bottom */
body.lbf-home-v3 .lbf-feat-hero__content {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: end;
  padding: 4rem 2rem 2rem;
  min-height: 440px;
}
@media (min-width: 768px) {
  body.lbf-home-v3 .lbf-feat-hero__content { padding: 4rem 2.5rem 2.5rem; min-height: 530px; }
}

/* Left column: logo image + stats row */
body.lbf-home-v3 .lbf-feat-hero__left {}
body.lbf-home-v3 .lbf-feat-hero__logo-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
body.lbf-home-v3 .lbf-feat-hero__logo-img {
  height: 7rem;
  max-width: 39rem;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.30));
  flex-shrink: 0;
}

/* Stats row — three frosted boxes */
body.lbf-home-v3 .lbf-feat-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
body.lbf-home-v3 .lbf-feat-stat {
  width: 6.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(4,13,26,0.65);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}
body.lbf-home-v3 .lbf-feat-stat__label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #5b9df9;
  margin-bottom: 0.25rem;
}
body.lbf-home-v3 .lbf-feat-stat__label svg {
  flex-shrink: 0;
  stroke: #5b9df9;
}
body.lbf-home-v3 .lbf-feat-stat__val {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  color: #fff;
}

/* Right column — "Why Catch This Set" card + buttons */
body.lbf-home-v3 .lbf-feat-hero__right {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-end;
}
body.lbf-home-v3 .lbf-feat-about {
  width: 100%;
  background: rgba(4,13,26,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  padding: 1rem 1.125rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 20rem;
}
body.lbf-home-v3 .lbf-feat-about__label {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: #5b9df9; margin-bottom: 0.5rem;
}
body.lbf-home-v3 .lbf-feat-about__name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: #fff; margin-bottom: 0.375rem;
  line-height: 1.1;
}
body.lbf-home-v3 .lbf-feat-about__copy {
  font-size: 0.8125rem; line-height: 1.6;
  color: rgba(255,255,255,0.85); margin: 0;
}

/* CTA buttons */
body.lbf-home-v3 .lbf-feat-hero__btns {
  display: flex; gap: 0.625rem; width: 100%; max-width: 20rem;
}
body.lbf-home-v3 .lbf-feat-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
body.lbf-home-v3 .lbf-feat-btn--solid {
  background: #fff; color: #0f172a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
body.lbf-home-v3 .lbf-feat-btn--solid:hover {
  background: #f0f9ff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  text-decoration: none; color: #0f172a;
}
body.lbf-home-v3 .lbf-feat-btn--ghost {
  background: rgba(4,13,26,0.55);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
body.lbf-home-v3 .lbf-feat-btn--ghost:hover {
  background: rgba(255,255,255,0.20); transform: translateY(-2px);
  text-decoration: none; color: #fff;
}

/* ── Selector cards row ── */
body.lbf-home-v3 .lbf-feat-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  background: rgba(4,13,26,0.97);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 0.875rem;
}
body.lbf-home-v3 .lbf-feat-card {
  border-radius: 20px;
  overflow: visible; /* allow lift shadow */
  border: 1px solid rgba(255,255,255,0.10);
  background: none;
  padding: 0; cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  outline: none;
  position: relative;
}
/* Active card lifts */
body.lbf-home-v3 .lbf-feat-card--active {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(125,211,252,0.40),
    0 18px 42px rgba(14,116,144,0.22);
}
/* Hover glow on inactive cards */
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active):hover {
  border-color: rgba(125,211,252,0.55);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(125,211,252,0.50),
    0 0 0 6px rgba(56,189,248,0.12),
    0 0 34px rgba(56,189,248,0.20);
}
body.lbf-home-v3 .lbf-feat-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(125,211,252,0.55);
}
body.lbf-home-v3 .lbf-feat-card__img {
  position: relative;
  aspect-ratio: 4 / 2.9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 19px;
}
body.lbf-home-v3 .lbf-feat-card__img-overlay {
  position: absolute; inset: 0;
  transition: background 0.3s ease;
}
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img-overlay {
  background: rgba(14,30,50,0.18);
}
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__img-overlay {
  background: rgba(4,13,26,0.42);
}
body.lbf-home-v3 .lbf-feat-card__top-line {
  position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.45), transparent);
  pointer-events: none;
}
/* Active card inner ring */
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.20);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-card__img-grad {
  position: absolute; inset-inline: 0; bottom: 0;
  transition: height 0.3s ease;
  background: linear-gradient(to top, rgba(4,13,26,0.70) 0%, transparent 100%);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img-grad { height: 6rem; }
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__img-grad { height: 5rem; }

/* Logo at bottom-centre */
body.lbf-home-v3 .lbf-feat-card__logo-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0.5rem 0.875rem;
}
/* Active logo larger than inactive */
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__logo {
  max-height: 2.8rem;
  max-width: 52%;
}
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__logo {
  max-height: 2.2rem;
  max-width: 47%;
}
body.lbf-home-v3 .lbf-feat-card__logo {
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition: max-height 0.3s ease, max-width 0.3s ease;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-feat-hero__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 4rem 1.5rem 1.5rem;
  }
  body.lbf-home-v3 .lbf-feat-hero__right { align-items: stretch; }
  body.lbf-home-v3 .lbf-feat-about,
  body.lbf-home-v3 .lbf-feat-hero__btns { max-width: 100%; }

  /* SWIPE CAROUSEL — replaces grid below 1100px */
  body.lbf-home-v3 .lbf-feat-cards {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.625rem;
    padding: 0.875rem;
    /* Padding the edges so the first/last card can center-snap properly */
    scroll-padding-inline: 14%;
  }
  body.lbf-home-v3 .lbf-feat-cards::-webkit-scrollbar { display: none; }
  body.lbf-home-v3 .lbf-feat-card {
    flex: 0 0 72%;
    max-width: 72%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  /* Active lift translates differently here so it doesn't fight horizontal scroll */
  body.lbf-home-v3 .lbf-feat-card--active { transform: none; }
  body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active):hover { transform: none; }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-feat-hero { min-height: 480px; }
  body.lbf-home-v3 .lbf-feat-hero__content { padding: 3.5rem 1rem 1rem; min-height: 480px; }
  body.lbf-home-v3 .lbf-feat-hero__logo-stats { gap: 1rem; }
  body.lbf-home-v3 .lbf-feat-hero__logo-img  { height: 2.5rem; }
  body.lbf-home-v3 .lbf-feat-stat            { width: 5.5rem; }
  body.lbf-home-v3 .lbf-feat-cards {
    gap: 0.5rem;
    padding: 0.625rem;
    scroll-padding-inline: 10%;
  }
  body.lbf-home-v3 .lbf-feat-card {
    flex: 0 0 78%;
    max-width: 78%;
  }
}

/* ── END FEATURED ENTERTAINERS ── */

/* ── Featured Entertainer hero — tagline line ── */
body.lbf-home-v3 .lbf-feat-hero__tagline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}



/* ═══════════════════════════════════════════════════════════════
   §25-A  MISS BLUEBERRY PAGEANT — v25.0
   Pixel-faithful translation of lexington_blueberry_homepage_sections_mockup.jsx
   Outer section bg/border/shadow set via inline style on .lbf-pag25
═══════════════════════════════════════════════════════════════ */

/* Override v3-card default background/border — the JSX section background
   is injected via inline style; just unset what v3-card forces */
body.lbf-home-v3 .v3-card.lbf-pag25,
body.lbf-home-v3 .v3-card.lbf-spd25 {
  background: transparent; /* set by inline style from PHP */
  border: none;             /* set by inline style from PHP */
  box-shadow: none;         /* set by inline style from PHP */
}

/* Ambient glow orbs inside section (::before/::after) */
body.lbf-home-v3 .lbf-pag25::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: 1.5rem;
  width: 7rem; height: 7rem;
  border-radius: 50%;
  background: rgba(106,77,255,0.12);
  filter: blur(40px);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-pag25::after {
  content: '';
  position: absolute;
  right: 1.5rem; top: 2rem;
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: rgba(124,77,255,0.12);
  filter: blur(36px);
  pointer-events: none;
}

/* Section eyebrow — slightly warmer blue to match JSX spec */
body.lbf-home-v3 .lbf-pag25 .v3-sec-eyebrow { color: #355ee0; }
/* Title span: "Blueberry Pageant" gets the same blue as Experience section span */
body.lbf-home-v3 .lbf-pag25 .v3-sec-title span { color: #0033ac; }
/* Fix 2: More breathing room between intro and content */
body.lbf-home-v3 .lbf-pag25 .v3-sec-intro { margin-bottom: 1.75rem; }

/* ── Two-column grid: 0.6fr 0.4fr ── */
body.lbf-home-v3 .lbf-pag25-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 4rem; /* further increased gap between left/right columns */
  align-items: start;
}
body.lbf-home-v3 .lbf-pag25-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Purple hero card ──
   rounded-[22px] border border-[#6a5cff]
   bg-[linear-gradient(135deg,#7c6cff_0%,#6a4dff_24%,#4b2fbf_52%,#3a2a9f_78%,#2f267a_100%)]
   p-4 text-white shadow-[0_18px_36px_rgba(40,79,199,0.20)] min-h-[224px] */
body.lbf-home-v3 .lbf-pag25-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #6a5cff;
  background: linear-gradient(135deg, #7c6cff 0%, #6a4dff 24%, #4b2fbf 52%, #3a2a9f 78%, #2f267a 100%);
  padding: 1.25rem 1.25rem 1.5rem; /* Fix 4: taller via more vertical padding */
  color: #fff;
  min-height: 280px; /* Fix 4: was 224px */
  box-shadow: 0 18px 36px rgba(40,79,199,0.20);
}
/* radial-gradient overlay + orbs */
body.lbf-home-v3 .lbf-pag25-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 34%);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-pag25-hero-card::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  filter: blur(32px);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-pag25-hero-inner { position: relative; z-index: 1; }
/* Fix 5: Optional background image behind gradient */
body.lbf-home-v3 .lbf-pag25-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center; /* subjects are on the right side of the photo */
  z-index: 0;
  pointer-events: none;
}
body.lbf-home-v3 .lbf-pag25-hero-bg-empty {
  cursor: pointer;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 18px;
  margin: 0.5rem;
}
/* Ensure gradient overlays sit above the bg image */
body.lbf-home-v3 .lbf-pag25-hero-card::before,
body.lbf-home-v3 .lbf-pag25-hero-card::after { z-index: 1; }

/* badge: inline-flex rounded-full border border-white/15 bg-white/15 px-2.5 py-1
         text-[10px] font-bold uppercase tracking-[0.18em] text-white mb-2 */
body.lbf-home-v3 .lbf-pag25-hero-badge {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(106,77,255,0.4);
  background: linear-gradient(135deg, #7c6cff 0%, #6a4dff 50%, #4b2fbf 100%);
  padding: 0.25rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff; /* white text on purple gradient */
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(106,77,255,0.30);
}
/* h3: text-lg md:text-[22px] font-black leading-tight tracking-tight, Outfit */
body.lbf-home-v3 .lbf-pag25-hero-h {
  font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000; /* black */
  margin: 0 0 0.5rem;
}
/* p: text-sm leading-6 text-purple-50 max-w-md */
body.lbf-home-v3 .lbf-pag25-hero-body {
  font-size: 0.875rem;
  font-weight: 600; /* semi-bold */
  line-height: 1.6;
  color: #6a4dff; /* match age divisions purple */
  margin: 0;
  max-width: 38ch;
}

/* ── Stats strip ──
   rounded-[18px] border border-[#e2d8ff]
   bg-[linear-gradient(180deg,#ffffff_0%,#f3edff_100%)] px-3 py-2.5
   shadow-[0_10px_18px_rgba(40,79,199,0.05)]
   grid gap-2 text-center sm:grid-cols-3 */
body.lbf-home-v3 .lbf-pag25-stats {
  border-radius: 18px;
  border: 1px solid #e2d8ff;
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
  padding: 0.625rem 0.75rem;
  box-shadow: 0 10px 18px rgba(40,79,199,0.05);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  text-align: center;
}
/* num: text-[15px] font-black tracking-tight text-[#6a4dff] */
body.lbf-home-v3 .lbf-pag25-stat-num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #6a4dff;
}
/* lbl: text-[10px] font-semibold leading-4 text-slate-500 */
body.lbf-home-v3 .lbf-pag25-stat-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #64748b;
  margin-top: 0.125rem;
}

/* ── Button row ──
   flex flex-nowrap justify-center gap-2 overflow-x-auto px-1 py-1
   button: shrink-0 rounded-full px-3.5 py-2.5 text-[12px] font-black */
body.lbf-home-v3 .lbf-pag25-btns {
  display: flex;
  flex-wrap: nowrap;          /* single row always */
  justify-content: stretch;   /* buttons spread across full width */
  gap: 0.5rem;
  overflow-x: auto;
  /* Extra padding so hover translateY(-2px) and box-shadow aren't clipped */
  padding: 0.5rem 0.25rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.lbf-home-v3 .lbf-pag25-btns::-webkit-scrollbar { display: none; }
body.lbf-home-v3 .lbf-pag25-btn {
  flex: 1 1 0;               /* grow equally to fill row */
  min-width: 0;
  border-radius: 999px;
  padding: 0.75rem 0.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem;      /* slightly smaller text */
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, filter 0.15s;
  cursor: pointer;
  line-height: 1;
  text-align: center;
}
body.lbf-home-v3 .lbf-pag25-btn:hover { transform: translateY(-2px); filter: brightness(0.95); }
body.lbf-home-v3 .lbf-pag25-btn--solid {
  background: linear-gradient(135deg, #7a95ff 0%, #4f72f3 28%, #0037a7 68%, #5d32cf 100%);
  color: #fff !important;    /* Fix 2: ensure white text on solid buttons */
  border: none;
  box-shadow: 0 8px 18px rgba(53,94,224,0.22);
}
body.lbf-home-v3 .lbf-pag25-btn--ghost {
  background: linear-gradient(180deg, #ffffff 0%, #edf2ff 100%);
  color: #6a4dff;
  border: 1px solid #cdd9ff;
  box-shadow: 0 4px 10px rgba(40,79,199,0.08);
}

/* ── RIGHT column ──
   rounded-[22px] border border-[#e2d8ff]
   bg-[linear-gradient(135deg,#fff9f1_0%,#f5edff_34%,#efe5ff_68%,#fff8ea_100%)]
   p-4 shadow-[0_16px_34px_rgba(40,79,199,0.08)] */
body.lbf-home-v3 .lbf-pag25-right {
  border-radius: 22px;
  border: 1px solid #e2d8ff;
  background: linear-gradient(135deg, #fff9f1 0%, #f5edff 34%, #efe5ff 68%, #fff8ea 100%);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(40,79,199,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;       /* center pill and grid */
  gap: 0.625rem;
}

/* date/venue pill:
   inline-flex items-center rounded-full border border-[#d7ddff]
   bg-[linear-gradient(90deg,#f2ecff_0%,#efe7ff_100%)] px-2.5 py-1
   text-[10px] font-black uppercase tracking-[0.18em] text-[#6a4dff] */
body.lbf-home-v3 .lbf-pag25-date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(106,77,255,0.4);
  background: linear-gradient(135deg, #7c6cff 0%, #6a4dff 50%, #4b2fbf 100%);
  padding: 0.3rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  align-self: center;        /* center pill horizontally in the right column */
  text-align: center;
  box-shadow: 0 4px 12px rgba(106,77,255,0.30);
}

/* Division cards grid:
   grid gap-2.5 sm:grid-cols-2 lg:grid-cols-2
   card: flex min-h-[104px] w-full flex-col items-center justify-center
         rounded-[12px] border border-[#eadfff] bg-white/90 px-3 py-3 text-center */
body.lbf-home-v3 .lbf-pag25-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fix 3: 3 cols desktop */
  gap: 0.625rem;
  width: 100%; /* fill centered right column */
}
body.lbf-home-v3 .lbf-pag25-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 163px; /* 25% taller again: was 130px */
  background: rgba(255,255,255,0.90);
  border: 1px solid #eadfff;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  /* v29.38.5: card is now an <a> link to the about-our-pageant page */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
body.lbf-home-v3 a.lbf-pag25-cat:hover,
body.lbf-home-v3 a.lbf-pag25-cat:focus-visible {
  transform: translateY(-2px);
  border-color: #6a4dff;
  box-shadow: 0 12px 24px rgba(40,79,199,0.16);
  text-decoration: none;
  color: inherit;
  outline: none;
}
body.lbf-home-v3 a.lbf-pag25-cat:focus-visible {
  outline: 3px solid rgba(106,77,255,0.4);
  outline-offset: 3px;
}
body.lbf-home-v3 .lbf-pag25-cat:hover {
  transform: translateY(-2px);
  border-color: #c7d7ff;
  box-shadow: 0 12px 24px rgba(40,79,199,0.08);
}
body.lbf-home-v3 .lbf-pag25-cat--empty { opacity: 0.45; border-style: dashed; }

/* Division card — v29.38.4: photo replaces crown emoji.
   Circle grew 35% from 2.25rem to 3.0625rem; photo fills the circle and
   clips to a perfect round image. More margin between photo and text so
   the photo sits visually "up" and the text data block sits "down". */
body.lbf-home-v3 .lbf-pag25-cat-icon {
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  width: 3.0625rem; height: 3.0625rem;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b2fbf 0%, #6a4dff 100%);
  font-size: 0.875rem;
  color: #fff;
  box-shadow: 0 8px 16px rgba(40,79,199,0.16);
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #fff;
}
body.lbf-home-v3 .lbf-pag25-cat-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
body.lbf-home-v3 .lbf-pag25-cat-icon-fallback {
  font-size: 1.4rem;
  line-height: 1;
}
/* name: text-sm font-black tracking-tight text-slate-900 */
body.lbf-home-v3 .lbf-pag25-cat-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.2;
}
/* sub: text-[11px] font-bold uppercase tracking-[0.14em] text-[#6a4dff] mt-0.5 */
body.lbf-home-v3 .lbf-pag25-cat-sub {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6a4dff;
  margin-top: 0.125rem;
}
/* age: text-xs leading-5 text-slate-500 mt-1 */
body.lbf-home-v3 .lbf-pag25-cat-age {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-pag25-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-pag25-cats { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .lbf-pag25-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-pag25-cats { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .lbf-pag25-btns { justify-content: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════
   §25-B  SPONSORS & DONORS — v25.0
   Pixel-faithful translation of lexington_blueberry_homepage_sections_mockup.jsx
   Outer section bg/border/shadow set via inline style on .lbf-spd25
═══════════════════════════════════════════════════════════════ */

/* Ambient glow orbs */
body.lbf-home-v3 .lbf-spd25::before {
  content: '';
  position: absolute;
  left: -4rem; top: 2rem;
  width: 10rem; height: 10rem;
  border-radius: 50%;
  background: rgba(54,86,216,0.14);
  filter: blur(48px);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-spd25::after {
  content: '';
  position: absolute;
  right: 2.5rem; top: 2.5rem;
  width: 8rem; height: 8rem;
  border-radius: 50%;
  background: rgba(74,46,159,0.12);
  filter: blur(42px);
  pointer-events: none;
}

/* Section eyebrow — slightly warmer blue to match JSX spec */
body.lbf-home-v3 .lbf-spd25 .v3-sec-eyebrow { color: #355ee0; }
/* Fix 2: More breathing room between intro and content */
body.lbf-home-v3 .lbf-spd25 .v3-sec-intro { margin-bottom: 1.75rem; }

/* ── Two-column grid: 1.1fr 0.9fr ── */
body.lbf-home-v3 .lbf-spd25-grid {
  display: grid;
  grid-template-columns: 7fr 3fr; /* 70/30 split */
  gap: 2rem;
  align-items: start;
  min-width: 0;
}
body.lbf-home-v3 .lbf-spd25-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Presenting sponsor card ──
   rounded-[28px] border border-[#465cc9]
   bg-[linear-gradient(135deg,#5d7cf0_0%,#3f5fdc_18%,#2447b8_38%,#1b2f8a_62%,#372a86_82%,#4a2b84_100%)]
   p-5 text-white shadow-[0_22px_42px_rgba(46,79,199,0.24)] */
body.lbf-home-v3 .lbf-spd25-pres-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #465cc9;
  background: linear-gradient(135deg, #5d7cf0 0%, #3f5fdc 18%, #2447b8 38%, #1b2f8a 62%, #372a86 82%, #4a2b84 100%);
  padding: 0.75rem;
  color: #fff;
  box-shadow: 0 14px 28px rgba(46,79,199,0.20);
}
/* Multi-layer overlays */
body.lbf-home-v3 .lbf-spd25-pres-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 30%);
  pointer-events: none;
  z-index: 0;
}
body.lbf-home-v3 .lbf-spd25-pres-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 35%, rgba(76,49,199,0.16) 100%);
  pointer-events: none;
  z-index: 0;
}
body.lbf-home-v3 .lbf-spd25-pres-inner { position: relative; z-index: 2; }

/* "Presenting Sponsor" badge:
   inline-flex rounded-full border border-white/16 bg-white/18
   px-3 py-1.5 text-[10px] font-black uppercase tracking-[0.22em] text-white mb-3 */
body.lbf-home-v3 .lbf-spd25-pres-badge {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.18);
  padding: 0.2rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 0.4rem;
}
/* Body: grid gap-4 md:grid-cols-[1fr_auto] md:items-center */
body.lbf-home-v3 .lbf-spd25-pres-body {
  display: grid;
  grid-template-columns: 1fr 180px; /* match logo-wrap width */
  gap: 1rem;
  align-items: center;
}
/* "Presented by": text-[10px] font-bold uppercase tracking-[0.18em] text-blue-100/95 */
body.lbf-home-v3 .lbf-spd25-pres-by {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(219,234,254,0.95);
  margin-bottom: 0.25rem;
}
/* Sponsor name: text-xl md:text-[26px] font-black leading-tight tracking-tight Outfit */
body.lbf-home-v3 .lbf-spd25-pres-name {
  font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5rem;
}
body.lbf-home-v3 .lbf-spd25-pres-name a { color: #fff; text-decoration: none; }
body.lbf-home-v3 .lbf-spd25-pres-name a:hover { text-decoration: underline; }
/* desc: text-sm leading-6 text-purple-50 max-w-md */
body.lbf-home-v3 .lbf-spd25-pres-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #f5f3ff;
  margin: 0;
  max-width: 100%; /* fill left column — let grid control the split */
}
/* Logo area:
   rounded-[22px] border border-white/20
   bg-[linear-gradient(180deg,rgba(255,255,255,0.22)_0%,rgba(255,255,255,0.10)_100%)]
   px-6 py-9 text-center
   inner: flex h-32 items-center justify-center rounded-[16px]
          border border-dashed border-white/30 bg-white/5
          text-[10px] font-semibold uppercase tracking-[0.18em] text-purple-50/80 */
body.lbf-home-v3 .lbf-spd25-pres-logo-wrap {
  position: relative;
  z-index: 3;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  background: #ffffff;
  padding: 0.75rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 10px 22px rgba(8,22,84,0.22);
  width: 180px;
  min-width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
body.lbf-home-v3 .lbf-spd25-pres-logo-wrap:hover {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5),
              0 0 28px rgba(255,255,255,0.55),
              0 0 54px rgba(138,180,255,0.35);
  transform: translateY(-2px);
  cursor: pointer;
}
/* The anchor inside the logo wrap fills it completely */
body.lbf-home-v3 .lbf-spd25-pres-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
body.lbf-home-v3 .lbf-spd25-pres-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
  margin: auto;
}
body.lbf-home-v3 .lbf-spd25-pres-logo-placeholder {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.05);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,243,255,0.80);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0 0.75rem;
  text-align: center;
}
body.lbf-home-v3 .lbf-spd25-pres-logo-placeholder:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 28px rgba(255,255,255,0.28), 0 0 42px rgba(138,180,255,0.22);
}

/* ── Festival stats strip ──
   rounded-[18px] border border-[#d7e4ff]
   bg-[linear-gradient(180deg,#ffffff_0%,#eef5ff_100%)] px-3 py-2.5
   shadow-[0_10px_18px_rgba(40,79,199,0.05)]
   grid gap-2 text-center sm:grid-cols-3 */
body.lbf-home-v3 .lbf-spd25-fest-stats {
  border-radius: 18px;
  border: 1px solid #d7e4ff;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  padding: 0.625rem 0.75rem;
  box-shadow: 0 10px 18px rgba(40,79,199,0.05), inset 0 0 0 1px rgba(255,255,255,0.92);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  text-align: center;
}
/* num: text-[16px] font-black tracking-tight text-[#6a4dff] */
body.lbf-home-v3 .lbf-spd25-fest-num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #6a4dff;
}
/* lbl: text-[10px] font-semibold leading-4 text-slate-500 */
body.lbf-home-v3 .lbf-spd25-fest-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #64748b;
  margin-top: 0.125rem;
}

/* ── Sponsor tier rows ──
   rounded-[20px] bg-white/55 p-2 backdrop-blur-[2px]
   (wrapping each tier, replaces old .tier-row styling in this section) */
body.lbf-home-v3 .lbf-spd25 .tier-row {
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  padding: 0.35rem 0.35rem 0.35rem;
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: none;
}
/* Tier label — plain text only, no pill background */
body.lbf-home-v3 .lbf-spd25 .tier-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #6a4dff !important;
  text-align: center;
  display: block;
  margin-bottom: 0.25rem;
  /* strip global pill styling */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
/* Sponsor cards within tier rows — styled per tier size class from JSX cardClass values */
/* Platinum (tg=lg → lbf-spd25 overrides):
   rounded-[18px] min-h-[64px] px-4 py-2 text-sm border-[#d8e1f3]
   bg-[linear-gradient(180deg,#ffffff_0%,#f7faff_100%)] */
body.lbf-home-v3 .lbf-spd25 .sp-lg {
  border-radius: 12px;
  height: 72px;
  min-height: 72px;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  border: 1px solid #d8e1f3;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.lbf-home-v3 .lbf-spd25 .sp-lg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;       /* scale image to fit without distortion */
  display: block;
}
/* Gold (ts=md):
   rounded-[16px] min-h-[56px] px-3.5 py-2 text-xs border-[#d9def5]
   bg-[linear-gradient(180deg,#ffffff_0%,#fbfcff_100%)] */
body.lbf-home-v3 .lbf-spd25 .sp-md {
  border-radius: 12px;
  height: 56px;
  min-height: 56px;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
  border: 1px solid #d9def5;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.lbf-home-v3 .lbf-spd25 .sp-md img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Silver (tb=sm):
   rounded-[14px] min-h-[50px] px-3 py-1.5 text-xs border-[#d6def1] bg-white */
body.lbf-home-v3 .lbf-spd25 .sp-sm {
  border-radius: 10px;
  height: 46px;
  min-height: 46px;
  padding: 0.3rem 0.4rem;
  font-size: 0.75rem;
  border: 1px solid #d6def1;
  background: #fff;
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.lbf-home-v3 .lbf-spd25 .sp-sm img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Bronze (tf=xs):
   rounded-[12px] min-h-[46px] px-2.5 py-1.5 text-[11px] border-[#ddd7ef] bg-white */
body.lbf-home-v3 .lbf-spd25 .sp-xs {
  border-radius: 10px;
  height: 38px;
  min-height: 38px;
  padding: 0.2rem 0.3rem;
  font-size: 0.6875rem;
  border: 1px solid #ddd7ef;
  background: #fff;
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.lbf-home-v3 .lbf-spd25 .sp-xs img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Sponsor name text in all cards: font-extrabold leading-tight text-slate-900 */
body.lbf-home-v3 .lbf-spd25 .sp {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.lbf-home-v3 .lbf-spd25 .sp img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
body.lbf-home-v3 .lbf-spd25 .sp-name-text,
body.lbf-home-v3 .lbf-spd25 .sp img ~ span,
body.lbf-home-v3 .lbf-spd25 .sp span {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  width: 100%;
  text-align: center;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
}
/* Centre all sponsor rows within their tier wrapper */
body.lbf-home-v3 .lbf-spd25 .sponsor-row {
  justify-content: center;
}
/* Sponsor row: grid layout per tier (override flex) */
/* Fix 8/9: reliable grid per tier using data-tier-idx (1-based, set in PHP) */
body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="1"] .sponsor-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; justify-items: center; }
body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="2"] .sponsor-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.5rem; justify-items: center; }
body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="3"] .sponsor-row { display: grid; grid-template-columns: repeat(6,1fr); gap: 0.5rem; justify-items: center; }
body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="4"] .sponsor-row { display: grid; grid-template-columns: repeat(7,1fr); gap: 0.5rem; justify-items: center; }

/* ── Sponsor section CTA buttons ──
   flex justify-center gap-2 mt-5
   solid: rounded-full bg-[linear-gradient(135deg,...)] px-3.5 py-2 text-[12px] font-black text-white
   ghost: rounded-full border border-[#cbd9ff] bg-[linear-gradient(180deg,...)] text-[#6a4dff] */
body.lbf-home-v3 .lbf-spd25-cta-row {
  display: flex;
  justify-content: stretch;  /* Fill full width */
  flex-wrap: nowrap;         /* Fix 6: single line always */
  gap: 0.5rem;
  margin-top: 1.25rem;
  /* padding so hover shadows aren't clipped */
  padding: 0.25rem 0.25rem 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
body.lbf-home-v3 .lbf-spd25-cta-row::-webkit-scrollbar { display: none; }
body.lbf-home-v3 .lbf-spd25-cta-btn {
  flex: 1 1 0;               /* Fix 6: grow to fill row equally */
  min-width: 0;
  border-radius: 999px;
  padding: 0.625rem 0.5rem;  /* Fix 6: slightly taller */
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem;      /* Fix 6: slightly larger text */
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, filter 0.15s;
  cursor: pointer;
  text-align: center;
}
body.lbf-home-v3 .lbf-spd25-cta-btn:hover { transform: translateY(-2px); filter: brightness(0.95); }
body.lbf-home-v3 .lbf-spd25-cta-btn--solid {
  background: linear-gradient(135deg, #7a95ff 0%, #4f72f3 28%, #0037a7 68%, #5d32cf 100%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(53,94,224,0.28);
}
body.lbf-home-v3 .lbf-spd25-cta-btn--ghost {
  background: linear-gradient(180deg, #ffffff 0%, #edf2ff 100%);
  color: #6a4dff;
  border: 1px solid #cbd9ff;
  box-shadow: 0 6px 14px rgba(40,79,199,0.10);
}

/* ── RIGHT column — donation panel ──
   rounded-[28px] border border-[#d2ddff]
   bg-[linear-gradient(180deg,#ffffff_0%,#ecf4ff_28%,#eef0ff_58%,#f7f1ff_82%,#ffffff_100%)]
   p-5 shadow-[0_24px_54px_rgba(40,79,199,0.14)] */
body.lbf-home-v3 .lbf-spd25-right {
  position: relative;
  overflow: visible;
  min-width: 0;
  width: 100%;       /* fill the grid column edge-to-edge */
}
body.lbf-home-v3 .lbf-spd25-donate-card {
  border-radius: 28px;
  border: 1px solid #d2ddff;
  background: linear-gradient(180deg, #ffffff 0%, #ecf4ff 28%, #eef0ff 58%, #f7f1ff 82%, #ffffff 100%);
  padding: 1.25rem;
  box-shadow: 0 24px 54px rgba(40,79,199,0.14);
  position: relative;
  overflow: visible;
  width: 100%;       /* fill the right column edge-to-edge */
  max-width: none;   /* override old .donate-card { max-width:60% } from style.css */
  margin-left: 0;    /* override old .donate-card { margin: auto } */
  margin-right: 0;
  box-sizing: border-box;
}
/* Clip only the decorative glow orb, not the content */
body.lbf-home-v3 .lbf-spd25-donate-card > .lbf-spd25-donate-card-inner {
  position: relative;
  z-index: 1;
}
/* Donation panel glow orbs */
body.lbf-home-v3 .lbf-spd25-donate-card::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 8rem; height: 8rem;
  border-radius: 50%;
  background: rgba(40,79,199,0.18);
  filter: blur(48px);
  pointer-events: none;
}

/* "Make a Donation" badge:
   inline-flex items-center rounded-full border border-[#d7ddff]
   bg-[linear-gradient(90deg,#f2ecff_0%,#efe7ff_100%)] px-3 py-1.5
   text-[10px] font-black uppercase tracking-[0.22em] text-[#6a4dff] mb-3 */
body.lbf-home-v3 .lbf-spd25-donate-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d7ddff;
  background: linear-gradient(90deg, #f2ecff 0%, #efe7ff 100%);
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #6a4dff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
/* h3: text-xl md:text-[26px] font-black tracking-tight text-slate-900 Outfit */
body.lbf-home-v3 .lbf-spd25-donate-h {
  font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}
/* sub-p: text-sm leading-6 text-slate-600 */
body.lbf-home-v3 .lbf-spd25-donate-sub {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
/* "Your Gift Helps" box:
   mt-4 rounded-[20px] border border-[#d7ddff]
   bg-[linear-gradient(90deg,#edf4ff_0%,#f3eeff_100%)] px-4 py-3 text-center
   shadow-[0_14px_28px_rgba(40,79,199,0.08)] */
body.lbf-home-v3 .lbf-spd25-your-gift {
  border-radius: 20px;
  border: 1px solid #d7ddff;
  background: linear-gradient(90deg, #edf4ff 0%, #f3eeff 100%);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 14px 28px rgba(40,79,199,0.08);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
/* "Your Gift Helps": text-[16px] font-black uppercase tracking-[0.12em] text-[#6a4dff] */
body.lbf-home-v3 .lbf-spd25-gift-h {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a4dff;
}
/* sub: text-xs leading-5 text-slate-600 mt-1 */
body.lbf-home-v3 .lbf-spd25-gift-sub {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #475569;
  margin-top: 0.25rem;
}

/* ── Donation amount cards ──
   grid gap-3 sm:grid-cols-2 mt-6
   card: rounded-[18px] border px-3.5 py-3 shadow-sm transition
   normal: border-[#dbe6ff] bg-[linear-gradient(180deg,#ffffff_0%,#f7faff_100%)]
   popular ($25): border-[#284fc7] bg-[linear-gradient(180deg,#eef4ff_0%,#f6f1ff_100%)]
                  shadow-[0_16px_32px_rgba(40,79,199,0.16)] */
body.lbf-home-v3 .lbf-spd25-amt-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr); /* equal cols regardless of content */
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
body.lbf-home-v3 .lbf-spd25-amt-card {
  border-radius: 18px;
  border: 1px solid #dbe6ff;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: 0.75rem 0.875rem;
  box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  width: 100%;       /* fill grid cell */
  box-sizing: border-box;
}
body.lbf-home-v3 .lbf-spd25-amt-card:hover {
  transform: translateY(-2px);
  border-color: #c9d8ff;
  box-shadow: 0 14px 28px rgba(40,79,199,0.10);
}
body.lbf-home-v3 .lbf-spd25-amt-card--popular {
  border-color: #284fc7;
  background: linear-gradient(180deg, #eef4ff 0%, #f6f1ff 100%);
  box-shadow: 0 16px 32px rgba(40,79,199,0.16);
}
/* Row inside each card: flex items-start gap-2.5 */
body.lbf-home-v3 .lbf-spd25-amt-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
/* Icon circle: mt-0.5 flex h-10 w-10 shrink-0 items-center justify-center rounded-full
   normal: bg-[#eef2fc] text-[#6a4dff]
   popular: bg-[linear-gradient(135deg,#4b2fbf_0%,#6a4dff_100%)] text-white */
body.lbf-home-v3 .lbf-spd25-amt-icon {
  margin-top: 0.125rem;
  display: flex;
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: #eef2fc;
  color: #6a4dff;
}
body.lbf-home-v3 .lbf-spd25-amt-icon svg { width: 1.125rem; height: 1.125rem; fill: currentColor; }
body.lbf-home-v3 .lbf-spd25-amt-icon--popular {
  background: linear-gradient(135deg, #4b2fbf 0%, #6a4dff 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(40,79,199,0.22);
}
body.lbf-home-v3 .lbf-spd25-amt-content { min-width: 0; }
/* Top row: flex items-center gap-2 */
body.lbf-home-v3 .lbf-spd25-amt-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Amount value: text-[22px] font-black leading-none tracking-tight text-slate-900 */
body.lbf-home-v3 .lbf-spd25-amt-val {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0f172a;
}
/* Popular badge:
   rounded-full bg-[linear-gradient(135deg,#4b2fbf_0%,#6a4dff_100%)]
   px-2 py-0.5 text-[9px] font-bold uppercase tracking-[0.12em] text-white */
body.lbf-home-v3 .lbf-spd25-popular-badge {
  border-radius: 999px;
  background: linear-gradient(135deg, #4b2fbf 0%, #6a4dff 100%);
  padding: 0.125rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
}
/* Desc: text-[11px] leading-4 text-slate-600 mt-1 */
body.lbf-home-v3 .lbf-spd25-amt-desc {
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #475569;
  margin-top: 0.25rem;
}

/* ── Recurring label ──
   mt-5 flex items-center gap-3 rounded-[18px] border border-[#d7e0ff]
   bg-[linear-gradient(90deg,#eef4ff_0%,#f5f0ff_100%)] px-4 py-3.5
   text-sm font-bold text-slate-700 shadow-[0_12px_26px_rgba(40,79,199,0.08)] */
body.lbf-home-v3 .lbf-spd25 .v3-recur-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 18px;
  border: 1px solid #d7e0ff;
  background: linear-gradient(90deg, #eef4ff 0%, #f5f0ff 100%);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 12px 26px rgba(40,79,199,0.08);
  margin-top: 1.25rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* ── Donate Now button ──
   mt-5 w-full rounded-[22px]
   bg-[linear-gradient(135deg,#7a95ff_0%,#4f72f3_24%,#0037a7_58%,#5d32cf_100%)]
   px-5 py-4.5 text-xl font-black text-white
   shadow-[0_18px_32px_rgba(53,94,224,0.28)] Outfit */
body.lbf-home-v3 .lbf-spd25 .v3-donate-cta {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #7a95ff 0%, #4f72f3 24%, #0037a7 58%, #5d32cf 100%);
  padding: 1.125rem 1.25rem;
  font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(53,94,224,0.28);
  transition: transform 0.18s, filter 0.15s;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}
body.lbf-home-v3 .lbf-spd25 .v3-donate-cta:hover { transform: translateY(-2px); filter: brightness(0.95); }

/* ── Payment chips ──
   mt-6 flex flex-wrap justify-center gap-2.5
   chip: rounded-full border border-[#d9e3ff]
         bg-[linear-gradient(180deg,rgba(255,255,255,0.96)_0%,rgba(241,246,255,0.92)_100%)]
         px-3.5 py-2 text-[11px] font-bold text-[#5b6b95] */
body.lbf-home-v3 .lbf-spd25 .v3-pay-chips {
  display: flex;
  flex-wrap: nowrap;         /* single row */
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
body.lbf-home-v3 .lbf-spd25 .v3-pay-chip {
  border-radius: 999px;
  border: 1px solid #d9e3ff;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(241,246,255,0.92) 100%);
  padding: 0.3rem 0.6rem;    /* smaller to fit 5 on one row */
  font-size: 0.5625rem;      /* smaller text */
  font-weight: 700;
  color: #5b6b95;
  box-shadow: 0 4px 8px rgba(40,79,199,0.05);
  white-space: nowrap;
}
/* secure note: mt-3 text-center text-[11px] leading-5 text-slate-500 */
body.lbf-home-v3 .lbf-spd25-secure-note {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;          /* bold */
  line-height: 1.5;
  color: #64748b;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-spd25-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-spd25-pres-body { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-spd25-pres-logo-wrap { display: flex; max-width: 200px; margin: 0 auto; }
  body.lbf-home-v3 .lbf-spd25-fest-stats { grid-template-columns: repeat(3,1fr); }
  body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="1"] .sponsor-row { grid-template-columns: repeat(4,1fr); }
  body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="2"] .sponsor-row { grid-template-columns: repeat(4,1fr); }
  body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="3"] .sponsor-row { grid-template-columns: repeat(4,1fr); }
  body.lbf-home-v3 .lbf-spd25 .tier-row[data-tier-idx="4"] .sponsor-row { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-spd25-amt-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-spd25-fest-stats { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-spd25 .tier-row .sponsor-row { grid-template-columns: repeat(2,1fr); }
}


/* Sponsor logo fit fix — keep logos inside existing card shapes without changing card size */
.sponsor-logo-wrap,
.sp {
  overflow: hidden;
  box-sizing: border-box;
}

.sponsor-logo-wrap a,
.sp > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.sponsor-logo-wrap img,
.sp img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  object-position: center center;
}

.page-template-page-sponsors-php .sp a,
.page-template-page-sponsors-php .sponsor-logo-wrap a,
body.lbf-home-v2 .sp > a,
body.lbf-home-v3 .sp > a,
body.lbf-home-v3 .lbf-spd25 .sp > a {
  padding: 0 !important;
}

.sponsor-logo-wrap img,
.sp img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
