.gallery-section__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
    max-height: 800px;
}

.gallery-section__content-item:nth-of-type(1) {
    display: flex;
    grid-column: 1;
    grid-row: 1;
}

.gallery-section__content-item:nth-of-type(2) {
    display: flex;
    grid-row: 1;
    grid-column: 2;
}

.gallery-section__content-item img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-section__content-item:nth-of-type(3) {
    display: flex;
    grid-column: 3;
    grid-row: 1/3;
    object-fit: cover;
}

.gallery-section__content-item:nth-of-type(4) {
    grid-column: 1/3;
    grid-row: 2;
    display: flex;
}

.gallery-section__content-item {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 4px 4px 8px 0px rgba(20, 20, 20, 0.10) inset;
    border-radius: 5px;
}

section.gallery-section .wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(239, 226, 203, 0.10);
    border-bottom: 1px solid rgba(239, 226, 203, 0.10);
}

@media (max-width: 1000px) {
    .gallery-section__content {
        gap: 25px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-height: none;
    }
    
    .gallery-section__content-item {
        grid-row: auto!important;
        grid-column: auto!important;
    }

    .gallery-section__content {
        gap: 25px;
        grid-template-columns: 1fr;
    }
}