/* ========================================================= */
/*  POESÍAS — PÁGINA INTERNA                                 */
/* ========================================================= */

.poesias-wrapper {
  padding: 40px 20px;
  background: transparent;
}

.poesias-container {
  max-width: 950px;
  margin: auto;
}

.poesias-title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 800;
  color: inherit;
  text-align: center;
}

/* Subtítulo */
.poesias-subtitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

/* ========================================================= */
/*  GRID DE POEMAS                                            */
/* ========================================================= */

.poesias-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 900px) {
  .poesias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================================= */
/*  TARJETAS DE POEMA                                         */
/* ========================================================= */

.poesia-card {
  background: inherit;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.poesia-card:hover {
  transform: translateY(-4px);
}

/* ========================================================= */
/*  TÍTULO ENCIMA DE LA TARJETA                              */
/* ========================================================= */

.poesia-card-title {
  order: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0 0.8rem;
  color: inherit;
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
}

/* ========================================================= */
/*  IMÁGENES RECORTADAS (solo parte superior)                */
/* ========================================================= */

.poesia-card img {
  order: 2;
  width: 100%;
  height: 150px;          /* ALTURA FIJA → recorte uniforme */
  object-fit: cover;      /* RELLENA y recorta */
  object-position: top;   /* MUESTRA SOLO LA PARTE SUPERIOR */
  display: block;
  background: #f2f2f2;
  border-radius: 10px;
  margin: 0 auto 15px auto;
}


/* ========================================================= */
/*  CONTENIDO DE LA TARJETA                                   */
/* ========================================================= */

.poesia-card-content {
  order: 3;
  padding: 1.2rem 1.4rem;
  text-align: center;
  color: inherit;
}

.poesia-card-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ========================================================= */
/*  BOTÓN “LEER POEMA”                                        */
/* ========================================================= */

.poesia-btn {
  display: inline-block;
  background: var(--azul-principal);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
  margin: 0 auto;
}

.poesia-btn:hover {
  background: var(--azul-secundario);
  transform: translateY(-3px);
}

/* ========================================================= */
/*  POEMA INDIVIDUAL — UNA SOLA COLUMNA                      */
/* ========================================================= */

.poema-wrapper {
  padding: 40px 20px;
}

.poema-container {
  max-width: 900px;
  margin: auto;
}

.poema-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

/* UNA SOLA COLUMNA */
.poema-columns {
  display: block;
}

/* TEXTO DEL POEMA */
.poema-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  max-width: 250px;   /* BLOQUE MÁS ESTRECHO */
  margin: 0 auto;     /* CENTRADO */
  text-align: left;   /* POESÍA ALINEADA A LA IZQUIERDA */
}


/* ========================================================= */
/*  BOTONES DE VUELTA EN POEMA INDIVIDUAL                    */
/* ========================================================= */

.poema-volver {
  text-align: center;
  margin: 40px 0 50px;
}

/* Botón */
.poema-volver .btn-volver {
  display: inline-block;
  background: var(--azul-principal);
  color: #fff !important;        /* BLINDADO */
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}

/* Hover */
.poema-volver .btn-volver:hover {
  background: var(--azul-secundario);
  transform: translateY(-3px);
  color: #fff !important;        /* BLINDADO */
}

/* Visitado */
.poema-volver .btn-volver:visited {
  color: #fff !important;        /* BLINDADO */
}

/* Separación entre el poema y los botones */
.poema-text {
  margin-bottom: 40px;   /* añade aire debajo del poema */
}

/* ========================================================= */
/*  AJUSTES PARA MÓVIL — BOTONES DE VUELTA                   */
/* ========================================================= */

@media (max-width: 768px) {
  .poema-volver .btn-volver {
    display: block;
    width: 80%;
    margin: 12px auto;
    text-align: center;
  }
}

/* ========================================================= */
/*  AJUSTE INDIVIDUAL — POESÍA “AMOR SIEMPRE PRESENTE”       */
/* ========================================================= */

.poema-amor-siempre-presente .poema-text p {
  max-width: 250px;   /* Ajusta el ancho solo para esta poesía */
}


/* ========================================================= */
/*  AJUSTE INDIVIDUAL — POESÍA “PERFILES”                    */
/* ========================================================= */

.poema-perfiles .poema-text p {
  max-width: 420px;   /* Ajusta el ancho solo para esta poesía */
}

/* ========================================================= */
/*  AJUSTE INDIVIDUAL — POESÍA “PRINCESA DE LA TARDE”        */
/* ========================================================= */

.poema-princesa-tarde .poema-text p {
  max-width: 420px;   /* Ajuste recomendado para este poema */
}

/* ========================================================= */
/*  AJUSTE INDIVIDUAL — POESÍA “TU CARIÑO”                   */
/* ========================================================= */

.poema-tu-carino .poema-text p {
  max-width: 480px;   /* Ajuste recomendado para este poema */
}