.section-lounge-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-8);
}

.section-lounge-hero-copy {
  max-width: 36rem;
}

.section-lounge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.section-lounge-hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.section-lounge-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-lounge-atmosphere .section-lounge-highlights {
  margin-top: var(--space-4);
}

.section-lounge-layout-inner,
.section-lounge-fanzone-inner,
.section-lounge-groups-inner,
.section-lounge-vip-inner,
.section-lounge-howto-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.section-lounge-layout-media,
.section-lounge-fanzone-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.section-lounge-layout-image,
.section-lounge-fanzone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-lounge-list {
  display: grid;
  gap: var(--space-4);
}

.section-lounge-list-item h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
}

.section-lounge-fanzone-grid,
.section-lounge-menu-grid,
.section-lounge-vip-grid {
  margin-top: var(--space-4);
}

.section-lounge-fanzone-actions,
.section-lounge-groups-actions,
.section-lounge-vip-actions,
.section-lounge-howto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.section-lounge-groups-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-lounge-groups-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.section-lounge-steps {
  display: grid;
  gap: var(--space-5);
  counter-reset: lounge-steps;
}

.section-lounge-step {
  position: relative;
  padding-left: 2.5rem;
}

.section-lounge-step::before {
  counter-increment: lounge-steps;
  content: counter(lounge-steps);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-soft);
  border: 1px solid rgba(79, 70, 229, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
}

.section-lounge-step h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
}

.section-lounge-step p a {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .section-lounge-hero-inner,
  .section-lounge-layout-inner,
  .section-lounge-fanzone-inner,
  .section-lounge-groups-inner,
  .section-lounge-vip-inner,
  .section-lounge-howto-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-lounge-hero-media,
  .section-lounge-layout-media,
  .section-lounge-fanzone-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .section-lounge-hero-actions,
  .section-lounge-fanzone-actions,
  .section-lounge-groups-actions,
  .section-lounge-vip-actions,
  .section-lounge-groups-side-actions,
  .section-lounge-howto-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-lounge-step {
    padding-left: 2.1rem;
  }
}
