/* CSS para el efecto de zoom en las imágenes de noticias */

/* Apply a smooth transition to the image */
.noticia-img-zoom {
    transition: transform 0.5s ease; /* Adjust duration and timing as needed */
}

/* On hover, scale the image to 1.1 (110%) of its original size */
.noticia-img-zoom:hover {
    transform: scale(1.1);
}