/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Gallery Item Container */
.gallery-item {
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: calc(33.33% - 20px);
    box-sizing: border-box;
}

/* Image Wrapper with fixed aspect ratio (e.g., 4:3) */
.gallery-item .img-container {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 4/3 * 100% = 133.33% gives a 3:4 ratio */
}

/* The image fills its container and is cropped as needed */
.gallery-item .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 750px) {
    .gallery-item {
      width: calc(50% - 20px);
    }
}

@media (max-width: 500px) {
    .gallery-item {
      width: 100%;
    }
}