main {
  background-color: var(--color-bg);
}

.themed-section-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-section-header {
  max-width: 48rem;
  margin-bottom: var(--space-6);
}

.themed-section-header h2 {
  color: var(--color-neutral-900);
}

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

.themed-list {
  display: grid;
  gap: var(--space-3);
}

.themed-list h4 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-1);
}

.themed-list--bullets {
  gap: var(--space-2);
}

.themed-list--bullets li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
}

.themed-list--bullets li {
  display: flex;
  align-items: flex-start;
}

.themed-list--bullets li p {
  margin-bottom: 0;
}

.themed-calendar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-calendar-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px dashed var(--color-border);
}

.themed-calendar-row:last-child {
  border-bottom: none;
}

.themed-calendar-main {
  flex: 1 1 60%;
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.themed-calendar-date {
  min-width: 64px;
  padding: var(--space-3) var(--space-2);
  border: 1px solid var(--color-border-strong);
  background: radial-gradient(circle at top, var(--color-primary-soft), var(--color-neutral-50));
  text-align: center;
}

.themed-calendar-day {
  display: block;
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  line-height: 1;
}

.themed-calendar-month {
  display: block;
  margin-top: 2px;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
}

.themed-calendar-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-calendar-cta {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-3);
}

.themed-calendar-footer {
  margin-top: var(--space-4);
}

.themed-ambiance-media img,
.themed-poker-media img,
.themed-gallery-figure img {
  width: 100%;
  border-radius: var(--radius-card-angular);
}

.themed-culinary-card,
.themed-groups-card,
.themed-poker-media,
.themed-ambiance-media,
.themed-gallery-figure {
  background-color: var(--color-surface);
}

.themed-animations-grid {
  gap: var(--space-6);
}

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

.themed-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-gallery-figure {
  padding: var(--space-4);
}

.themed-gallery-footer {
  margin-top: var(--space-2);
}

.themed-crossnav-grid {
  gap: var(--space-6);
}

.themed-crossnav-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.themed-crossnav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange-glow);
  border-color: var(--color-border-strong);
}

.themed-poker-block {
  align-items: center;
}

@media (max-width: 960px) {
  .themed-calendar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .themed-calendar-cta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .themed-section-header {
    margin-bottom: var(--space-4);
  }

  .themed-gallery-figure {
    padding: var(--space-3);
  }
}
