/* Compact, page-only summary and FAQ for /events/. */
.event-index-answers {
  background: var(--soft);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.event-index-answer-wrap {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  margin: 0 auto;
  max-width: 1180px;
}

.event-index-answer-intro h2,
.event-index-faq-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 .65rem;
}

.event-index-answer-intro p:not(.eyebrow) {
  color: var(--steel);
  font-size: 1rem;
  margin: 0;
  max-width: 42rem;
}

.event-index-facts {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(8, 8, 10, .08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
}

.event-index-facts > div {
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.event-index-facts > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.event-index-facts > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.event-index-facts dt {
  color: var(--red);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .02em;
  margin-bottom: .28rem;
  text-transform: uppercase;
}

.event-index-facts dd {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.event-index-faq {
  margin: 0 auto;
  max-width: 1180px;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.event-index-faq-heading {
  margin-bottom: 1rem;
}

.event-index-faq-list {
  border-top: 1px solid var(--line);
}

.event-index-faq-list details {
  border-bottom: 1px solid var(--line);
  padding: .1rem 0;
}

.event-index-faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 850;
  list-style-position: outside;
  padding: 1rem 0 1rem 1.35rem;
}

.event-index-faq-list summary::marker {
  color: var(--red);
}

.event-index-faq-list details p {
  color: var(--steel);
  margin: -.25rem 0 1rem 1.35rem;
  max-width: 70ch;
}

.event-index-faq-list summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* The event type is a short, scannable choice rather than another open text
   field. Keep it readable on desktop without making the mobile step feel
   crowded. */
.event-form .event-type-fieldset {
  grid-column: 1 / -1;
}

.event-form .event-type-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-form .event-type-options .choice-pill {
  min-height: 50px;
}

.event-form .event-type-other-field {
  margin-top: .1rem;
}

.event-form .event-type-other-field[hidden] {
  display: none !important;
}

.event-form .choice-pill-open-suggestions {
  grid-column: 1 / -1;
}

@media (max-width: 920px) {
  .event-index-answer-wrap {
    grid-template-columns: 1fr;
  }

  .event-form .event-type-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Keep the final action in the document flow so it cannot cover the
     policy text or verification control while a guest reviews the request. */
  .event-form[data-guided-flow="true"] .booking-actions {
    background: transparent;
    margin: 0;
    padding: 1rem 0 0;
    position: static;
    z-index: auto;
  }
}

@media (max-width: 560px) {
  .event-index-facts {
    grid-template-columns: 1fr;
  }

  .event-form .event-type-options {
    grid-template-columns: 1fr;
  }

  .event-index-facts > div,
  .event-index-facts > div:nth-child(odd),
  .event-index-facts > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .event-index-facts > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-index-faq-list summary {
    scroll-behavior: auto;
  }
}
