/*
 * Estilos del widget "Muy pronto" (3 ebooks). Todo namespaceado bajo
 * .eci-muy-pronto para no chocar con el CSS inline de cada pagina del sitio.
 */
.eci-muy-pronto {
  padding: 16px 20px 36px;
  text-align: center;
  min-height: 210px; /* reserva de espacio: evita salto de layout mientras carga el JS */
}

.eci-muy-pronto__titulo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: #2b2419;
  margin: 0 0 8px;
  line-height: 1.25;
}

.eci-muy-pronto__subtitulo {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c6d49;
  margin: 0 0 14px;
  padding-bottom: 10px;
}

.eci-muy-pronto__subtitulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: #b9976f;
}

.eci-muy-pronto__meta {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #8c6d49;
  margin: 0 0 24px;
}

.eci-muy-pronto__fila {
  display: flex;
  flex-wrap: wrap; /* red de seguridad: si no entran las 3, bajan de linea en vez de desbordar */
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  row-gap: 16px;
}

.eci-muy-pronto__tarjeta {
  flex: 0 0 auto;
}

/* Portadas completas: formato libro casi entero, se ve la composicion tal
   cual es el archivo. */
.eci-muy-pronto__poster {
  position: relative;
  width: 105px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.eci-muy-pronto__poster-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(20, 15, 8, 0.18);
}

.eci-muy-pronto__poster--placeholder {
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 15, 8, 0.18);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.eci-muy-pronto__poster-titulo {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.2;
  padding: 12px 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.eci-muy-pronto__poster-link {
  display: block;
  text-decoration: none;
}

.eci-muy-pronto__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 3px 8px;
  border-radius: 50px;
}

@media (min-width: 640px) {
  .eci-muy-pronto {
    padding: 34px 24px 44px;
  }
  .eci-muy-pronto__fila {
    gap: 22px;
  }
  .eci-muy-pronto__poster {
    width: 180px;
    height: 254px;
  }
}
