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

.hero--poker {
  position: relative;
  background-color: #050813;
  color: #ffffff;
  min-height: 60vh;
  display: flex;
  align-items: stretch;
}

.hero--poker .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 163, 79, 0.4), transparent 55%),
    radial-gradient(circle at bottom right, rgba(21, 62, 117, 0.8), transparent 60%);
  mix-blend-mode: screen;
}

.hero__inner--poker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: var(--space-32);
  align-items: center;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.hero__content {
  max-width: 40rem;
}

.hero__cta {
  margin-top: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.hero__media {
  display: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .hero__inner--poker {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }

  .hero__media {
    display: block;
  }
}

.section--alt {
  background-color: var(--color-surface-alt);
}

.poker-section {
  gap: var(--space-32);
}

.poker-section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.poker-section-header p {
  color: var(--color-text-muted);
}

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

.poker-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text);
}

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

.poker-list li:last-child {
  margin-bottom: 0;
}

.poker-link {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.poker-organisational-card,
.poker-motivation,
.poker-teambuilding-card,
.poker-responsibility-card,
.poker-keywords-card {
  height: 100%;
}

.poker-teambuilding-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .poker-teambuilding-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.poker-gallery {
  margin-top: var(--space-32);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-24);
}

.poker-gallery-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.poker-gallery-item figcaption {
  padding: var(--space-16) var(--space-20) var(--space-20);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-faq {
  max-width: 52rem;
  margin: var(--space-32) auto 0;
}

.poker-faq-item {
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-16) var(--space-20);
  margin-bottom: var(--space-12);
}

.poker-faq-item:last-of-type {
  margin-bottom: 0;
}

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

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

.poker-faq-answer {
  margin-top: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.poker-cta {
  background: linear-gradient(135deg, #ffffff, #f3f5fb);
}

.poker-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.poker-keywords-card p {
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .poker-section--closing {
    align-items: center;
  }
}
