.descr-block__container {
    display: flex;
    margin: 40px 0;
}
.descr-block__title {
    max-width: 750px;
}
.descr-block__descr {
    display: block;
    overflow: hidden;
    height: 200px;
    gap: 0 20px;
    columns: 2; 
    column-gap: 30px;
}
.descr-block__descr > * {
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text-primary);
    margin-bottom: 15px;
    break-inside: auto;
}
.descr-block__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.descr-block__descr.open {
    height: fit-content;
}

@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
    .descr-block__descr {
        columns: 1;
    }
}
@media screen and (max-width: 576px) {}
