/* === BLOGS RECIENTES === */
.phi-blog-recientes {
  padding: 4rem 2rem;
  background-color: #fff;
  color: #111;
}

.phi-blog-recientes .phi-titulo-seccion {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.phi-blog-recientes .phi-titulo-seccion::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  /* background-color: #f7b500; */
  margin: 0.5rem auto 0;
}

.phi-blog-recientes .phi-blog-descripcion {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1rem;
  color: #333;
}

.phi-blog-columns {
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.phi-blog-recientes .wp-block-column {
  text-align: left;
}

.phi-blog-recientes img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin-bottom: 1rem;
}

.phi-blog-recientes p {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}


.phi-blog-titulo {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #111;
  min-height: 48px; /* Ajusta si necesitas más espacio */
  display: flex;
  align-items: center;
  justify-content: center; /* Opcional si deseas centrar horizontal */
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.phi-blog-titulo:hover {
  color: #f7b500; /* Amarillo PHI */
  /* text-decoration: underline; */
  cursor: pointer;
}

/* ------------------------------ */
/* Zoom suave al pasar sobre la imagen del blog */
figure.wp-block-image {
  overflow: hidden;
}

figure.wp-block-image img {
  transition: transform 0.4s ease;
  display: block;
}

figure.wp-block-image:hover img {
  transform: scale(1.05);
}