.grid-2--align-center {
  align-items: center;
}

.section-header {
  max-width: 640px;
  margin: 0 auto;
}

.themed-list {
  display: grid;
  gap: 0.5rem;
}

.themed-list--compact {
  gap: 0.35rem;
}

.themed-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(203, 163, 108, 0.9);
  flex-shrink: 0;
}

.themed-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.themed-atmosphere-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  background-color: var(--color-surface-soft);
}

.themed-atmosphere-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-atmosphere-card--stacked {
  transform: translateY(4%);
}

.themed-atmosphere-card--elevated {
  transform: translateY(-4%);
}

.themed-calendar-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.themed-calendar-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-calendar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9, 9, 13, 0.7), rgba(9, 9, 13, 0.2));
}

.themed-calendar-card__content {
  position: absolute;
  inset: auto 1.75rem 1.75rem 1.75rem;
  color: #f7f1e8;
}

.themed-calendar-card__content h3 {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  margin-bottom: 0.35rem;
}

.themed-calendar-card__content p {
  color: #f5eee3;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.themed-poker-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(156, 156, 107, 0.12), rgba(247, 240, 230, 0.95));
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.themed-poker-panel__title {
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
}

.themed-poker-panel__text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}

.themed-venue-section {
  position: relative;
}

.themed-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 238, 226, 0.98));
  box-shadow: var(--shadow-soft-lg);
}

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

.themed-cta__meta {
  margin-top: var(--space-3);
  font-size: 0.85rem;
}

.themed-cta__media {
  display: flex;
  justify-content: flex-end;
}

.themed-reservation-card {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
}

.themed-reservation-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .themed-cta {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--space-5);
  }

  .themed-cta__media {
    justify-content: flex-start;
  }

  .themed-calendar-card__content {
    inset: auto 1.25rem 1.25rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .themed-cta {
    padding: var(--space-4);
  }

  .themed-poker-panel {
    padding: var(--space-4);
  }
}
