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

.restaurant-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.restaurant-hero__content p {
  max-width: 38rem;
}

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

.restaurant-hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.restaurant-section-grid {
  align-items: center;
  gap: var(--space-8);
}

.restaurant-section-grid--reverse {
  direction: rtl;
}

.restaurant-section-grid--reverse > * {
  direction: ltr;
}

.restaurant-section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.restaurant-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.restaurant-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .restaurant-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-hero__image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .restaurant-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .restaurant-section-grid--reverse {
    direction: ltr;
  }
}
