/* ============================================================
   EGW Broadcast — Global stylesheet
   v1.0.0

   Contains: brand tokens, base reset, container, nav (header bar),
   buttons, utility classes, footer, dark-mode bridging.

   Specifically does NOT contain the broadcast hub styles — those
   are inlined in front-page.php and supplemented by:
   - ephesus-audio-player.css
   - broadcast-responsive.css
   ============================================================ */

:root {
	/* ───────────────── Brand palette — synced with main site (v1.0.6) ─────────────────
	   The broadcast subdomain mirrors the main egw-diaspora-theme tokens
	   exactly so visitors moving between the two sites see no shift. */

	/* Navy scale — primary brand accent on light bg */
	--navy-50:  #F0F4FA;
	--navy-100: #D9E2EE;
	--navy-200: #B3C4DD;
	--navy-300: #8BA5C9;
	--navy-400: #5D7FAD;
	--navy-500: #3D5F8E;
	--navy-600: #2A4A74;
	--navy-700: #1B3A5C;   /* current brand accent */
	--navy-800: #122948;
	--navy-900: #0B1B32;

	/* Neutral scale */
	--neutral-50:  #FAFAFA;
	--neutral-100: #F2F2F2;
	--neutral-200: #E4E4E4;
	--neutral-300: #CFCFCF;
	--neutral-400: #9E9E9E;
	--neutral-500: #707070;
	--neutral-600: #525252;
	--neutral-700: #3A3A3A;
	--neutral-800: #262626;
	--neutral-900: #121212;

	/* Gold scale — highlight/accent */
	--gold-50:  #FFFBF0;
	--gold-100: #FFF4D6;
	--gold-200: #FFE7A8;
	--gold-300: #FFD575;
	--gold-400: #FFBE3D;
	--gold-500: #F5A312;
	--gold-600: #D4850A;
	--gold-700: #A86608;
	--gold-800: #7A4A06;
	--gold-900: #4D2E03;

	/* Semantic colors */
	--color-primary:       var(--navy-700);
	--color-primary-dark:  var(--navy-800);
	--color-accent:        var(--navy-700);
	--color-accent-hover:  var(--navy-800);
	--color-accent-active: var(--navy-900);
	--color-accent-light:  var(--navy-500);
	--color-accent-subtle: var(--navy-50);

	--color-highlight:        var(--gold-500);
	--color-highlight-hover:  var(--gold-600);
	--color-highlight-subtle: var(--gold-100);

	/* Cream (the EGW signature surface — kept available as a legacy alias) */
	--color-cream:        #FFF1D3;
	--color-cream-dark:   #FFE7B0;

	/* Surfaces */
	--color-bg:        #FFFFFF;
	--color-bg-alt:    var(--neutral-50);
	--color-bg-muted:  var(--neutral-100);
	--color-bg-cream:  #FFF1D3;

	/* Text */
	--color-text:        var(--neutral-800);
	--color-text-strong: var(--neutral-900);
	--color-text-light:  #FFFFFF;
	--color-text-muted:  var(--neutral-600);
	--color-text-subtle: var(--neutral-500);
	--color-text-link:        var(--navy-700);
	--color-text-link-hover:  var(--navy-800);

	/* Borders */
	--color-border:        rgba(0, 0, 0, 0.08);
	--color-border-strong: var(--neutral-300);
	--color-border-subtle: var(--neutral-200);

	/* Typography */
	--font-heading: 'Jost', 'Inter', system-ui, sans-serif;
	--font-body:    'Barlow', 'Inter', system-ui, sans-serif;
	--font-size-xs:   0.75rem;
	--font-size-sm:   0.875rem;
	--font-size-base: 1rem;
	--font-size-lg:   1.125rem;
	--font-size-xl:   1.25rem;
	--font-size-2xl:  1.5rem;
	--font-size-3xl:  2rem;
	--font-size-4xl:  2.5rem;

	/* Weights */
	--font-weight-light:    300;
	--font-weight-regular:  400;
	--font-weight-medium:   500;
	--font-weight-semibold: 600;
	--font-weight-bold:     700;
	--font-weight-black:    800;

	/* Layout */
	--container-max:  1200px;
	--container-wide: 1320px;
	--nav-height:     72px;
	--border-radius-sm:   4px;
	--border-radius-md:   8px;
	--border-radius-lg:   16px;
	--border-radius-full: 9999px;

	/* Motion */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	/* Shadows (Rule 1 — 3D depth) */
	--shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
	--shadow-md: 0 4px 10px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.06);
	--shadow-lg: 0 14px 30px rgba(0,0,0,.10), 0 6px 12px rgba(0,0,0,.06);
}

