/* Poker Evenings page styles */

#poker-evenings-main {
  overflow: hidden;
}

/* Hero */
.poker-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 80vh;
  background-color: var(--color-charcoal);
}

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

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.35) 0%, rgba(43, 43, 43, 0.65) 100%);
}

.poker-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: var(--space-7) var(--space-5);
  margin-inline: auto;
  text-align: left;
  color: var(--color-off-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.poker-hero__label {
  color: var(--color-terracotta);
  margin-block-end: 0;
}

.poker-hero__title {
  color: var(--color-off-white);
  font-size: var(--text-display);
  line-height: var(--leading-display);
  margin-block-end: 0;
  max-width: 20ch;
}

.poker-hero__subtitle {
  color: var(--color-off-white);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-hero__cta {
  margin-block-start: var(--space-2);
}

/* What to Expect */
.poker-expect {
  background-color: var(--color-sandstone-beige);
}

.poker-expect__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.poker-expect__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}

.poker-expect__card h3 {
  margin-block-end: 0;
}

.poker-expect__card p {
  margin-block-end: 0;
  max-width: 55ch;
}

/* Non-Gambling Ethos */
.poker-ethos {
  background-color: var(--color-off-white);
}

.poker-ethos__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-ethos__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  width: 100%;
}

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

/* Upcoming Poker Evenings */
.poker-schedule {
  background-color: var(--color-sandstone-beige);
}

.poker-schedule__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.poker-schedule__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
  transition: box-shadow var(--transition-fast);
}

.poker-schedule__card:hover {
  box-shadow: var(--shadow-lift);
}

.poker-schedule__date {
  font-size: var(--text-small);
  line-height: var(--leading-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-terracotta);
  margin-block-end: 0;
}

.poker-schedule__card h3 {
  margin-block-end: 0;
}

.poker-schedule__time {
  font-weight: 500;
  color: var(--color-eucalyptus-green);
  margin-block-end: 0;
}

.poker-schedule__card p:last-child {
  margin-block-end: 0;
  max-width: 60ch;
}

/* Venue */
.poker-venue {
  background-color: var(--color-off-white);
}

.poker-venue__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-venue__figure {
  width: 100%;
  margin-block-end: 0;
}

.poker-venue__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-none);
}

.poker-venue__figure figcaption {
  margin-block-start: var(--space-2);
}

.poker-venue__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  width: 100%;
}

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

/* How It Works */
.poker-how {
  background-color: var(--color-sandstone-beige);
}

.poker-how__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-how__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  width: 100%;
}

.poker-how__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  min-width: 0;
}

.poker-how__number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-terracotta);
  color: var(--color-off-white);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: 1;
}

.poker-how__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.poker-how__text h3 {
  margin-block-end: 0;
}

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

/* Testimonials */
.poker-testimonials {
  background-color: var(--color-off-white);
}

.poker-testimonials__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.poker-testimonials__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
  border-inline-start: 3px solid var(--color-terracotta);
  padding-inline-start: var(--space-4);
}

.poker-testimonials__card p {
  margin-block-end: 0;
  max-width: 60ch;
}

.poker-testimonials__attribution {
  font-size: var(--text-small);
  line-height: var(--leading-small);
  color: var(--color-weathered-oak);
  font-style: normal;
}

/* FAQ */
.poker-faq {
  background-color: var(--color-sandstone-beige);
}

.poker-faq__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.poker-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 800px;
  width: 100%;
}

.poker-faq__item {
  background-color: var(--color-off-white);
  border: var(--border-hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.poker-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
  color: var(--color-charcoal);
  cursor: pointer;
  min-height: var(--touch-target-min);
}

.poker-faq__question:hover {
  color: var(--color-eucalyptus-green);
}

.poker-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.poker-faq__icon::before,
.poker-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-terracotta);
  transition: transform var(--transition-fast);
}

.poker-faq__icon::before {
  width: 16px;
  height: 2px;
}

.poker-faq__icon::after {
  width: 2px;
  height: 16px;
}

.poker-faq__item.is-open .poker-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.poker-faq__answer {
  padding: 0 var(--space-4) var(--space-3);
}

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

/* Book CTA */
.poker-book {
  background-color: var(--color-sandstone-beige);
}

.poker-book__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  max-width: 600px;
  margin-inline: auto;
}

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

.poker-book__contact {
  margin-block-end: 0;
  max-width: 60ch;
}

.poker-book__cta {
  margin-block-start: var(--space-2);
}

/* Responsive */
@media (max-width: 1024px) {
  .poker-expect__grid,
  .poker-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-expect__card:nth-child(3),
  .poker-schedule__card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .poker-hero {
    min-height: 60vh;
    align-items: flex-end;
  }

  .poker-hero__content {
    padding: var(--space-5) var(--space-4);
    text-align: center;
    align-items: center;
  }

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

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

  .poker-expect__grid,
  .poker-schedule__grid,
  .poker-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .poker-expect__card:nth-child(3),
  .poker-schedule__card:nth-child(3) {
    grid-column: auto;
  }

  .poker-venue__image {
    height: 300px;
  }

  .poker-how__step {
    flex-direction: column;
    gap: var(--space-2);
  }

  .poker-how__number {
    width: 36px;
    height: 36px;
    font-size: var(--text-h3);
  }

  .poker-faq__question {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-body);
    line-height: var(--leading-body);
  }

  .poker-faq__answer {
    padding: 0 var(--space-3) var(--space-2);
  }

  .poker-book__container {
    padding-inline: var(--space-4);
  }
}
