
.vlog {
    padding: 40px 0 40px 0;
}
.vlog__wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1180px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.vlog__head {
    max-width: 800px;
}
.vlog__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #0f1011;
}
.vlog__descr {
    margin-top: 10px;
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
}
.vlog__link {
    flex: 0 0 auto;
    margin-block: 20px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #909cf8;
    align-self: center;
}
.vlog__link > span {
    flex: 0 0 auto;
}
.vlog__link > img {
    margin-left: 20px;
    width: 22px;
    height: 22px;
}
.vlog__body {
    margin-top: 50px;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.vlog__video {
    flex: 0 0 auto;
    width: calc(50% - 10px);
    aspect-ratio: 2/1.125;
}
.vlog__video > iframe {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 992px) {
    .vlog__title {
        font-size: 22px;
    }
    .vlog__descr {
        font-size: 18px;
    }
    .vlog__link {
        font-size: 18px;
        width: 100%;
        margin-bottom: 0;
    }
    .vlog__link > img {
        width: 18px;
        height: 18px;
    }
    .vlog__body {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .vlog {
        padding: 30px 0 30px 0;
    }
    .vlog__link {
        order: 1;
        margin-top: 35px;
    }
    .vlog__body {
        margin-top: 0px;
        flex-direction: column;
    }
    .vlog__video {
        width: 100%;
        margin-top: 20px;
    }
}

.bg__vlog__gray {
    background-color: #f6f6f6;
}

.bg__vlog__gray-mb-minus {
    background-color: #f6f6f6;
    margin-bottom: -80px;
}
@media only screen and (max-width: 992px) {
    .bg__vlog__gray-mb-minus {
        margin-bottom: -60px;
    }
}