[data-theme="dark"] {
	/* ───────────────── Dark palette — synced with main site ─────────────────
	   Same exact tokens as egw-diaspora-theme dark mode. */

	--neutral-50:  #121212;
	--neutral-100: #1A1A1A;
	--neutral-200: #262626;
	--neutral-300: #3C3C3C;
	--neutral-400: #5C5C5C;
	--neutral-500: #8A8A8A;
	--neutral-600: #B0B0B0;
	--neutral-700: #D0D0D0;
	--neutral-800: #E8EAED;
	--neutral-900: #FFFFFF;

	--navy-50:  #0B1B32;
	--navy-100: #122948;
	--navy-200: #1B3A5C;
	--navy-300: #2A4A74;
	--navy-400: #3D5F8E;
	--navy-500: #5D7FAD;
	--navy-600: #8BA5C9;
	--navy-700: #B3C4DD;
	--navy-800: #D9E2EE;
	--navy-900: #F0F4FA;

	/* Surfaces — main site dark uses #202124 (Material-ish charcoal) */
	--color-bg:        #202124;
	--color-bg-alt:    #292A2D;
	--color-bg-muted:  #1A1A1A;
	--color-bg-cream:  #1A1A1A;

	--color-text:        #E8EAED;
	--color-text-strong: #FFFFFF;
	--color-text-light:  #202124;
	--color-text-muted:  #9AA0A6;
	--color-text-subtle: #7A7F86;
	--color-text-link:        #FFF1D3;
	--color-text-link-hover:  #FFF7E6;

	--color-border:        #3C4043;
	--color-border-strong: #5A5F66;
	--color-border-subtle: #2D3035;

	--color-primary:       #E8EAED;
	--color-primary-dark:  #DADCE0;
	--color-accent:        #FFF1D3;
	--color-accent-hover:  #FFF7E6;
	--color-accent-active: #FFFBED;
	--color-accent-light:  #FFF7E6;
	--color-accent-subtle: rgba(255,241,211,0.08);

	--color-highlight:        var(--gold-400);
	--color-highlight-hover:  var(--gold-300);
	--color-highlight-subtle: rgba(255,190,61,0.10);

	/* Dark shadows */
	--shadow-sm: 0 1px 2px rgba(0,0,0,.55), 0 1px 1px rgba(0,0,0,.4);
	--shadow-md: 0 4px 10px rgba(0,0,0,.6), 0 2px 4px rgba(0,0,0,.4);
	--shadow-lg: 0 14px 30px rgba(0,0,0,.7), 0 6px 12px rgba(0,0,0,.5);
}

/* ============================================================
   Reset + base
   ============================================================ */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: 1.55;
	background: var(--color-bg);
	color: var(--color-text);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-top: var(--nav-height);
}

img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   Container
   ============================================================ */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
	width: 100%;
}

/* ============================================================
   Header / nav (the broadcast subdomain's own slim chrome)
   ============================================================ */
.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-height);
	background: var(--color-bg-alt);
	color: var(--color-text);
	z-index: 1000;
	box-shadow: var(--shadow-sm);
	transition: background var(--transition-base), box-shadow var(--transition-base);
	border-bottom: 1px solid var(--color-border);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 100%;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
	gap: clamp(12px, 2vw, 24px);
}

.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo .logo-dark  { display: none; }
[data-theme="dark"] .nav-logo .logo-light { display: none; }
[data-theme="dark"] .nav-logo .logo-dark  { display: block; }
.nav-logo__label {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.02;
	font-family: var(--font-heading);
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	gap: 1px;
}
.nav-logo__label-top    { font-size: 11px; opacity: .82; letter-spacing: .14em; }
.nav-logo__label-bottom { font-size: 16px; letter-spacing: .06em; }

