.noticias {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 97% !important;
    max-width: 1700px !important;
    scroll-margin-top: 100px;
}

.noticias .items {
    margin-top: 30px;
    display: grid;
    row-gap: 35px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.noticias .items .card {
    margin: auto;
    margin-top: 0;
}

.noticias .items .card .card-body .card-text {
    max-height: 100px; 
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis; 
    white-space: normal; 
}

#imagen-noticia {
    width: 100% !important;
    border-radius: 5px;
    margin-bottom: 20px;
}

#descripcion-noticia {
    text-align: justify !important;
}

@media screen and (max-width: 1210px) {
    .noticias .items {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 650px) {
    .noticias .items {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}