.poker-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 960px) {
  .poker-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.poker-hero__media {
  position: relative;
  height: 100vh;
  max-height: 720px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .poker-hero__media {
    order: -1;
    height: 52vh;
    max-height: none;
  }
}

.poker-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.poker-hero__card {
  max-width: 580px;
}

.poker-hero__lead {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-lg);
}

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

.poker-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-xs);
}

@media (max-width: 640px) {
  .poker-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.poker-hero__meta-label {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.poker-hero__meta-value {
  font-weight: 600;
}

.poker-hero__meta-value--no {
  color: var(--color-danger);
}

.poker-section-header {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.poker-section-header p {
  margin-bottom: 0;
}

.poker-section-grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-section-grid--reverse {
  direction: rtl;
}

.poker-section-grid--reverse > * {
  direction: ltr;
}

.poker-list {
  margin-top: var(--space-4);
  padding-left: 1.1rem;
  color: var(--color-text-soft);
}

.poker-list li + li {
  margin-top: 0.4rem;
}

.poker-list--checks {
  list-style: none;
  padding-left: 0;
}

.poker-list--checks li::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 0 2px var(--color-primary-soft);
}

.poker-card-highlight {
  background: var(--color-surface-alt);
}

.poker-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.poker-section-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.poker-theme-grid {
  align-items: stretch;
}

.poker-theme-card {
  background: var(--color-surface);
}

.poker-gastro-highlight {
  background: var(--color-background-soft);
}

.poker-calendar {
  background: var(--color-surface);
}

.poker-calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.poker-calendar__subtitle {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.poker-calendar__hint {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.poker-calendar__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .poker-calendar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.poker-calendar__item {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--color-background-soft);
}

.poker-calendar__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.poker-calendar__desc {
  font-size: var(--font-size-sm);
}

.poker-calendar__btn {
  margin-top: var(--space-3);
}

.poker-testimonials-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.poker-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 640px) {
  .poker-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.poker-testimonials-carousel {
  margin-top: var(--space-2);
}

.poker-testimonial blockquote {
  font-style: italic;
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

.poker-testimonial__name {
  font-weight: 600;
}

.poker-testimonial__role {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-section-cta--reviews {
  margin-top: var(--space-8);
}

.poker-faq-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .poker-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.poker-faq-item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.poker-faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.poker-faq-item[open] summary {
  color: var(--color-primary-contrast);
}

.poker-faq-item summary::-webkit-details-marker {
  display: none;
}

.poker-faq-item p {
  margin-top: var(--space-3);
  margin-bottom: 0;
}

.poker-section-cta--bottom {
  justify-content: center;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-medium);
}

@media (max-width: 640px) {
  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: var(--space-3);
  }

  .sticky-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
