.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(247, 245, 239, .98) 0%, rgba(247, 245, 239, .92) 55%, rgba(170, 184, 170, .42) 100%);
}

.faq-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.4vw, 84px);
}

.faq-hero-panel {
  display: grid;
  gap: 12px;
}

.faq-hero-panel a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.faq-hero-panel a span {
  color: var(--copper);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--white);
}

.faq-section.alt {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 920px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-kicker {
  position: sticky;
  top: 96px;
}

.faq-kicker p {
  color: var(--muted);
}

.faq-list.full {
  max-width: none;
}

.faq-list.full details {
  background: var(--white);
}

.faq-section.alt .faq-list.full details {
  background: var(--paper);
}

.faq-list.full summary {
  font-size: 18px;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-cta-grid a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  line-height: 1.6;
}

.faq-cta-grid span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .faq-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .faq-hero,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-kicker {
    position: static;
  }
}

@media (max-width: 620px) {
  .faq-hero h1 {
    font-size: 42px;
  }

  .faq-cta-grid {
    grid-template-columns: 1fr;
  }
}
