/* ===== Page-owned styles for top-10-idees-de-soirees-poker ===== */

/* Hero section */
.poker-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-green-dark);
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 58, 43, 0.25) 0%, rgba(26, 58, 43, 0.75) 100%);
}

.poker-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding-block: var(--space-7);
}

.poker-hero__text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-hero__title {
  color: var(--color-text-on-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-block-end: 0;
}

.poker-hero__subtitle {
  color: var(--color-text-on-dark);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-hero__cta {
  min-width: 200px;
}

/* Intro section */
.poker-intro {
  background-color: var(--color-cream);
}

.poker-intro__container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.poker-intro__heading {
  margin-block-end: 0;
}

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

.poker-intro__copy p {
  max-width: 70ch;
  margin-block-end: 0;
}

/* Ideas section */
.poker-ideas {
  background-color: var(--color-cream-dark);
}

.poker-ideas__heading {
  margin-block-end: var(--space-6);
}

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

.poker-idea-card {
  background-color: var(--color-white);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-fast);
  min-width: 0;
}

.poker-idea-card:hover {
  box-shadow: var(--shadow-raised);
}

.poker-idea-card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-bordeaux);
  line-height: 1;
}

.poker-idea-card__title {
  margin-block-end: 0;
}

.poker-idea-card__text {
  max-width: 70ch;
  margin-block-end: 0;
}

.poker-idea-card__list {
  list-style: disc;
  padding-inline-start: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-block-end: 0;
}

.poker-idea-card__list li {
  line-height: 1.6;
  max-width: 70ch;
}

/* CTA section */
.poker-cta {
  background-color: var(--color-green-dark);
  color: var(--color-text-on-dark);
}

.poker-cta__container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.poker-cta__heading {
  color: var(--color-text-on-dark);
  margin-block-end: 0;
}

.poker-cta__text {
  color: var(--color-text-on-dark);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.poker-cta__btn {
  min-width: 200px;
}

.poker-cta__details {
  color: var(--color-text-on-dark);
  font-size: 0.875rem;
  margin-block-end: 0;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .poker-ideas__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .poker-idea-card {
    padding: var(--space-4);
  }
}

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

  .poker-hero__content {
    padding-block: var(--space-6);
    gap: var(--space-4);
  }

  .poker-hero__text {
    max-width: 100%;
  }

  .poker-hero__title {
    font-size: clamp(1.75rem, 6vw, 2rem);
  }

  .poker-hero__subtitle {
    font-size: 0.95rem;
  }

  .poker-hero__cta {
    width: 100%;
    min-width: 0;
  }

  .poker-intro__container {
    gap: var(--space-4);
  }

  .poker-ideas__heading {
    margin-block-end: var(--space-5);
  }

  .poker-idea-card {
    padding: var(--space-4);
  }

  .poker-cta__container {
    gap: var(--space-4);
  }

  .poker-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .poker-cta__btn {
    width: 100%;
    min-width: 0;
  }
}

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

  .poker-hero__content {
    padding-block: var(--space-5);
    gap: var(--space-3);
  }

  .poker-hero__title {
    font-size: 1.5rem;
  }

  .poker-hero__subtitle {
    font-size: 0.9rem;
  }

  .poker-idea-card {
    padding: var(--space-3);
  }

  .poker-idea-card__number {
    font-size: 1.5rem;
  }

  .poker-cta__container {
    gap: var(--space-3);
  }
}
