/* CSS Document */
.noticia-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s ease;
    align-items: center;
}

.noticia-item:hover {
    transform: scale(1.01);
    background: #f6f6f6;
}

/* IMAGEN */
.noticia-img-wrapper {
    width: 110px;
    min-width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 10px;
}

.noticia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO A LA DERECHA */
.noticia-content {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.noticia-titulo {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    text-decoration: none !important;
    line-height: 1.3;
}

.noticia-titulo:hover {
    color: #16c5bd;
}

.noticia-fecha {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}



