.os-home-gallery-preview {
    padding: 34px 0 72px;
    background: #ffffff;
}

.os-home-gallery-preview__grid {
    display: grid;
    grid-template-columns: minmax(245px, 1.04fr) repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.os-home-gallery-preview__copy {
    padding: 10px 26px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.os-home-gallery-preview__copy h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 2.55vw, 44px);
    font-weight: 300;
    line-height: 1.06;
}

.os-home-gallery-preview__copy p:not(.os-kicker) {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
}

.os-home-gallery-preview__copy .os-button {
    min-height: 48px;
    padding: 13px 22px;
    font-size: 14px;
}

.os-home-gallery-preview__image {
    min-height: 285px;
    overflow: hidden;
    background: #eef4f6;
}

.os-home-gallery-preview__image img {
    width: 100%;
    height: 100%;
    min-height: 285px;
    object-fit: cover;
}

.os-home-gallery-preview__image:nth-child(2) img {
    object-position: center center;
}

.os-home-gallery-preview__image:nth-child(3) img {
    object-position: 60% center;
}

.os-home-gallery-preview__image:nth-child(4) img {
    object-position: center 30%;
}

.os-home-gallery-preview__image:nth-child(5) img {
    object-position: center center;
}

@media (max-width: 1080px) {
    .os-home-gallery-preview__grid {
        grid-template-columns: minmax(260px, 1fr) repeat(2, 1fr);
    }

    .os-home-gallery-preview__copy {
        grid-row: 1 / span 2;
    }
}

@media (max-width: 700px) {
    .os-home-gallery-preview {
        padding: 60px 0 68px;
    }

    .os-home-gallery-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-home-gallery-preview__copy {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 0 0 20px;
    }

    .os-home-gallery-preview__copy h2 br {
        display: none;
    }

    .os-home-gallery-preview__image,
    .os-home-gallery-preview__image img {
        min-height: 240px;
    }
}

@media (max-width: 460px) {
    .os-home-gallery-preview__grid {
        grid-template-columns: 1fr;
    }
}
