/* ==========================================================================
   Grace Harbor Church — Template 1 "Classic Reverence"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --navy: #172544;
  --navy-deep: #0f1a30;
  --navy-light: #24365f;
  --gold: #c9a24a;
  --gold-light: #e6cd8e;
  --gold-dark: #a9832f;
  --cream: #faf6ec;
  --cream-deep: #f2ead6;
  --white: #ffffff;
  --text: #2a2a2e;
  --text-soft: #5b5f6a;
  --border: #e6ddc6;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 26, 48, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 26, 48, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 26, 48, 0.18);

  --radius: 6px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-deep);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 90px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.section-head { max-width: 620px; margin-bottom: 50px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { margin-top: 14px; color: var(--text-soft); font-size: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Placeholder "photo" blocks ---------- */
.ph {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  isolation: isolate;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 0);
  background-size: 22px 22px;
  z-index: 0;
}
.ph svg { position: relative; z-index: 1; width: 34%; max-width: 84px; opacity: 0.85; }
.ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(15, 26, 48, 0.35);
  padding: 5px 10px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}
.ph-1 { background: linear-gradient(135deg, #1c2c50, #3a4d80); }
.ph-2 { background: linear-gradient(135deg, #a9832f, #e6cd8e); }
.ph-3 { background: linear-gradient(135deg, #2a3a63, #c9a24a); }
.ph-4 { background: linear-gradient(135deg, #0f1a30, #24365f); }
.ph-5 { background: linear-gradient(135deg, #6b4f9c, #24365f); }
.ph-6 { background: linear-gradient(135deg, #b5723a, #c9a24a); }
.ph-7 { background: linear-gradient(135deg, #2f6b5e, #24365f); }
.ph-8 { background: linear-gradient(135deg, #7a2f3f, #a9832f); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-info { display: flex; gap: 26px; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.topbar-social a:hover { background: var(--gold); color: var(--navy-deep); }
.topbar-social svg { width: 13px; height: 13px; }

header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
header.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; color: var(--navy-deep); }
.brand-text .name {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
}
.brand-text .sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 3px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a.active { color: var(--gold-light); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { margin-left: 10px; }
.main-nav a.nav-cta.btn-gold,
.main-nav a.nav-cta.btn-gold:hover { color: var(--navy-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .topbar-info span.hide-sm { display: none; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 26px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 0;
}
.hero-slides {
  position: relative;
  min-height: 640px;
  display: flex;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size: 26px 26px;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,23,44,0.88) 0%, rgba(15,23,44,0.72) 42%, rgba(15,23,44,0.35) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  font-weight: 700;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-card {
  position: absolute;
  z-index: 4;
  bottom: 34px; right: 40px;
  background: var(--white);
  color: var(--text);
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 250px;
}
.hero-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card .icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.hero-card .t1 { font-size: 12px; color: var(--text-soft); }
.hero-card .t2 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-deep); }

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(15,23,44,0.35);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-arrow:hover { background: rgba(15,23,44,0.6); border-color: var(--gold-light); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active { background: var(--gold-light); transform: scale(1.3); }

@media (max-width: 960px) {
  .hero-slide-inner { text-align: center; max-width: 100%; }
  .hero-eyebrow, .hero-actions { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-card { position: static; width: auto; margin: 0 auto 20px; }
  .hero-arrow { display: none; }
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: var(--white);
  padding: 70px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.09) 1px, transparent 0);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4vw, 46px); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--gold-light); }

/* ==========================================================================
   Welcome / split section
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .ph { height: 440px; border-radius: 8px; }
.split-media .frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.split h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.split p { color: var(--text-soft); margin-bottom: 16px; }
.split-sign { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.split-sign .name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy-deep); }
.split-sign .role { font-size: 13px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .ph { height: 300px; }
}

/* ==========================================================================
   Cards: values / ministries / beliefs
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card .icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--text-soft); font-size: 15px; }

.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2 { color: var(--white); }
.section-navy .section-head p { color: rgba(255,255,255,0.65); }

/* ---------- Stay Connected (Facebook / YouTube preview panels) ---------- */
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
@media (max-width: 860px) { .connect-grid { grid-template-columns: 1fr; } }
.connect-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 20px;
  display: flex;
  flex-direction: column;
}
.connect-panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.connect-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.connect-icon.fb { background: #1877f2; }
.connect-icon.yt { background: #ff0033; }
.connect-icon svg { width: 20px; height: 20px; }
.connect-panel-head h3 { font-family: var(--font-head); font-size: 17px; margin: 0; }
.connect-panel-head .sub { font-size: 12.5px; color: var(--text-soft); }
.connect-follow { margin-left: auto; padding: 7px 14px; font-size: 12.5px; }

.connect-feed { display: flex; flex-direction: column; gap: 14px; }
.fb-post { border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; }
.fb-post-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.fb-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold-dark)); flex-shrink: 0; }
.fb-name { font-size: 13px; font-weight: 700; color: var(--navy-deep); }
.fb-time { font-size: 11.5px; color: var(--text-soft); }
.fb-post p { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; margin: 0; }
.fb-post-photo { height: 130px; border-radius: 6px; margin-top: 10px; }

.connect-preview-tag { margin-top: auto; padding-top: 14px; font-size: 11px; color: var(--text-soft); text-align: center; letter-spacing: 0.02em; }

.yt-state-toggle { display: flex; gap: 6px; background: var(--cream-deep); border-radius: 30px; padding: 4px; margin-bottom: 16px; }
.yt-state-toggle button { flex: 1; border: none; background: transparent; padding: 8px 10px; border-radius: 26px; font-family: var(--font-body); font-size: 12.5px; font-weight: 700; color: var(--text-soft); cursor: pointer; transition: all 0.2s ease; }
.yt-state-toggle button.active { background: var(--navy-deep); color: #fff; }

.yt-mini-row { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.yt-mini-thumb {
  width: 84px; height: 54px; border-radius: 6px; flex-shrink: 0;
  background-color: var(--cream-deep); background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.yt-mini-thumb svg { width: 20px; height: 20px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)); }
.yt-mini-info h4 { font-family: var(--font-head); font-size: 13.5px; margin: 0 0 3px; line-height: 1.3; color: var(--navy-deep); }
.yt-mini-meta { font-size: 11.5px; color: var(--text-soft); }
.yt-mini-info h4 { font-family: var(--font-head); font-size: 13.5px; margin: 0 0 3px; line-height: 1.3; }
.yt-mini-meta { font-size: 11.5px; color: var(--text-soft); }

.yt-live-card .yt-live-thumb {
  position: relative; height: 150px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background-color: var(--cream-deep); background-size: cover; background-position: center;
}
.yt-live-card .play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.16); border: 2px solid rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.yt-live-card .play-btn svg { width: 20px; height: 20px; margin-left: 2px; }
.live-badge { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px; background: #d32f2f; color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; padding: 4px 9px 4px 7px; border-radius: 20px; z-index: 1; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: livePulse 1.4s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.yt-live-card h4 { font-family: var(--font-head); font-size: 14.5px; margin: 12px 0 4px; color: var(--navy-deep); }

/* Ministry cards */
.ministry-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ministry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ministry-card .ph { height: 190px; }
.ministry-card .body { padding: 24px 24px 26px; }
.ministry-card h3 { font-size: 18px; margin-bottom: 8px; }
.ministry-card p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 14px; }
.ministry-card .meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gold-dark); font-weight: 600;
  padding-top: 14px; border-top: 1px dashed var(--border);
}
.ministry-card .meta svg { width: 15px; height: 15px; }

/* Events */
.event-card {
  display: flex;
  gap: 22px;
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-date {
  flex-shrink: 0;
  width: 78px; height: 82px;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-date .d { font-family: var(--font-head); font-size: 27px; font-weight: 700; line-height: 1; }
.event-date .m { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-top: 5px; }
.event-body h3 { font-size: 18.5px; margin-bottom: 8px; }
.event-body p { font-size: 14px; color: var(--text-soft); margin-bottom: 10px; }
.event-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.event-tags span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-soft); }
.event-tags svg { width: 14px; height: 14px; color: var(--gold-dark); }

/* Schedule table */
.schedule-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule-table th, .schedule-table td { padding: 16px 22px; text-align: left; }
.schedule-table thead th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.schedule-table tbody tr:nth-child(even) { background: var(--cream-deep); }
.schedule-table tbody td { font-size: 14.5px; color: var(--text-soft); border-bottom: 1px solid var(--border); }
.schedule-table tbody td:first-child { font-weight: 700; color: var(--navy-deep); }

/* Gallery */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-filters button {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-soft);
  transition: all 0.2s;
}
.gallery-filters button:hover { border-color: var(--gold); color: var(--gold-dark); }
.gallery-filters button.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { border-radius: 8px; overflow: hidden; cursor: pointer; }
.gallery-item .ph { height: 220px; transition: transform 0.4s ease; }
.gallery-item:hover .ph { transform: scale(1.06); }
.gallery-item.hide { display: none; }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 20, 33, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 760px; width: 100%; }
.lightbox-inner .ph { height: 480px; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { display: none; }
  .lightbox-inner .ph { height: 320px; }
}

/* Media / sermons */
.media-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-feature .ph { height: 100%; min-height: 340px; }
.media-feature .play-btn {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 2px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.media-feature .play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.media-feature .body { padding: 40px 40px 40px 4px; display: flex; flex-direction: column; justify-content: center; }
.media-feature .tag { align-self: flex-start; margin-bottom: 14px; }
.media-feature h3 { font-size: 24px; margin-bottom: 12px; }
.media-feature p { color: var(--text-soft); margin-bottom: 20px; }
.media-feature .meta-row { display: flex; gap: 20px; margin-bottom: 24px; font-size: 13.5px; color: var(--text-soft); }
.media-feature .meta-row span { display: flex; align-items: center; gap: 6px; }
.media-feature .meta-row svg { width: 15px; height: 15px; color: var(--gold-dark); }
@media (max-width: 860px) {
  .media-feature { grid-template-columns: 1fr; }
  .media-feature .body { padding: 30px; }
}

.sermon-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--border);
}
.sermon-row:last-child { border-bottom: none; }
.sermon-row .ph { width: 96px; height: 72px; border-radius: 6px; flex-shrink: 0; }
.sermon-row .ph svg { width: 26px; }
.sermon-row .info { flex: 1; }
.sermon-row h4 { font-size: 16px; margin-bottom: 4px; }
.sermon-row .meta { font-size: 13px; color: var(--text-soft); }
.sermon-row .dl {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sermon-row .dl:hover { background: var(--navy); border-color: var(--navy); }
.sermon-row .dl svg { width: 16px; height: 16px; color: var(--navy); transition: color 0.2s; }
.sermon-row .dl:hover svg { color: var(--white); }

.subscribe-row { display: flex; gap: 14px; flex-wrap: wrap; }
.subscribe-row a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.subscribe-row a:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.subscribe-row svg { width: 18px; height: 18px; color: var(--gold-dark); }

/* ==========================================================================
   Accordion (About / Beliefs)
   ========================================================================== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-deep);
  text-align: left;
}
.accordion-head .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
  position: relative;
}
.accordion-head .plus::before, .accordion-head .plus::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  transition: transform 0.25s ease;
}
.accordion-head .plus::before { width: 11px; height: 2px; }
.accordion-head .plus::after { width: 2px; height: 11px; }
.accordion-item.open .accordion-head .plus { background: var(--gold); }
.accordion-item.open .accordion-head .plus::after { transform: scaleY(0); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-card { text-align: center; }
.team-card .ph { height: 260px; border-radius: 8px; margin-bottom: 18px; }
.team-card h3 { font-size: 18px; }
.team-card .role { font-size: 13px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.05em; margin: 4px 0 10px; }
.team-card p { font-size: 14px; color: var(--text-soft); }
.team-card .socials { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }
.team-card .socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.team-card .socials a:hover { background: var(--navy); border-color: var(--navy); }
.team-card .socials svg { width: 14px; height: 14px; }
.team-card .socials a:hover svg { color: var(--white); }

/* ==========================================================================
   Stats / CTA banner
   ========================================================================== */
.verse-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #2a3f70 100%);
  color: var(--white);
  padding: 100px 0;
}
.verse-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size: 26px 26px;
}
.verse-band::after {
  content: "\201C";
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 340px;
  line-height: 1;
  color: rgba(230, 205, 142, 0.08);
  pointer-events: none;
}
.verse-band-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}
.verse-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
}
.verse-eyebrow::before, .verse-eyebrow::after { content: ""; width: 24px; height: 2px; background: var(--gold); }
.verse-text {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.5;
  color: var(--white);
}
.verse-ref {
  margin-top: 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
@media (max-width: 600px) {
  .verse-band { padding: 76px 0; }
  .verse-band::after { font-size: 220px; top: -40px; }
}

.cta-banner {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  border-radius: 12px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--navy-deep); font-size: clamp(24px, 3vw, 32px); max-width: 500px; }
.cta-banner p { color: rgba(23, 37, 68, 0.75); margin-top: 8px; }

/* Full-bleed variant: used when .cta-banner is the <section> itself
   (e.g. homepage), with .cta-banner-inner as the constrained-width content. */
section.cta-banner { border-radius: 0; padding: 70px 0; }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--navy-deep); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: -6px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eef7ee;
  border: 1px solid #bfe3bf;
  color: #2c6b2c;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14.5px;
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* Contact info cards */
.contact-info-card {
  display: flex; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.contact-info-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-soft); }

.map-ph {
  height: 100%;
  min-height: 360px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.map-ph iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* ==========================================================================
   Share button (used inline next to titles, or standalone on any page)
   ========================================================================== */
.share-wrap { position: relative; display: inline-flex; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: var(--cream-deep);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.share-btn svg { width: 16px; height: 16px; color: var(--text-soft); }
.share-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.share-btn:hover svg { color: var(--navy-deep); }
.share-btn:active { transform: translateY(0); }

.share-toast {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 3;
}
.share-toast::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 18px;
  border: 5px solid transparent;
  border-bottom-color: var(--navy-deep);
}
.share-toast.show { opacity: 1; visibility: visible; transform: translateY(0); }

.share-block { text-align: center; }
.share-block .share-wrap { display: flex; justify-content: center; }
.share-block .share-toast { left: 50%; right: auto; transform: translate(-50%, -4px); }
.share-block .share-toast.show { transform: translate(-50%, 0); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social a:hover svg { color: var(--navy-deep); }
.footer-social svg { width: 15px; height: 15px; }
footer h4 {
  color: var(--white); font-size: 15.5px; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-hours div { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 12px; }
.footer-hours span:last-child { color: var(--gold-light); }
.footer-newsletter p { font-size: 14.5px; margin-bottom: 16px; }
.footer-newsletter form { display: flex; gap: 0; }
.footer-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 6px 0 0 6px;
  font-size: 13.5px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 0 6px 6px 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-newsletter button svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 20px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-deep); }
.back-to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Page-specific helpers
   ========================================================================== */
.verse-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.verse-block p.verse {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy-deep);
  line-height: 1.6;
}
.verse-block .ref { margin-top: 14px; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 13px; }

.section-navy--photo { position: relative; background-size: cover; background-position: center; overflow: hidden; }
.section-navy--photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,26,48,0.55), rgba(15,26,48,0.88)); }
.section-navy--photo > .container { position: relative; z-index: 1; }

