/* --- POSTPARTUM PAGE --- */

/* =========== HERO =========== */
.pp-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 0;
}
.pp-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--ui-teal-700);
  margin-bottom: 0.6rem;
}
.pp-hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  color: var(--section-heading-color);
  margin-bottom: 1rem;
}
.pp-hero .lead {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 70ch;
  margin: 0 auto;
}
.pp-hero .hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pp-hero-image {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.pp-hero-image picture,
.pp-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========== WHY SO COMMON =========== */
.pp-why {
  max-width: var(--container-max-width);
  margin: 2.5rem auto 0;
  padding: 0 1.5rem 2.5rem;
}
.pp-why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pp-why-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--section-heading-color);
  margin-bottom: 0.75rem;
}
.pp-why-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.pp-why-text ul {
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--text-color);
  line-height: 1.8;
}
.pp-why-stat-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pp-stat-card {
  background: var(--primary-050);
  border: 1px solid var(--chip-border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pp-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.pp-stat-label {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* =========== SYMPTOMS =========== */
.pp-symptoms {
  background: var(--light-background);
  padding: 2.5rem 1.5rem;
}
.pp-symptoms h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--section-heading-color);
  margin-bottom: 0.5rem;
}
.pp-symptoms-lead {
  text-align: center;
  color: var(--text-color);
  max-width: 65ch;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.pp-symptom-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.pp-symptom-card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid #e6edf0;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--box-shadow-soft);
}
.pp-symptom-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--section-heading-color);
}
.pp-symptom-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* =========== REASSURANCE CALLOUT =========== */
.pp-callout {
  background: var(--primary-color);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.pp-callout-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pp-callout h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.pp-callout p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.pp-callout .btn-primary {
  background-color: #fff;
  color: var(--primary-color) !important;
}
.pp-callout .btn-primary:hover {
  background-color: var(--primary-050);
}

/* =========== TREATMENT OPTIONS =========== */
.pp-treatments {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.pp-treatments h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--section-heading-color);
  margin-bottom: 0.5rem;
}
.pp-treatments-lead {
  text-align: center;
  color: var(--text-color);
  max-width: 65ch;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.pp-treatment-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}
.pp-treatment-card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid #e6edf0;
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: var(--box-shadow-soft);
}
.pp-treatment-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--section-heading-color);
}
.pp-treatment-card p {
  margin: 0 0 0.75rem;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.98rem;
}
.pp-treatment-card .btn-link {
  font-size: 0.95rem;
}

/* =========== BREASTFEEDING NOTE =========== */
.pp-breastfeeding {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}
.pp-bf-card {
  background: #f0f9f4;
  border: 1px solid #b7dfca;
  border-left: 6px solid #2e8b57;
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
}
.pp-bf-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: #1d5c38;
  margin-bottom: 0.6rem;
}
.pp-bf-card p {
  margin: 0;
  color: #2d4a37;
  line-height: 1.8;
}

/* =========== STEPS =========== */
.pp-steps {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem 2.6rem;
}
.pp-steps h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--section-heading-color);
  margin-bottom: 1.6rem;
}
.pp-step-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.pp-step {
  grid-column: span 12;
  background: #fff;
  border: 1px solid #e6edf0;
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: var(--box-shadow-soft);
}
.pp-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.pp-step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--section-heading-color);
}
.pp-step p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* =========== FAQ =========== */
.pp-faq {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.5rem 2.8rem;
}
.pp-faq h2 {
  text-align: left;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin: 0 clamp(8px, 2vw, 16px) 0.9rem;
  color: var(--section-heading-color);
  font-weight: 700;
}
.pp-faq .faq-item {
  border-top: 1px solid #e6edf0;
  margin: 0 clamp(8px, 2vw, 16px);
  padding: 0.35rem 0;
}
.pp-faq .faq-item:first-of-type { border-top: 0; }

/* =========== CTA =========== */
.pp-cta {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3.2rem;
}
.pp-cta h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin-bottom: 0.85rem;
  color: var(--section-heading-color);
}
.pp-cta p {
  margin-bottom: 1.15rem;
  color: var(--text-color);
}
.pp-cta .cta-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========== RESPONSIVE =========== */
@media (min-width: 768px) {
  .pp-why-inner { grid-template-columns: 1fr 340px; }
  .pp-symptom-card { grid-column: span 6; }
  .pp-treatment-card { grid-column: span 4; }
  .pp-step { grid-column: span 4; }
}

@media (min-width: 1024px) {
  .pp-symptom-card { grid-column: span 4; }
}
