.bg-previews {
    border: 1px solid rgba(216, 216, 216, 0.425);
    background-color: rgb(236, 236, 236);
    transition: all 0.3s ease-out;

}

.bg-previews-mini {
    transition: all 0.3s ease-out;
}

.img_previews {
    width: 500px;
    height: 450PX;
    transition: all 1s ease-out;
    border-radius: 15px;
}
@media (max-width: 1300px) {
    .img_previews {
        width: 450px;
    }
}

@media (max-width: 1000px) {
    .img_previews {
        width: 400px;
    }
}

@media (max-width: 800px) {
    .img_previews {
        width: 350px;
    }
}

@media (max-width: 750px) {
    .img_previews {
        width: 400px;
    }

    .bg-previews {
        border: initial;
        background-color: initial;
    }

    .bg-previews-mini {
        border-radius: 15px;
        margin: 10px 0px;
        padding: 20px;
        background-color: rgb(236, 236, 236);
        border: 1px solid rgba(216, 216, 216, 0.425);

    }
}

@media (max-width: 700px) {
    .img_previews {
        width: 450px;
    }
}

/**************** TEXTO EXTENDIBLE *************/

.texto-expandible {
    max-height: 100px; /* Altura máxima visible */
    overflow: hidden; /* Oculta el desbordamiento */
    transition: max-height 0.2s ease; /* Transición suave */
}
.texto-expandible.expanded {
    max-height: 1000px; /* Altura máxima al expandir */
}