/* ---- Carrusel arte: paneles verticales ---- */

.art-carousel .swiper-slide {
    width: 190px;
    height: 420px;
    overflow: hidden;
}


    /* EL FIX CLAVE */
    .art-carousel .swiper-slide > a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .art-carousel .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.art-carousel {
    overflow: hidden;
}

.art-zoom {
    display: block;
}
.pswp__img {
    object-fit: contain !important;
}

.art-carousel .swiper-button-prev,
.art-carousel .swiper-button-next {
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

    /* ÍCONO DE LA FLECHA */
    .art-carousel .swiper-button-prev::after,
    .art-carousel .swiper-button-next::after {
        font-size: 14px; /* tamaño del icono */
        color: #fff;
        font-weight: bold;
    }

/* POSICIÓN */
.art-carousel .swiper-button-prev {
    left: 20px; /* ajustá si querés más cerca */
}

.art-carousel .swiper-button-next {
    right: 20px;;
}

    /* HOVER */
    .art-carousel .swiper-button-prev:hover,
    .art-carousel .swiper-button-next:hover {
        background: #000;
        transform: translateY(-50%) scale(1.1);
    }