  // ── Sermons Page ──
.sermons-section { background: var(--off-white); padding: 5rem 0; }

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.sermon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.sermon-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sermon-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--navy);
}

.sermon-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.sermon-body { padding: 1.25rem; }

.sermon-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sermon-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.sermon-meta {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.sermon-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
}

/* ── Live Stream Enhanced ── */
.live-iframe-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}

.live-iframe-wrap iframe {
  width: 100%;
  max-width: 800px;
  display: block;
}

.live-page-embed iframe { min-height: 500px; }

.live-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.live-dot-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,0,0,0.2);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff6b6b;
}

.live-dot-inline::before {
  content: '';
  width: 8px; height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.live-note {
  text-align: center;
  opacity: 0.75;
  font-size: 0.9rem;
  margin: 1.25rem auto;
  max-width: 600px;
}

#liveEmbedContainer {
  text-align: center;
}

/* ── Events ── */
.events-section { background: var(--white); padding: 4rem 0; }

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

.event-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.event-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.event-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── Form Messages ── */
.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.form-message--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 768px) {
  .sermons-grid { grid-template-columns: 1fr; }
  .live-page-embed iframe { min-height: 400px; }
}
