/* Gallery Container */
.wml-staggered-gallery {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

/* Base Card Styling */
.wml-staggered-gallery-item {
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: center;
}

.wml-staggered-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Alternating Sizes: Square and Portrait */

/* 1st, 3rd, 5th... are Squares */
.wml-staggered-gallery-item:nth-child(odd) {
    width: 300px;
    aspect-ratio: 1 / 1;
    transform: rotate(-2deg);
}

/* 2nd, 4th, 6th... are Portraits */
.wml-staggered-gallery-item:nth-child(even) {
    width: 250px;
    aspect-ratio: 3 / 4;
    transform: rotate(2deg);
}

/* Hover effect to straighten them */
.wml-staggered-gallery-item:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

/* Custom Scrollbar for a cleaner look */
.wml-staggered-gallery::-webkit-scrollbar {
    height: 8px;
}
.wml-staggered-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