.nav-actions { display: inline-flex; align-items: center; gap: 6px; }
.nav-icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 999px;
	background: rgba(15,42,74,.06);
	border: 1px solid rgba(15,42,74,.14);
	color: inherit; cursor: pointer;
	transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav-icon-btn:hover {
	background: rgba(15,42,74,.12);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-icon-btn .ico-sun { display: none; }
[data-theme="dark"] .nav-icon-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
[data-theme="dark"] .nav-icon-btn:hover { background: rgba(255,255,255,.12); }
[data-theme="dark"] .nav-icon-btn .ico-sun { display: block; }
[data-theme="dark"] .nav-icon-btn .ico-moon { display: none; }

.nav-back-link {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--color-cream);
	color: #000 !important;
	font-family: var(--font-heading);
	font-weight: 700; font-size: 13px;
	border: 1px solid rgba(184,134,43,.30);
	transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav-back-link:hover {
	background: var(--color-cream-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .nav-back-link {
	background: rgba(255,241,211,.92);
	color: #000 !important;
}

@media (max-width: 640px) {
	.nav-logo__label { display: none; }
	.nav-back-link { padding: 6px 10px; font-size: 12px; }
	.nav-back-link svg { width: 14px; height: 14px; }
}

/* ============================================================
   Buttons (used in fallback templates and CTAs)
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: .96rem;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-cta {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 6px 20px rgba(15,42,74,.25), 0 2px 6px rgba(15,42,74,.14);
}
.btn-cta:hover { background: #1d3a63; transform: translateY(-1px); }
.btn-outline {
	background: transparent;
	color: var(--color-primary);
	border: 1.5px solid rgba(15,42,74,.22);
}
.btn-outline:hover { background: rgba(15,42,74,.06); }
[data-theme="dark"] .btn-outline { color: var(--color-cream); border-color: rgba(255,255,255,.22); }
[data-theme="dark"] .btn-outline:hover { background: rgba(255,255,255,.06); }

/* ============================================================
   Eyebrow / chip / utility text
   ============================================================ */
.eyebrow {
	display: inline-block;
	padding: 4px 12px;
	background: var(--color-cream);
	color: #000;
	font-size: 11px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(184,134,43,.18);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
	background: var(--color-primary);
	color: var(--color-cream);
	padding: clamp(36px, 6vw, 56px) 0 24px;
	margin-top: clamp(40px, 6vw, 80px);
	box-shadow: 0 -6px 30px rgba(15,42,74,.18) inset;
}
[data-theme="dark"] .site-footer {
	background: #050b18;
	color: var(--color-cream);
}
.site-footer__inner {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 56px);
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
}
.site-footer h3 {
	font-family: var(--font-heading);
	font-weight: 800; font-size: 15px;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--color-cream);
	margin: 0 0 12px;
}
.site-footer p, .site-footer a {
	color: rgba(255,241,211,.85);
	font-size: 14px;
	line-height: 1.6;
}
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 4px 0; }
.site-footer__bottom {
	max-width: var(--container-max);
	margin: 24px auto 0;
	padding: 16px clamp(16px, 4vw, 32px) 0;
	border-top: 1px solid rgba(255,241,211,.15);
	display: flex; flex-wrap: wrap; gap: 12px;
	justify-content: space-between; align-items: center;
	font-size: 13px;
	color: rgba(255,241,211,.7);
}
@media (max-width: 760px) {
	.site-footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Focus styles (Rule 6 of EGW UX)
   ============================================================ */
:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	border-radius: var(--border-radius-sm);
}

/* ============================================================
   Reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ============================================================
   v1.0.1 — Responsive nav additions
   ============================================================ */
.nav-links {
	display: flex; align-items: center; gap: 4px;
	flex: 1 1 auto; justify-content: center;
	min-width: 0;
}
.nav-links a, .nav-links__menu > li > a {
	display: inline-flex; align-items: center;
	padding: 8px 14px; border-radius: 999px;
	font-family: var(--font-heading); font-weight: 600; font-size: 14px;
	color: inherit; text-decoration: none;
	border: 1px solid transparent;
	transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
	white-space: nowrap;
}
.nav-links a:hover, .nav-links__menu > li > a:hover, .nav-links__menu > li.current-menu-item > a {
	background: rgba(15,42,74,.06);
	border-color: rgba(15,42,74,.14);
	transform: translateY(-1px);
}
[data-theme="dark"] .nav-links a:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }

