/* ===== PT Symptom Assessment Form ("Main 2") =====
   page-physicaltherapy.php — template-parts/physicaltherapy/section-assessment-form.php
   Reuses --pt-* tokens (pt-landing.css) for palette and the shared
   .dc-form-control / .dc-checkbox-grid / .dc-upload / .btn-dc-* component
   classes (contact-form.css) for the actual form controls — this file only
   styles the two-step layout and the symptom checklist grid. */

.pta-assessment {
  padding: 64px 0;
  background: var(--pt-cream, #F7EBE4);
}

.pta-assessment__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.pta-assessment__card {
  background: var(--pt-white, #fff);
  border-radius: var(--pt-radius, 14px);
  box-shadow: var(--pt-shadow, 0 4px 24px rgba(0, 0, 0, 0.06));
  padding: 32px 24px;
}

.pta-assessment__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.pta-assessment__step--2 {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pta-assessment__step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pt-gold, #AC8D62);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.pta-assessment__title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pt-dark, #2B2B2B);
  line-height: 1.4;
}

.pta-assessment__title--sm {
  font-size: 1.15rem;
}

.pta-assessment__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--pt-text, #555);
}

/* Symptom checklist — a denser grid than the (shorter) services list, since
   there are 12 options; falls back to the shared .dc-checkbox-grid/.dc-checkbox
   look from contact-form.css, just tightened for a longer list. */
.pta-symptom-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .pta-assessment__card {
    padding: 24px 16px;
  }
  .pta-symptom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .pta-symptom-grid {
    grid-template-columns: 1fr;
  }
}
