section.embed-content {
    padding: 50px 0;
}

.embed-content__row {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: start;
}

/*content side*/
.embed-content__content-side {
    flex: 0 0 calc(40% - 20px);
}

.embed-content__content-side__content-wrapper {
    margin-top: 35px;

    line-height: 1.8;
}

.embed-content__content-side__content-wrapper h3 {
    margin-top: 30px;
    font-size: 20px;
}
.embed-content__content-side__content-wrapper h3:first-child {
    margin-top: 0;
}

.embed-content__content-side__content-wrapper p {
    font-size: 18px;
}

/*embed side*/
.embed-content__embed-side {
    flex: 0 0 calc(60% - 20px);
}

.embed-content__embed-wrapper {
    margin-top: 25px;
}

@media (max-width: 1200px) {
    .embed-content__row {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: stretch;
    }

    .embed-content__title {
        text-align: center;
    }

    /*content side*/
    .embed-content__content-side {
        flex: 0 0 100%;
    }
    .embed-content__content-side__content-wrapper {
        text-align: center;
    }

    /*embed side*/
    .embed-content__embed-side {
        flex: 0 0 100%;
    }
}