@charset "utf-8";
/* CSS Document */
.my-slider {
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 5px auto;
}

/* IMAGES */
.my-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.my-slider img.active {
    display: block;
}

/* ARROWS */
.my-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.my-slider .prev { left: 10px; }
.my-slider .next { right: 10px; }

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .my-slider {
        width: 100%;
        height: auto;
        aspect-ratio: 535 / 400;
    }
}
