.feature-row__container {
    width: 100%;
}

.feature-row__html {
    max-width: 100%;
    width: 50%;
    height: auto;
}

.feature-row__html .embed-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* This creates the aspect ratio */
    height: 0; /* Collapse the div and let padding-top give it height */
}

.feature-row__html .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-row__text {
    max-width: 100%;
    width: 50%;
}

.feature-row__text--inner > * {
    margin-bottom: 15px;
}

.feature-row__text--inner > :last-child {
    margin-bottom: 0 !important;
}

.feature-row__text--inner .title-bar > :last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .feature-row__html, .feature-row__text {
        width: 100%;
    }

    .feature-row__text--inner > :first-child {
        margin-top: 15px;
    }

    .feature-row__btn:not(:first-child) {
        margin-top: 15px !important;
    }

    .feature-row {
        display: block; /* Stack the elements vertically on smaller screens */
    }
}

@media screen and (min-width: 768px) {
    .feature-row {
        display: flex;
        align-items: flex-start; /* Align items to the start */
    }

    .feature-row.feature-row--image-right .feature-row__html {
        order: 2;
    }

    .feature-row__btn {
        margin-top: 0 !important;
    }

    .feature-row__btn:not(:first-child) {
        margin-top: 0 !important;
    }
}
