.poker-hero {
  padding-top: var(--space-14);
}
.poker-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}
.poker-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}
.poker-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-4);
}
.poker-hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: flex-start;
}
.poker-hero__meta-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}
.poker-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.poker-hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-hero__overlay-card {
  position: absolute;
  left: 8%;
  bottom: 8%;
  max-width: 280px;
}
.poker-format__list,
.poker-rules__list,
.poker-reservation__list {
  list-style: none;
  padding-left: 0;
}
.poker-format__list li,
.poker-rules__list li,
.poker-reservation__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}
.poker-format__list li::before,
.poker-rules__list li::before,
.poker-reservation__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-gold-soft), var(--color-accent-burgundy));
  box-shadow: 0 0 10px rgba(245, 194, 91, 0.7);
}
.poker-format__media {
  display: flex;
  flex-direction: column;
}
.poker-format__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}
.poker-timeline {
  list-style: none;
  padding-left: 0;
}
.poker-timeline li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.poker-timeline li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 194, 91, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--color-accent-gold-soft);
  background: rgba(11, 13, 22, 0.9);
}
.poker-timeline {
  counter-reset: step;
}
.poker-equipment__features {
  margin-top: var(--space-4);
  gap: var(--space-4);
}
.poker-equipment__list {
  list-style: none;
  padding-left: 0;
}
.poker-equipment__list li {
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}
.poker-equipment__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.poker-rules__flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.poker-addons__header {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.poker-addons__grid {
  align-items: stretch;
}
.poker-reservation__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.poker-reservation__note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.poker-reservation__media {
  display: flex;
  flex-direction: column;
}
.poker-reservation__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}
.poker-gallery__header {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.poker-gallery__wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.poker-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-gallery__overlay {
  position: absolute;
  right: 6%;
  bottom: 8%;
  max-width: 320px;
}
.poker-crosslinks .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.poker-crosslinks .btn {
  margin-top: var(--space-4);
}
@media (max-width: 1024px) {
  .poker-hero__grid {
    grid-template-columns: 1fr;
  }
  .poker-hero__media {
    order: -1;
  }
  .poker-hero__meta {
    grid-template-columns: 1fr;
  }
  .poker-gallery__overlay,
  .poker-hero__overlay-card {
    position: static;
    margin-top: var(--space-4);
    max-width: none;
  }
}
@media (max-width: 768px) {
  .poker-hero {
    padding-top: var(--space-12);
  }
  .poker-hero__cta-group,
  .poker-reservation__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .poker-hero__lead {
    font-size: var(--font-size-md);
  }
}
