/* FAQ section
   Reorganized from the verified working production build. */

.faq-intro h2,.quote-copy h2 {
  letter-spacing: -.045em;
  text-transform: uppercase;
  margin: 14px 0 22px;
  font-size: clamp(38px,4.3vw,58px);
  font-style: italic;
  font-weight: 950;
  line-height: .98;
}

.faq-intro>p,.quote-copy>p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.faq-section {
  background: #090b10;
  grid-template-columns: minmax(280px,.72fr) minmax(460px,1.28fr);
  gap: 84px;
  padding: 108px max(40px,50vw - 590px);
  display: grid;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 30px;
}

.text-link {
  color: #d6d9e0;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 13px;
  font-weight: 850;
  display: inline-flex;
}

.text-link .glyph {
  color: var(--pink);
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 24px 46px 24px 0;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  position: relative;
}

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

.faq-list summary:after {
  content: "+";
  border: 1px solid var(--line);
  width: 29px;
  height: 29px;
  color: var(--blue);
  border-radius: 50%;
  place-items: center;
  font-size: 19px;
  font-weight: 400;
  display: grid;
  position: absolute;
  top: 19px;
  right: 3px;
}

.faq-list details[open] summary:after {
  content: "−";
  color: var(--pink);
}

.faq-list details p {
  max-width: 620px;
  color: var(--muted);
  margin: -7px 0 24px;
  font-size: 13px;
  line-height: 1.75;
}
