.hero--venue .hero__panel {
  max-width: 720px;
}

.venue-layout {
  align-items: center;
  gap: var(--space-10);
}

.venue-layout--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .venue-layout,
  .venue-layout--reverse {
    display: flex;
    flex-direction: column;
  }
}

.venue-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: radial-gradient(circle at top left, #ffffff, #fdfbf7 55%, #f2fbfc 100%);
}

.venue-image-card--compact {
  margin-bottom: var(--space-4);
}

.venue-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-highlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.venue-badges-row,
.venue-cta-row,
.venue-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.venue-spotlight {
  margin-top: var(--space-16);
}

.venue-note {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  margin-top: var(--space-3);
}

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

.venue-feature-list {
  display: grid;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

.venue-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.venue-feature-list .badge {
  flex-shrink: 0;
}

.section-header p {
  font-size: var(--font-size-md);
}

@media (max-width: 640px) {
  .section-header {
    text-align: left;
  }

  .hero__panel {
    text-align: left;
  }
}
