.overview-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
}

.overview-hero__media {
  position: relative;
  height: 100%;
}

.overview-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-hero__content {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.overview-hero__content h1 {
  max-width: 26rem;
}

.overview-hero__content p {
  max-width: 32rem;
}

.overview-hero__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.overview-hero__meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

.overview-ambiance__image img,
.overview-menu__image img,
.overview-poker__image img,
.overview-testimonials__image img,
.overview-hospitality__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.overview-ambiance__card {
  margin-top: var(--space-6);
}

.overview-menu__list,
.overview-reservations__list {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
}

.overview-menu__list li + li,
.overview-reservations__list li + li {
  margin-top: 0.35rem;
}

.overview-menu__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.overview-poker__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.overview-reservations {
  max-width: 760px;
}

.overview-reservations__card {
  margin-left: auto;
  margin-right: auto;
}

.overview-testimonials__highlight {
  margin-top: var(--space-4);
}

.overview-testimonials__author {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-accent-gold);
}

.overview-certifications__item {
  height: 100%;
}

.overview-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-hero__media {
    max-height: 320px;
  }

  .overview-hero__content {
    padding-top: var(--space-12);
  }
}

@media (max-width: 768px) {
  .overview-hero__content h1,
  .overview-hero__content p {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .overview-hero__actions,
  .overview-menu__actions,
  .overview-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
