.img1-container,
.img2-container,
.img3-container,
.img4-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
}

.scala-imagen img {
    transition: transform 0.5s ease-in-out;
}

.scala-imagen:hover img {
    transform: scale(1.1);
}


.img1-noticias,
.img2-noticias,
.img3-noticias,
.img4-noticias {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(85%);
    /* Oscurece la imagen */
}

.img-text {

    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 0.5rem 1rem;
    width: 100%;
    background: linear-gradient(to top, rgb(37, 37, 37), rgba(34, 26, 26, 0));


}


.img-text h4,
.img-text h3,
.img-text h2,
.img-text h1 {
    /*background: transparent !important;*/
    color: white;
    margin: 1rem 1rem 1rem 0;
    display: -webkit-box;
    /* Usar un contenedor flexible */
    -webkit-box-orient: vertical;
    /* Orientar el contenedor de forma vertical */
    line-clamp: 2;
    -webkit-line-clamp: 2;
    /* Limitar el texto a 4 líneas */
    overflow: hidden;
    /* Ocultar el texto que sobrepase las 4 líneas */
    text-overflow: ellipsis;
    /* Agregar puntos suspensivos al final */
    line-height: 1.4;
    /* Espaciado entre líneas */
    max-height: calc(1.4em * 4);
    /* Limitar la altura máxima a 4 líneas */
}



.td-post-category {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    background-color: #282c34;
    padding: 0.3rem 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10;
    transition: all 0.3s ease;
}




@media only screen and (min-width: 576px) {

    .img1-container {
        margin: 0 0 0.5rem 0;
    }

    .der-container {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex: 1;
    }

    .buton-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;
    }
}


@media only screen and (min-width: 768px) {

    .img1-container {
        margin: 0;
    }

    .principal-container {
        width: 100%;
        max-width: 140rem;
        height: 50rem;
        margin: 1rem 0 3rem 0;
    }

    .main-container {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        height: 100%;
        margin-top: 1rem;
    }


    .der-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;
    }

    .buton-container {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex: 1;
    }
}

@media only screen and (min-width: 900px) {
    .img-text h1 {
        /*background: transparent !important;*/
        color: white;
        margin: 1rem 1rem 1rem 0;
        display: -webkit-box;
        /* Usar un contenedor flexible */
        -webkit-box-orient: vertical;
        /* Orientar el contenedor de forma vertical */
        line-clamp: 3;
        -webkit-line-clamp: 3;
        /* Limitar el texto a 4 líneas */
        overflow: hidden;
        /* Ocultar el texto que sobrepase las 4 líneas */
        text-overflow: ellipsis;
        /* Agregar puntos suspensivos al final */
        line-height: 1.4;
        /* Espaciado entre líneas */
        max-height: calc(1.4em * 4);
        /* Limitar la altura máxima a 4 líneas */
    }

}


@media only screen and (min-width: 1200px) {
    .titulo-nota-principal {
        font-size: 2rem;
    }

    .img1-noticias,
    .img2-noticias,
    .img3-noticias,
    .img4-noticias {
        filter: brightness(100%);
        /* Oscurece la imagen */
    }

    .img-text {
        background: linear-gradient(to top, rgb(35 35 35), rgb(49 49 49 / 68%))
    }



}