/* Gallery Container */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 30px;
}

/* Gallery Items */

.gallery-item {
    flex: 1 1 calc(25% - 10px);
    max-width: calc(25% - 10px);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */

@media (max-width: 600px) {

    .gallery-item {
        flex: 1 1 calc(90% - 10px);
        max-width: calc(90% - 10px);
    }
}