/* Estilos para mostrar imágenes como rectángulos verticales uniformes */
.portfolio-item {
    margin-bottom: 20px;
    height: 400px;
    overflow: hidden;
}

.portfolio-item figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.portfolio-item figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mantener tres columnas en dispositivos de escritorio */
@media screen and (min-width: 992px) {
    .portfolio-item.col-md-4 {
        width: 33.33%;
        padding: 0 10px;
    }
}

/* Ajustes para dispositivos medianos */
@media screen and (max-width: 991px) and (min-width: 768px) {
    .portfolio-item.col-sm-12 {
        width: 50%;
        padding: 0 10px;
    }
}

/* Ajustes para dispositivos pequeños */
@media screen and (max-width: 767px) {
    .portfolio-item {
        height: 350px;
    }
}