/* ==========================================================================
   "The answer is YES" list — big centred title, questions with a text-width
   divider and an inline accent "Yes".
   ========================================================================== */
.faq-yes {
  text-align: center;
}

.yes-title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: -0.03em;
}

.yes-list {
  list-style: none;
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}

.yes-list li {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text);
}

/* The divider hugs the text width (not the full row), so wrap the line and
   carry the border on the inline-block span. */
.yes-q {
  display: inline-block;
  padding: 16px 2px;
  border-bottom: 1px solid var(--color-border);
}

.yes-list li:last-child .yes-q {
  border-bottom: 0;
}

/* "Yes" answers — inline accent text, no capsule. */
.pill {
  color: var(--color-accent);
  margin-left: 0.25em;
  font-weight: 700;
}

.yes-note {
  max-width: 54ch;
  margin: 30px auto 0;
  color: var(--color-body);
}