/* Language popover */
.nav-lang-wrap { position: relative; }
.nav-lang-pop {
	position: absolute; top: calc(100% + 8px); right: 0;
	min-width: 180px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-lg);
	padding: 6px;
	display: none;
	flex-direction: column; gap: 2px;
	z-index: 1100;
}
.nav-lang-wrap.is-open .nav-lang-pop { display: flex; }
.nav-lang-pop button {
	display: flex; align-items: center; gap: 10px;
	padding: 8px 12px;
	background: transparent; border: 0;
	color: inherit; text-align: left;
	font: inherit; cursor: pointer;
	border-radius: var(--border-radius-sm);
	transition: background var(--transition-fast);
}
.nav-lang-pop button:hover { background: rgba(15,42,74,.06); }
[data-theme="dark"] .nav-lang-pop button:hover { background: rgba(255,255,255,.06); }
.nav-lang-pop .flag { font-size: 16px; line-height: 1; }

/* Hamburger */
.nav-hamburger {
	display: none;
	align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 999px;
	background: rgba(15,42,74,.06);
	border: 1px solid rgba(15,42,74,.14);
	color: inherit; cursor: pointer;
}
.nav-hamburger svg { width: 20px; height: 20px; }
.nav-hamburger .ico-close { display: none; }
.nav-hamburger[aria-expanded="true"] .ico-bars { display: none; }
.nav-hamburger[aria-expanded="true"] .ico-close { display: block; }
[data-theme="dark"] .nav-hamburger { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }

