@charset "UTF-8";

.vip-hero {
  background-color: var(--color-background);
}

.vip-hero__container {
  align-items: center;
  gap: var(--space-10);
}

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

.vip-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-6) var(--space-5);
}

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

.vip-hero__disclaimer {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  max-width: 34rem;
}

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

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

.vip-section-header {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-10);
}

.vip-section-intro {
  color: var(--gray-600);
}

.vip-feature-grid,
.vip-event-grid,
.vip-poker-grid {
  align-items: stretch;
}

.vip-feature-card p:last-child,
.vip-event-card p:last-child,
.vip-poker-card p:last-child {
  margin-bottom: 0;
}

.vip-gastro,
.vip-lounge {
  align-items: center;
  gap: var(--space-10);
}

.vip-gastro__image-wrapper,
.vip-lounge__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.vip-gastro__image,
.vip-lounge__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-gastro__actions,
.vip-lounge__actions,
.vip-event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.vip-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-4);
}

.vip-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--gray-700);
}

.vip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff, var(--color-accent));
  box-shadow: 0 0 0 1px rgba(198, 154, 69, 0.5);
}

.vip-list--emphasis li {
  font-weight: 600;
}

.vip-lounge__content p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .vip-hero__container {
    grid-template-columns: minmax(0, 1fr);
  }

  .vip-hero__media {
    order: -1;
  }

  .vip-gastro,
  .vip-lounge {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .vip-hero__actions,
  .vip-gastro__actions,
  .vip-lounge__actions,
  .vip-event-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vip-section-header {
    text-align: left;
  }
}
