/* FAQ: 2-column teaser grid (sales) + accordion (FAQ page). */

.faq-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-7);
  max-width: var(--container-lg);
  margin: 0 auto var(--space-5);
}

.faq-teaser__item dt {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  /* Speak display face (400 only) — size, not weight, gives it presence. */
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2; /* tighter — the wrapped question reads as one unit */
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-2);
}

.faq-teaser__item dt i {
  color: var(--color-text);
  flex: none;
  font-size: 1.25rem; /* keep the info glyph modest beside the big question */
  /* Height = the first line box (1.5rem × 1.2) and centre the glyph in it, so
     the icon sits at the vertical centre of the question's first line. */
  height: 1.8rem;
  display: flex;
  align-items: center;
}

.faq-teaser__item dd {
  margin: 0 0 0 calc(1em + var(--space-2));
  font-size: 1.0625rem;
}

.faq-teaser__more {
  text-align: center;
  margin: 0;
}

/* Button a touch larger so it holds its own against the block (em padding
   grows with the font-size). */
.faq-teaser__more .btn {
  font-size: 1.0625rem;
  padding: 0.85em 2.6em;
}

/* accordion variant (FAQ page) */
.faq-list {
  max-width: var(--container-md);
  margin-inline: auto;
}

.faq-list__group-title {
  margin: var(--space-6) 0 var(--space-3);
}

.faq-list details {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  list-style: none;
  padding: var(--space-3) 0;
  font-weight: 600;
  font-size: var(--text-body);
  color: var(--color-primary);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.faq-list__answer {
  padding-bottom: var(--space-3);
  font-size: var(--text-body);
}

@media (max-width: 767px) {
  .faq-teaser__grid {
    grid-template-columns: 1fr;
  }
}
