.hero--venues {
  position: relative;
}

.hero--venues .hero__content {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section-header p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.venues-grid {
  align-items: stretch;
}

.venue-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.venue-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.venue-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.venue-card__body {
  margin-top: var(--space-3);
}

.venue-features,
.venue-benefits {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  padding-left: 1.1rem;
}

.venue-features li,
.venue-benefits li {
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
  list-style: disc;
}

.hero-meta {
  max-width: 40rem;
}

.venues-flex__highlight {
  align-self: stretch;
}

.gallery-wrapper {
  margin-top: var(--space-6);
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-main__caption {
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  background: rgba(15, 23, 42, 0.96);
  color: var(--color-text-soft);
}

.venues-final-cta {
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .venue-card__media img {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .hero--venues .hero__content {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }

  .venue-card__media img {
    height: 260px;
  }
}
