
:root {
    --gap: 6px; /* space between images */
    --max-width: 1400px; /* container max width */
}


.gallery {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.gallery img {
    height: 250px;   /* Fixed height */
    width: auto;     /* Width adjusts to maintain aspect ratio */
    display: block;
}