.poker-section {
  max-width: var(--container-max-width);
}

.poker-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.poker-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.poker-hero__badge {
  margin-bottom: var(--space-8);
}

.poker-hero__lead {
  max-width: 720px;
}

.poker-hero__cta {
  flex-wrap: wrap;
}

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

.poker-highlight-card {
  align-self: center;
}

.poker-list {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-8);
  padding-left: 1.1rem;
}

.poker-list li {
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5d77f, var(--color-primary));
}

.poker-links a {
  font-size: var(--font-size-xs);
}

.poker-crew {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(13, 95, 77, 0.18), transparent 55%);
}

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

.poker-format-grid .card {
  height: 100%;
}

.poker-section__header {
  max-width: 720px;
}

.poker-section--image-right {
  align-items: center;
}

.poker-image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.poker-personalization {
  background: linear-gradient(135deg, rgba(10, 27, 58, 0.95), rgba(5, 6, 8, 1));
}

.poker-portfolio__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-24);
  box-shadow: var(--shadow-medium);
}

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

.poker-portfolio__cta {
  justify-content: flex-start;
}

.poker-testimonials {
  display: grid;
  gap: var(--space-24);
}

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

.poker-contact__form {
  display: grid;
  gap: var(--space-16);
}

.poker-contact__note {
  font-size: var(--font-size-xs);
}

.poker-contact__privacy {
  font-size: var(--font-size-xs);
}

@media (max-width: 900px) {
  .poker-hero {
    min-height: 60vh;
  }

  .poker-portfolio__cta {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .poker-hero__content {
    gap: var(--space-16);
  }

  .poker-links {
    flex-direction: column;
  }
}
