/* Copied from the top-page FAQ design for symptom detail pages. */
.faq {
  padding: 4rem 0;
  background: #f6fbf4;
}

.faq .container {
  max-width: 48rem;
}

.faq__heading {
  text-align: center;
  margin-bottom: 2rem;
}

.faq .section-title {
  color: #2f7d32;
  font-size: clamp(2rem, 4.8vw, 3rem);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.faq .section-title::after {
  width: 48px;
  height: 3px;
  background: #f28c28;
  border-radius: 999px;
}

.faq__lead {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
}

.faq .lp-faq-list {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.faq .lp-faq-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq .lp-faq-item:last-child {
  border-bottom: 0;
}

.faq dt {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  color: #15803d;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.faq dt span {
  color: #2563eb;
  font-weight: 900;
  flex: 0 0 auto;
  line-height: 1;
}

.faq dd {
  display: flex;
  gap: 0.55rem;
  margin: 0.45rem 0 0;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0;
}

.faq dd span {
  color: #dc2626;
  font-weight: 900;
  flex: 0 0 auto;
}

.faq__more {
  margin-top: 1.25rem;
  text-align: center;
}

.faq__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #064e3b;
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #86efac;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.faq__more-link:hover,
.faq__more-link:focus-visible {
  color: #047857;
}

@media (max-width: 640px) {
  .faq {
    padding: 3.5rem 0;
  }

  .faq__heading {
    margin-bottom: 1.6rem;
  }

  .faq dt {
    font-size: 1.04rem;
  }

  .faq .lp-faq-item {
    padding: 0.78rem 0;
  }

  .faq dd {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.72;
  }
}
