.venues-hero {
  padding-top: var(--space-20);
}

.venues-hero__grid {
  align-items: center;
  gap: var(--space-12);
}

.venues-hero__content {
  max-width: 36rem;
}

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

.venues-hero__media-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-4);
}

.venues-hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.venues-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venues-hero__media-caption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.venues-hero__media-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.venues-hero__note {
  font-size: var(--font-size-sm);
}

.venues-atmosphere__grid {
  align-items: center;
  gap: var(--space-10);
}

.venues-atmosphere__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.venues-atmosphere__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venues-prep__grid {
  align-items: center;
  gap: var(--space-10);
}

.venues-prep__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.venues-prep__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venues-section-header {
  max-width: 44rem;
  margin-inline: auto;
}

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

.venues-location__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
}

.venues-setup__grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.venues-setup__features {
  margin-top: var(--space-4);
}

.venues-feature__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.venues-visit__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.venues-visit__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.venues-visit__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.venues-visit__list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

.venues-responsible__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.venues-next__grid {
  align-items: center;
  gap: var(--space-10);
}

.venues-next__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

@media (max-width: 960px) {
  .venues-hero {
    padding-top: var(--space-16);
  }
}

@media (max-width: 768px) {
  .venues-hero__grid,
  .venues-atmosphere__grid,
  .venues-prep__grid,
  .venues-setup__grid,
  .venues-next__grid {
    gap: var(--space-6);
  }

  .venues-hero__content {
    order: 1;
  }

  .venues-hero__media {
    order: 0;
  }

  .venues-setup__sidebar {
    margin-top: var(--space-6);
  }
}
