.cms-gallery {
    width: 100%;
    padding: 80px 0;
}

.cms-gallery__grid {
    --gallery-columns: 3;
    display: grid;
    grid-template-columns: repeat(var(--gallery-columns), minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.cms-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f5f5;
}

.cms-gallery__item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.cms-gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cms-gallery__item:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .cms-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cms-gallery {
        padding: 56px 0;
    }

    .cms-gallery__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.cms-gallery__caption {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}