/* Mobile drawer */
.mobile-nav {
	position: fixed;
	top: var(--nav-height); right: 0;
	width: min(86vw, 360px);
	max-height: calc(100vh - var(--nav-height));
	overflow-y: auto;
	background: var(--color-bg-alt);
	box-shadow: var(--shadow-lg);
	border-left: 1px solid var(--color-border);
	transform: translateX(100%);
	transition: transform var(--transition-base);
	z-index: 999;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__panel {
	padding: 16px;
	display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav__panel a, .mobile-nav__menu > li > a {
	display: flex; align-items: center; gap: 10px;
	padding: 14px 16px;
	font-family: var(--font-heading); font-weight: 600; font-size: 15px;
	color: inherit; text-decoration: none;
	border-radius: var(--border-radius-md);
	border: 1px solid transparent;
	min-height: 44px;
	transition: background var(--transition-fast), border-color var(--transition-fast);
}
.mobile-nav__panel a:hover, .mobile-nav__menu > li > a:hover {
	background: rgba(15,42,74,.06);
	border-color: rgba(15,42,74,.14);
}
[data-theme="dark"] .mobile-nav__panel a:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.mobile-nav__main {
	margin-top: 8px;
	background: var(--color-cream);
	color: #000 !important;
	border: 1px solid rgba(184,134,43,.30) !important;
	justify-content: center;
	font-weight: 700;
}

/* Responsive breakpoints */
/* v1.0.13 — Hamburger appears on every screen where the desktop
   nav-links collapse, not just on tiny phones. This mirrors the main
   site's behaviour. */
@media (max-width: 980px) {
	.nav-links { display: none; }
	.nav-hamburger { display: inline-flex !important; }
	.nav-back-link span { display: none; }
	.nav-back-link { padding: 0; width: 40px; height: 40px; border-radius: 999px; justify-content: center; }
	.nav-back-link svg { width: 16px; height: 16px; }
}
@media (max-width: 720px) {
	.nav-logo__label { display: none; }
	.nav-logo img { height: 36px; }
	.nav-actions { gap: 4px; }
}
@media (min-width: 981px) {
	.nav-hamburger { display: none !important; }
	.mobile-nav { display: none !important; }
}

/* Touch targets (Fitts's Law) */
@media (pointer: coarse) {
	.nav-icon-btn, .nav-hamburger, .nav-back-link { min-width: 44px; min-height: 44px; }
}

/* ============================================================
   v1.0.3 — Section pages (Audio, Video, EGW Radio, Past
   Services, Upcoming Schedule)
   ============================================================ */
.bc-page-hero {
	padding: clamp(48px, 8vw, 96px) 0 clamp(28px, 5vw, 56px);
	background: radial-gradient(120% 100% at 50% 0%, rgba(255,241,211,.45) 0%, rgba(255,241,211,0) 65%);
	text-align: center;
}
[data-theme="dark"] .bc-page-hero {
	background: radial-gradient(120% 100% at 50% 0%, rgba(15,42,74,.32) 0%, rgba(15,42,74,0) 65%);
}
.bc-page-hero__title {
	font-family: var(--font-heading);
	font-weight: 800; letter-spacing: -0.02em; line-height: 1.08;
	font-size: clamp(1.8rem, 4vw, 3rem);
	margin: 14px 0 12px;
}
.bc-page-hero__lead {
	color: var(--color-text-muted);
	font-size: clamp(0.96rem, 1.4vw, 1.12rem);
	line-height: 1.55;
	max-width: 60ch; margin: 0 auto 18px;
}

.bc-grid {
	/* v1.0.13 — moderate fixed-ish card width; 3-up on desktop, 2-up
	   on tablet, 1-up on mobile. Auto-fill + justify-content:start so
	   2 cards sit on the left instead of stretching the row. */
	display: grid;
	grid-template-columns: repeat(auto-fill, clamp(260px, 28%, 320px));
	justify-content: start;
	gap: clamp(16px, 2vw, 28px);
	align-items: start;
}
.bc-section { padding: clamp(36px, 6vw, 72px) 0; }
.bc-section + .bc-section { padding-top: 0; }
.bc-empty {
	text-align: center;
	padding: clamp(36px, 7vw, 72px) 0;
	background: rgba(15,42,74,.04);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .bc-empty { background: rgba(255,255,255,.04); }
.bc-empty__icon { display: inline-flex; margin-bottom: 14px; color: var(--color-primary); }
[data-theme="dark"] .bc-empty__icon { color: var(--color-cream); }
.bc-empty__title { font-family: var(--font-heading); font-weight: 800; margin: 0 0 6px; font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.bc-empty__lead { color: var(--color-text-muted); max-width: 42ch; margin: 0 auto 18px; }

/* Filter chips row used on Audio + Past Services */
.bc-filter-row {
	display: flex; flex-wrap: wrap; gap: 8px;
	justify-content: center;
	margin-bottom: clamp(20px, 3vw, 32px);
}
.bc-filter-chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(15,42,74,.06);
	border: 1px solid rgba(15,42,74,.14);
	color: inherit; cursor: pointer;
	font-family: var(--font-heading); font-weight: 600; font-size: 14px;
	transition: background var(--transition-fast), transform var(--transition-fast);
}
.bc-filter-chip:hover { background: rgba(15,42,74,.12); transform: translateY(-1px); }
.bc-filter-chip.is-active {
	background: var(--color-primary);
	color: var(--color-cream);
	border-color: var(--color-primary);
}
[data-theme="dark"] .bc-filter-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
[data-theme="dark"] .bc-filter-chip:hover { background: rgba(255,255,255,.12); }
[data-theme="dark"] .bc-filter-chip.is-active { background: var(--color-cream); color: var(--color-primary); border-color: var(--color-cream); }

/* Schedule list */
.bc-schedule {
	display: flex; flex-direction: column;
	gap: 14px;
	max-width: 880px; margin: 0 auto;
}
.bc-schedule__item {
	display: grid;
	grid-template-columns: 92px 1fr auto;
	gap: clamp(14px, 2vw, 28px);
	align-items: center;
	padding: clamp(14px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.bc-schedule__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bc-schedule__date {
	text-align: center;
	background: var(--color-cream);
	color: #000;
	border-radius: var(--border-radius-md);
	padding: 8px 10px;
	min-width: 72px;
}
.bc-schedule__date .day { font-family: var(--font-heading); font-weight: 800; font-size: 24px; line-height: 1; display: block; }
.bc-schedule__date .month { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.bc-schedule__title { margin: 0 0 4px; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }
.bc-schedule__meta { color: var(--color-text-muted); font-size: 13px; }
.bc-schedule__cta { white-space: nowrap; }
@media (max-width: 640px) {
	.bc-schedule__item { grid-template-columns: 64px 1fr; }
	.bc-schedule__cta { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
}

/* EGW Radio centerpiece */
.bc-radio-stage {
	padding: clamp(28px, 4vw, 56px);
	background: linear-gradient(180deg, var(--color-cream) 0%, #fff7e0 100%);
	color: #000;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	text-align: center;
	max-width: 880px; margin: 0 auto;
}
[data-theme="dark"] .bc-radio-stage {
	background: linear-gradient(180deg, #1a2a45 0%, #0F2A4A 100%);
	color: var(--color-cream);
}
.bc-radio-stage h2 { margin: 0 0 8px; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.bc-radio-stage p { margin: 0 0 20px; opacity: .82; max-width: 52ch; margin-left: auto; margin-right: auto; }
.bc-radio-stage .radio-pulse {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
	color: #B8862B;
}
.bc-radio-stage .radio-pulse::before {
	content: ""; width: 8px; height: 8px; border-radius: 999px; background: #ff4040;
	animation: bcPulse 1.6s ease-in-out infinite;
}
@keyframes bcPulse { 0%, 100% { transform: scale(.9); opacity: .8; } 50% { transform: scale(1.4); opacity: 1; } }

/* ============================================================
   v1.0.8 — Kill default <li> bullets in the nav menus.
   wp_nav_menu() output wraps each item in <li> which renders the
   list-style-disc dot we don't want between Audio · Video · EGW Radio.
   ============================================================ */
.nav-links ul,
.nav-links ol,
.nav-links li,
.nav-links__menu,
.nav-links__menu li,
.mobile-nav__panel ul,
.mobile-nav__panel ol,
.mobile-nav__panel li,
.mobile-nav__menu,
.mobile-nav__menu li,
.broadcast-subheader__nav ul,
.broadcast-subheader__nav li,
.broadcast-subheader__menu,
.broadcast-subheader__menu li {
	list-style: none !important;
	padding-left: 0 !important;
	margin: 0 !important;
}
.nav-links li::marker,
.nav-links__menu li::marker,
.mobile-nav__panel li::marker,
.mobile-nav__menu li::marker,
.broadcast-subheader__nav li::marker,
.broadcast-subheader__menu li::marker {
	content: none !important;
	color: transparent !important;
}
.nav-links li,
.nav-links__menu li,
.broadcast-subheader__nav li,
.broadcast-subheader__menu li {
	display: inline-flex;
}
.mobile-nav__menu li,
.mobile-nav__panel li {
	display: block;
}

/* ============================================================
   v1.0.11 — Mobile + tablet polish across every section.
   Breakpoints: 1024 (tablet), 768 (small tablet), 480 (mobile),
   375 (small mobile, iPhone SE-ish).
   Designed to feel identical in fluidity to the main site.
   ============================================================ */

/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
	body { padding-top: var(--nav-height); }
	.container { padding: 0 clamp(14px, 3vw, 24px); }

	/* Section tiles — drop from 5-up to 3-up */
	.bc-tiles { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
	.bc-tile { min-height: 200px; padding: 22px; }
	.bc-tile__title { font-size: 1.15rem; }

	/* Library grids */
	.bc-grid { grid-template-columns: repeat(auto-fill, clamp(240px, 32%, 300px)); gap: 18px; }

	/* Platform intro: stack a touch sooner so prose fits */
	.bc-platform-intro { gap: 32px; }

	/* Tile icons + meta tighter */
	.bc-tile__icon { width: 48px; height: 48px; }
	.bc-tile__icon svg { width: 26px; height: 26px; }

	/* Mini schedule + Past Services list rows */
	.bc-schedule__item { padding: 14px 18px; }

	/* Footer columns are still 3 — already responsive in main site copy */
	.site-footer__inner { gap: 28px; }

	/* Video master player meta + sidebar still readable */
	.evm__chat-frame { min-height: 320px; }
}

/* ---------- Small tablet / large phone (≤ 768px) ---------- */
@media (max-width: 768px) {
	body { padding-top: var(--nav-height); }

	/* Section tile grid → 2-up */
	.bc-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.bc-tile { min-height: 180px; padding: 18px; }
	.bc-tile__title { font-size: 1.05rem; }
	.bc-tile__lead { font-size: .9rem; }

	/* Library grids → 2-up */
	.bc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; justify-content: stretch; }

	/* Section vertical rhythm tighter */
	.broadcast-page section,
	.bc-section { padding: clamp(28px, 5vw, 56px) 0; }
	.bc-landing-hero { padding: clamp(40px, 8vw, 72px) 0 clamp(28px, 5vw, 48px); }
	.bc-page-hero { padding: clamp(32px, 6vw, 56px) 0 clamp(20px, 4vw, 36px); }

	/* Hero CTAs wrap nicely */
	.bc-landing-hero__cta { gap: 8px; }
	.bc-landing-hero__cta .btn { padding: 11px 18px; font-size: .92rem; }

	/* Mini schedule item: date column smaller */
	.bc-schedule__item { grid-template-columns: 72px 1fr auto; gap: 14px; }
	.bc-schedule__date { min-width: 60px; padding: 6px 8px; }
	.bc-schedule__date .day { font-size: 20px; }
	.bc-schedule__date .month { font-size: 10px; }
	.bc-schedule__title { font-size: 1rem; }
	.bc-schedule__meta { font-size: 12px; }

	/* Mini schedule head wraps */
	.bc-mini-schedule__head { gap: 8px; }
	.bc-mini-schedule__head > a { font-size: 13px; padding: 9px 14px; }

	/* Video player meta + source chips */
	.evm__title { font-size: 1.1rem; }
	.evm__description { font-size: .9rem; }
	.evm__source-btn { padding: 5px 10px; font-size: 11.5px; }

	/* Page hero copy */
	.bc-page-hero__title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
	.bc-page-hero__lead { font-size: clamp(.95rem, 2vw, 1.05rem); }

	/* Platform intro */
	.bc-platform-intro__art { max-width: 360px; margin: 0 auto; }
}

/* ---------- Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
	.container { padding: 0 14px; }

	/* Section tile grid → 1-up so the cards breathe */
	.bc-tiles { grid-template-columns: 1fr; gap: 12px; }
	.bc-tile { min-height: 0; padding: 18px; }

	/* Library grids → 1-up */
	.bc-grid { grid-template-columns: 1fr; gap: 14px; justify-content: stretch; }

	/* Hero size pulls back */
	.bc-landing-hero__title { font-size: clamp(1.6rem, 8vw, 2rem); }
	.bc-landing-hero__lead { font-size: .98rem; }
	.bc-landing-hero__cta .btn { flex: 1 1 auto; justify-content: center; }

	/* Mini schedule item: drop CTA below */
	.bc-schedule__item { grid-template-columns: 60px 1fr; }
	.bc-schedule__cta { grid-column: 1 / -1; justify-self: stretch; text-align: center; }

	/* Section heads with right-side button: stack */
	.bc-mini-schedule__head { flex-direction: column; align-items: flex-start; }
	.bc-mini-schedule__head > a { align-self: stretch; text-align: center; }

	/* Footer single column */
	.site-footer { padding: 32px 0 20px; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 24px; }

	/* Branding band: tighter on phones */
	.ephesus-audio-player::after,
	.ephesus-video-master::after {
		font-size: 9px;
		letter-spacing: .1em;
		padding: 7px 10px 9px;
	}

	/* Page-hero CTA visible */
	.bc-page-hero__title { font-size: clamp(1.5rem, 8vw, 2rem); }

	/* Filter chip row on Audio/Past Services */
	.bc-filter-chip { padding: 6px 10px; font-size: 12.5px; }
}

/* ---------- Small mobile (≤ 375px) ---------- */
@media (max-width: 375px) {
	.container { padding: 0 12px; }
	.bc-landing-hero { padding-top: 32px; }
	.bc-tile { padding: 16px; }
	.bc-tile__title { font-size: 1rem; }
	.bc-tile__lead { font-size: .88rem; line-height: 1.5; }
}

/* ---------- Audio player extra safety on small screens ---------- */
@media (max-width: 540px) {
	.ephesus-audio-player {
		/* keep the player from forcing horizontal scroll on tiny viewports */
		width: 100%;
		min-height: 320px;
		border-radius: 14px;
	}
	.eap-main { grid-template-columns: 1fr !important; min-height: 0 !important; }
	.eap-now { padding: 18px 16px 56px !important; }
}

/* ---------- Video chat layout on phones ---------- */
@media (max-width: 760px) {
	.evm--has-chat { grid-template-columns: 1fr; }
	.evm__chat-frame { min-height: 280px; max-height: 50vh; }
}


/* ============================================================
   v1.0.12 — Card refinements inside .bc-grid so the layout
   matches the reference screenshot: bigger covers, clearer
   featured badge, hover lift.
   ============================================================ */
.bc-grid .broadcast-card {
	display: flex; flex-direction: column;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.bc-grid .broadcast-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-primary);
}
.bc-grid .broadcast-card__media {
	position: relative; display: block;
	width: 100%; aspect-ratio: 16 / 10;
	background: #f2f2f2;
	overflow: hidden;
}
[data-theme="dark"] .bc-grid .broadcast-card__media { background: #1a1a1a; }
.bc-grid .broadcast-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform var(--transition-base);
}
.bc-grid .broadcast-card:hover .broadcast-card__media img { transform: scale(1.03); }
.bc-grid .broadcast-card__placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	color: rgba(0,0,0,.35);
}
[data-theme="dark"] .bc-grid .broadcast-card__placeholder { color: rgba(255,241,211,.4); }
.bc-grid .broadcast-card__body {
	padding: clamp(14px, 2vw, 20px) clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px);
	flex: 1 1 auto;
	display: flex; flex-direction: column; gap: 6px;
}
.bc-grid .broadcast-card__badge {
	position: absolute; top: 10px; left: 10px;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px;
	background: rgba(255,241,211,.95);
	color: #000;
	border-radius: 999px;
	font-family: var(--font-heading); font-weight: 700;
	font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(0,0,0,.18);
	z-index: 2;
}
.bc-grid .broadcast-card__badge::before {
	content: ""; width: 6px; height: 6px; border-radius: 999px; background: #0F2A4A;
}
.bc-grid .broadcast-card__title {
	font-family: var(--font-heading);
	font-weight: 800; font-size: 1rem;
	letter-spacing: .04em; text-transform: uppercase;
	line-height: 1.25; margin: 0;
	color: var(--color-text);
}
.bc-grid .broadcast-card__title a { color: inherit; }
.bc-grid .broadcast-card__meta {
	color: var(--color-text-muted);
	font-size: .92rem; margin: 0;
}
.bc-grid .broadcast-card__chips {
	display: flex; flex-wrap: wrap; gap: 6px;
	margin: 8px 0 0;
	font-size: 11.5px;
}
.bc-grid .broadcast-card__chip,
.bc-grid .broadcast-card__series,
.bc-grid .broadcast-card__dur {
	padding: 3px 10px;
	background: rgba(15,42,74,.06);
	border: 1px solid rgba(15,42,74,.10);
	color: var(--color-text-muted);
	border-radius: 999px;
	font-weight: 600; letter-spacing: .04em;
}
[data-theme="dark"] .bc-grid .broadcast-card__chip,
[data-theme="dark"] .bc-grid .broadcast-card__series,
[data-theme="dark"] .bc-grid .broadcast-card__dur {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.10);
}

/* ============================================================
   v1.0.18 — Schedule view toggle (Upcoming / Past) + year stamp.
   ============================================================ */
.bc-view-toggle {
	display: inline-flex;
	margin: 0 auto clamp(20px, 3vw, 32px);
	padding: 4px;
	background: rgba(15,42,74,.06);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .bc-view-toggle { background: rgba(255,255,255,.06); }
.bc-view-toggle__btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 22px;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-weight: 700; font-size: 13.5px;
	letter-spacing: .04em; text-transform: uppercase;
	color: var(--color-text);
	text-decoration: none;
	transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.bc-view-toggle__btn:hover { background: rgba(15,42,74,.10); transform: translateY(-1px); }
[data-theme="dark"] .bc-view-toggle__btn:hover { background: rgba(255,255,255,.10); }
.bc-view-toggle__btn.is-active {
	background: var(--color-primary);
	color: var(--color-cream);
	box-shadow: var(--shadow-md);
}
[data-theme="dark"] .bc-view-toggle__btn.is-active {
	background: var(--color-cream);
	color: var(--color-primary);
}
.bc-view-toggle__btn svg { flex-shrink: 0; }

/* Centre the toggle horizontally inside the page section. */
.broadcast-page .bc-section > .container { display: block; }
.broadcast-page .bc-section > .container > .bc-view-toggle {
	display: flex;
	width: max-content;
	margin-left: auto; margin-right: auto;
}

/* Year stamp on past schedule items */
.bc-schedule__date .year {
	display: block; font-size: 10px; letter-spacing: .12em;
	font-weight: 700; opacity: .68; margin-top: 2px;
}

@media (max-width: 480px) {
	.bc-view-toggle__btn { padding: 8px 16px; font-size: 12.5px; }
}

/* ============================================================
   v1.0.19 — Landing thumbnail slideshow
   ============================================================ */
.bc-landing-slideshow {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 5 / 4;
	background: var(--color-cream);
}
[data-theme="dark"] .bc-landing-slideshow { background: #0F2A4A; }
.bc-landing-slideshow__slide {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}
.bc-landing-slideshow__slide.is-active { opacity: 1; }
.bc-landing-slideshow::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.22) 100%);
	pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
	.bc-landing-slideshow__slide { transition: none; }
}
