.hero-venue {
  padding: 0;
}

.hero-venue__media {
  position: relative;
  min-height: 70vh;
}

.hero-venue__image-wrapper {
  height: 100%;
}

.hero-venue__image {
  max-height: 720px;
}

.hero-venue__overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-venue__text {
  max-width: 640px;
}

.hero-venue__lead {
  font-size: var(--font-size-lg);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-venue__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-venue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-venue h1 {
  color: #fff;
}

.venue-section__card {
  align-self: center;
}

.venue-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.venue-image-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.venue-image-block__image {
  height: 100%;
}

.venue-layout-grid {
  margin-top: var(--space-6);
}

.venue-layout-card h3 {
  margin-bottom: var(--space-3);
}

.venue-layout-card__link {
  display: inline-flex;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.venue-dual-section article h2 {
  margin-bottom: 0;
}

.venue-list {
  list-style: none;
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.venue-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--font-size-sm);
}

.venue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.venue-access-card {
  align-self: center;
}

.venue-access-card__btn {
  margin-top: var(--space-4);
}

.venue-events-grid {
  margin-top: var(--space-6);
}

.venue-event-card h3 {
  margin-bottom: var(--space-3);
}

.venue-sustainability {
  align-items: center;
}

.venue-sustainability-card h3 {
  margin-bottom: var(--space-3);
}

.venue-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .hero-venue__media {
    min-height: 60vh;
  }

  .hero-venue__overlay-content {
    align-items: flex-end;
    padding-bottom: var(--space-10);
  }
}

@media (max-width: 768px) {
  .hero-venue__overlay-content {
    position: static;
    padding-block: var(--space-12);
  }

  .hero-venue__media {
    min-height: auto;
  }

  .hero-venue__image-wrapper::before {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  }

  .hero-venue__text {
    max-width: 100%;
  }

  .venue-image-block {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .hero-venue__lead {
    font-size: var(--font-size-md);
  }

  .venue-cta__actions {
    width: 100%;
  }

  .venue-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
