.gallery {
    padding: 60px 0;
}

.gallery__text {
    margin-bottom: 32px;
}

.gallery__grid {
    display: grid;
    gap: 24px;
}

.gallery__grid--pair {
    grid-template-columns: 1fr 1fr;
}

.gallery__grid--triple {
    grid-template-columns: repeat(3, 1fr);
}

.gallery__btn {
    display: block;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--brand-secondary);
    cursor: pointer;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__grid--single .gallery__btn {
    height: 600px;
    border-radius: 24px;
}

@media (max-width: 1080px) {

    .gallery {
        padding: 30px 0;
    }

    .gallery__text {
        margin-bottom: 24px;
    }

    .gallery__grid {
        gap: 16px;
    }

    .gallery__grid--single .gallery__btn {
        height: 400px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {

    .gallery__grid--pair,
    .gallery__grid--triple {
        grid-template-columns: 1fr;
    }

    .gallery__btn {
        height: 450px;
    }
}
