.gallery .gallery-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.gallery .gallery-wrap img {
    width: 100%;
    aspect-ratio: 2/1.5;
    border-radius: 4px;
}

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .gallery .gallery-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .gallery .gallery-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .gallery .gallery-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .gallery .gallery-wrap {
        grid-template-columns: repeat(5, 1fr);
    }
}

