#noticia {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.recent-news-item img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s ease;
    opacity: 1;
}

.recent-news-item img:hover {
    transform: scale(1.1);
}

