heartfest-intro-card-center.terms-box {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}

.testimonials-section .card {
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testimonials-viewport {
  position: relative;
  min-height: 210px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.testimonial-slide.is-active {
  display: block;
  opacity: 1;
}

.testimonial-quote {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Goudy Old Style", "Garamond", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.6;
}

.testimonial-label {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d6e5f1;
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--primary);
}

@media (max-width: 768px) {
  .testimonials-viewport {
    min-height: 250px;
  }
}
.heartfest-home-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 194, 102, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 136, 102, 0.24), transparent 28%),
    linear-gradient(135deg, #fff7e6 0%, #fef2ef 35%, #eef7fb 100%);
}

.heartfest-home-subtitle {
  font-size: 1.2rem;
  max-width: 760px;
}

.heartfest-home-meta {
  font-weight: 700;
  color: var(--primary-dark);
}

.heartfest-home-tags {
  color: #8b5e1a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.heartfest-intro-card {
  border-color: #f1d7b8;
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}

.heartfest-soft-card {
  background: linear-gradient(180deg, #fdfcf8 0%, #ffffff 100%);
  border-color: #eadfc9;
}

.heartfest-warm-card {
  background: linear-gradient(180deg, #fff7f1 0%, #ffffff 100%);
  border-color: #f0d4c2;
}

.heartfest-feature-band {
  background: linear-gradient(135deg, #fff9ee 0%, #fff5ef 50%, #f5fbff 100%);
  border-color: #ecdcc8;
}

.heartfest-feature-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: #ecdcc8;
}

.heartfest-video-section {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  border-color: #eadfc9;
}


.festival-program-card {
  border: 1px solid #f1d7b8;
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  border-radius: 8px;
  padding: 8px;

  width: 100%;
  max-width: 540px;     /* HARD limit on phones */
  height: 540px;        /* HARD visual limit */

  margin: 0 auto;
  box-sizing: border-box;
}

.festival-program-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* critical for flyers */
  display: block;
}

