.party-hero-figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.party-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-hero-caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: linear-gradient(135deg, rgba(246, 240, 222, 0.7), #ffffff);
  border-top: 1px solid rgba(201, 165, 82, 0.3);
}

.party-feature-grid {
  align-items: stretch;
}

.party-image-block {
  margin-bottom: var(--space-4);
}

.party-image-block img {
  border-radius: var(--radius-md);
}

.party-image-block figcaption {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.party-gallery-figure img {
  border-radius: var(--radius-lg);
}

.party-gallery-figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.party-testimonials {
  margin-top: var(--space-4);
}

.faq-question {
  width: 100%;
  justify-content: space-between;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
}

.faq-question::after {
  content: "+";
  font-weight: 600;
  color: var(--gray-500);
}

.faq-item.is-open .faq-question::after {
  content: "";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
}

@media (min-width: 768px) {
  .faq-answer {
    max-height: 0;
  }

  .faq-item.is-open .faq-answer {
    max-height: 260px;
  }
}
