.about-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.about-gallery-grid__item {
    padding: 10px;
    align-items: stretch;
}

.about-gallery-grid__item:nth-child(4n+3) {
    width: 68.5%;
}
.about-gallery-grid__item:nth-child(4n+4) {
    width: 31.5%;
}

.about-gallery-grid__item:nth-child(4n+1) {
    width: 31.5%;
}
.about-gallery-grid__item:nth-child(4n+2) {
    width: 68.5%;
}

.about-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-info__row {
    display: flex;
    flex-wrap: wrap;
}

.about__column.about__column--image {
    width: 44.5%;
}

.about__figure {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.about__column.about__column--text {
    width: 55.5%;
    padding-right: 32px;
}

.about__img {
    width: 100%;
    border-radius: 8px;
}

.about__caption {
    position: absolute;
    border-radius: 8px;
    background: var(--belyy);
    padding: 22px;
    left: 15px;
    bottom: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
}

.section.about-info {
    margin-top: 30px;
}


@media (max-width: 960px) {
    .about__column.about__column--text {
        width: 100%;
        padding: 0;
    }

    .about__column.about__column--image {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .section.about-info {
        margin-top: 15px;
    }

    .about__caption {
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        padding: 7px 17px;
        left: 10px;
        bottom: 14px;
    }

    .section.about-gallery {
        padding-left: 0;
        padding-right: 0;
    }

    .about-gallery-grid {
        margin: 0;
        gap: 11px 5px;
    }

    .about-gallery-grid__item {
        padding: 0;
        height: 177px;
    }

    .about-gallery-grid__item:nth-child(4n+3) {
        width: calc(68.5% - 2.5px);
    }
    .about-gallery-grid__item:nth-child(4n+4) {
        width: calc(31.5% - 2.5px);
    }

    .about-gallery-grid__item:nth-child(4n+1) {
        width: calc(31.5% - 2.5px);
    }
    .about-gallery-grid__item:nth-child(4n+2) {
        width: calc(68.5% - 2.5px);
    }

    .about-gallery-grid__item:nth-child(4n+3) img,
    .about-gallery-grid__item:nth-child(4n+1) img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .about-gallery-grid__item:nth-child(4n+1) img,
    .about-gallery-grid__item:nth-child(4n+2) img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}