/* =============================================================
   Section "Ce que ça change" — Template Solution Single Enfant
   Surtitre + H2 + 2 colonnes comparatives (sans / avec Powesco).
   ============================================================= */

.child-change {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(220, 229, 226, 0.4);
  padding: 150px 80px;
}

.child-change__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── En-tête ── */

.child-change__header {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.child-change__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #24c696;
  margin: 0;
  line-height: 1;
}

.child-change__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #025355;
  margin: 0;
  line-height: 1.1;
}

.child-change__title p {
  margin: 0;
}

/* ── Grille 2 colonnes ── */

.child-change__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Colonne commune ── */

.child-change__col {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* ── En-tête de colonne ── */

.child-change__col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px 17px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.child-change__col-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.child-change__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.39;
}

/* ── Variante "Sans" (rouge) ── */

.child-change__col--without {
  border: 1px solid #fee2e2;
}

.child-change__col-header--without {
  background-color: #fef2f2;
  border-bottom-color: #fee2e2;
}

.child-change__col-dot--without {
  background-color: #f87171;
}

.child-change__col-title--without {
  color: #ef4444;
}

/* ── Variante "Avec" (vert) ── */

.child-change__col--with {
  border: 1px solid rgba(33, 181, 147, 0.19);
}

.child-change__col-header--with {
  background-color: #e8f7f3;
  border-bottom-color: rgba(33, 181, 147, 0.19);
}

.child-change__col-dot--with {
  background-color: #21b593;
}

.child-change__col-title--with {
  color: #21b593;
}

/* ── Corps de colonne ── */

.child-change__col-body {
  background-color: #ffffff;
  padding: 24px;
  flex: 1;
}

.child-change__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Ligne individuelle ── */

.child-change__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
}

.child-change__row--without {
  background-color: rgba(254, 242, 242, 0.5);
}

.child-change__row--with {
  background-color: #f0faf7;
}

/* Icône (cercle + symbole) */
.child-change__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.child-change__icon--without {
  background-color: #fee2e2;
  color: #ef4444;
}

.child-change__icon--with {
  background-color: rgba(33, 181, 147, 0.13);
  color: #21b593;
}

.child-change__text {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #003c3d;
  line-height: 1.325;
}

/* =============================================================
   Responsive — ≤ 1280px
   ============================================================= */
@media (max-width: 1280px) {
  .child-change {
    padding: 100px 40px;
  }

  .child-change__title {
    font-size: 36px;
  }
}

/* =============================================================
   Responsive — ≤ 991px
   ============================================================= */
@media (max-width: 991px) {
  .child-change {
    padding: 60px 24px;
  }

  .child-change__grid {
    grid-template-columns: 1fr;
  }

  .child-change__label {
    font-size: 16px;
  }

  .child-change__title {
    font-size: 28px;
  }

  .child-change__col-title {
    font-size: 18px;
  }

  .child-change__text {
    font-size: 15px;
  }
}

/* =============================================================
   Responsive — ≤ 575px
   ============================================================= */
@media (max-width: 575px) {
  .child-change {
    padding: 48px 16px;
  }

  .child-change__title {
    font-size: 24px;
  }
}
