/* ===============================
   INTRO PADRINOS
================================ */
.intro-padrinos {
  padding: 2.5rem 0 3rem;
}

/* ===============================
   CARD NIÑOS
================================ */
.child-card {
  max-width: 380px;
  min-height: 750px;
  margin-inline: auto;
  border: none;
}

/* Texto base del card */
.child-desc p {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 19px;
}

/* Apoyo mensual */
.child-apoyo {
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

/* Línea inferior */
.line-h {
  width: 100%;
  height: 2px;
  background-color: #41a7d3;
  margin: 0 auto;
}

/* ===============================
   GRID / SEPARADOR CENTRAL
================================ */
.child-row {
  position: relative;
}

@media (min-width: 768px) {
  .child-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-1px);
    width: 2px;
    margin-top: 50px;
    background: #41a7d3;
    pointer-events: none;
  }
}

/* ===============================
   CONTENIDO QUILL
================================ */
.child-msg {
  text-align: center;
}

/* párrafos */
.child-msg p {
  margin: 0 0 0.75rem;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 19px;
}

.child-msg p:last-child {
  margin-bottom: 0;
}

/* listas */
.child-msg ul,
.child-msg ol {
  margin: 0.5rem auto 0.75rem;
  display: inline-block;
  text-align: left;
  padding-left: 1.25rem;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
}

.child-msg li {
  margin: 0.15rem 0;
}

/* 🔑 NEGRITAS (Quill) */
.child-msg strong,
.child-msg b {
  font-family: "Gilroy-Black", sans-serif;
  font-weight: 900 !important;
}

/* ===============================
   PAGINACIÓN
================================ */
.paginacion-area {
  padding: 2rem 0;
}

.paginacion-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.paginacion-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.pag-izq {
  justify-self: start;
}
.pag-centro {
  justify-self: center;
}
.pag-der {
  justify-self: end;
}

.btn-pag {
  display: inline-block;
  text-decoration: none;
}

.btn-pag img {
  width: 210px;
  height: auto;
  display: block;
}

.btn-pag.disabled {
  pointer-events: none;
}

.btn-pag.disabled img {
  opacity: 0.45;
}

.page-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Myriad", sans-serif;
  font-size: 16px;
}

.page-pill {
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #111;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 576px) {
  .paginacion-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left right"
      "center center";
  }

  .pag-left {
    grid-area: left;
    justify-self: start;
  }

  .pag-right {
    grid-area: right;
    justify-self: end;
  }

  .pag-center {
    grid-area: center;
    justify-self: center;
    margin-top: 6px;
  }
}

/* ===============================
   FUENTES
================================ */
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Black";
  src: url("../fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Myriad";
  src: url("../fonts/Myriad Pro Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
