/* ==========================================================================
   Section 10 — faq  ("SSS / Merak edilenler")
   Click-driven, single-open accordion. Row 1 open on load.
   Values taken verbatim from docs/research/sections/10-faq.html.
   No hover states exist on the original.
   ========================================================================== */

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

/* The slice uses a narrower wrapper than the global .container
   (max-width 880px, not 1180px), so it is written out here. */
.faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 32px;
}

/* --- heading -------------------------------------------------------------- */
.faq__head {
  text-align: center;
  margin-bottom: 54px;
}

/* Overrides on top of the shared .eyebrow token class. */
.faq .faq__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0;
}

/* Overrides on top of the shared .h2 token class. */
.faq .faq__title {
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 0;
}

/* --- rows ----------------------------------------------------------------- */
.faq__item {
  border-bottom: 1px solid var(--line-4);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
}

.faq__qtext {
  min-width: 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.faq__sign {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line-3);
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 600;
  /* Declared on the original but never triggered — there are no hover or
     state-change styles on this element. Carried over verbatim. */
  transition: all .25s ease;
}

/* --- answers -------------------------------------------------------------- */
.faq__a {
  padding: 0 4px 28px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
  white-space: pre-line;
  max-width: 760px;
}

/* Closed rows drop their answer entirely — the original renders/removes it. */
.faq__item[data-open="false"] .faq__a,
[data-faq-item][data-open="false"] [data-faq-a] {
  display: none;
}

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 860px) {
  /* Verified on the original at 390px: horizontal padding stays 32px (it never
     drops to 24px) and the head keeps its full 54px bottom margin. The narrower
     content box is what makes question 3 wrap onto a second line, as it does on
     the original. */
  .faq__inner {
    padding: 64px 32px;
  }

  /* The 24px gap is load-bearing: it is what makes question 3 wrap onto a third
     line at 390px, exactly as the original does. Do not shrink it. */
  .faq__q {
    gap: 24px;
  }
}