/* ==========================================================================
   App-only additions: hero video, blog/article, watch video cards, real feeds
   ========================================================================== */

/* ---------- Video banner (alternate hero, toggled from admin) ---------- */
.hero-video { position: relative; min-height: 620px; overflow: hidden; color: var(--white); display: flex; align-items: center; }
.hero-video-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,26,48,0.35), rgba(15,26,48,0.75)); z-index: 1; }
.hero-video-mute {
  position: absolute; z-index: 3; bottom: 26px; right: 26px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease;
}
.hero-video-mute:hover { background: rgba(255,255,255,0.25); }
.hero-video-mute svg { width: 18px; height: 18px; }
.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 24px; width: 100%; text-align: center; }
.hero-content .hero-eyebrow { justify-content: center; }
.hero-content .hero-actions { justify-content: center; }
@media (max-width: 700px) { .hero-video { min-height: 480px; } }

/* ---------- Link arrow (text + chevron) ---------- */
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--navy-deep); }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Blog / sermon cards (homepage + sermon-blogs listing) ---------- */
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card .ph { height: 170px; position: relative; }
.blog-card .card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-soft); margin-bottom: 8px; }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-soft); }
.blog-card h3 { font-size: 16.5px; font-weight: 700; color: var(--navy-deep); line-height: 1.35; margin-bottom: 8px; }
.blog-card .teaser { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.blog-card .link-arrow { font-size: 13.5px; margin-top: auto; }
.blog-card .link-arrow svg { width: 16px; height: 16px; }
.blog-card:hover .link-arrow svg { transform: translateX(5px); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: rgba(15,26,48,0.55);
  display: flex; align-items: center; justify-content: center;
}
.play-btn svg { width: 16px; height: 16px; margin-left: 2px; }

/* ---------- Sermon blog article (single post) ---------- */
.category-pill {
  display: inline-block; padding: 5px 14px; border-radius: 30px;
  background: var(--cream-deep); color: var(--gold-dark);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.article-cover { height: 420px; border-radius: var(--radius); margin-bottom: 34px; }
@media (max-width: 700px) { .article-cover { height: 240px; } }
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 24px 80px; }
.article-wrap h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-meta .avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--gold-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.article-meta .name { font-weight: 700; color: var(--navy-deep); font-size: 14.5px; }
.article-meta .date { font-size: 13px; color: var(--text-soft); margin-top: 2px; }
.article-body p { font-size: 16.5px; line-height: 1.85; color: var(--text-soft); margin-bottom: 22px; }
.article-body h2 { font-size: 23px; margin: 40px 0 16px; color: var(--navy-deep); }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; color: var(--text-soft); font-weight: 600; font-size: 14px; }
.article-back svg { width: 16px; height: 16px; }

/* ---------- Watch page video card + embed ---------- */
.video-embed { position: relative; padding-top: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; background: var(--navy-deep); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card { display: block; text-decoration: none; color: inherit; }
.video-card .thumb { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: var(--cream-deep); background-size: cover; background-position: center; }
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.video-card:hover .thumb img { transform: scale(1.05); }
.video-card h4 { margin-top: 14px; font-size: 15px; color: var(--navy-deep); line-height: 1.4; }
.video-card .date { margin-top: 4px; font-size: 12.5px; color: var(--text-soft); }

/* ---------- Real Facebook Page Plugin + empty-state text ---------- */
.fb-plugin-wrap { border-radius: var(--radius); overflow: hidden; background: var(--cream-deep); min-height: 200px; }
.fb-plugin-wrap iframe { display: block; width: 100%; }
.connect-empty { font-size: 13.5px; color: var(--text-soft); text-align: center; padding: 30px 10px; }

a.ministry-card { display: block; text-decoration: none; color: inherit; }
