/* Gallery Container */
.wml-staggered-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: overridden by Bricks per breakpoint */
    align-items: center;
    gap: 20px;
    padding: 40px;
    width: 100%;
    overflow: hidden; /* No horizontal scroll */
    box-sizing: border-box;
}

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

.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) {
    aspect-ratio: 1 / 1;
    transform: rotate(-2deg);
}

/* 2nd, 4th, 6th... are Portraits */
.wml-staggered-gallery-item:nth-child(even) {
    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;
}
