.before-after-gallery {
    width: 100%;
    margin: 60px auto;
    max-width: 1100px;
}

.gallery-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1A1A1A;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-item  {
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100% !important;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: .25s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}
    
/* MOBILE */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
.gdc-option {
    width: 150px;
}
    .gdc-modal-box {
        max-height: 75vh;
        overflow: scroll;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
