/* Individual slide styles */
.pw-carousel-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
}

/* Ensure inner content fills the slide */
.pw-carousel-slide > * {
    width: 100%;
}

/* Mobile: Force 100% width for optimal single-slide view with peek */
@media (max-width: 768px) {
    .pw-carousel-slide {
        width: 100%;
    }
}