.mv-so-video {
    background: var(--mv-so-video-bg, #f5f7fb);
    border-radius: 34px;
    padding: 64px 32px;
    overflow: hidden;
}

.mv-so-video__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mv-so-video__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.mv-so-video__media-column,
.mv-so-video__content-column {
    min-width: 0;
}

.mv-so-video__video-box {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 9 / 16;
    min-height: 0;
    padding: 0;
    margin: 0 auto;
    border-radius: 30px;
    border: solid 1px var(--mv-so-video-box-border, #bcbcbc);
    background: var(--mv-so-video-box-bg, #fff);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-so-video__video-box.has-video-trigger {
    cursor: pointer;
}

.mv-so-video__video-box.is-playing {
    padding: 0;
    background: #000000;
}

.mv-so-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.mv-so-video__poster-placeholder {
    position: absolute;
    inset: 0;
    background: #f0f4f9;
}

.mv-so-video__player-wrap {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: #000000;
}

.mv-so-video__player-wrap[hidden] {
    display: none;
}

.mv-so-video__player-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.mv-so-video__play-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mv-so-video__play-button,
.mv-so-video__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-so-video__play-button {
    border: 0;
    width: 160px;
    height: 160px;
    min-height: 160px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--mv-so-video-play-bg, #ff7a1a) !important;
    box-shadow: none;
}

.mv-so-video__play-icon {
    width: 0;
    height: 0;
    margin-left: 14px;
    border-top: 56px solid transparent;
    border-bottom: 56px solid transparent;
    border-left: 92px solid currentColor;
}

.mv-so-video__play-button:hover,
.mv-so-video__cta-button:hover {
    transform: translateY(-2px);
}

.mv-so-video__play-button.is-disabled,
.mv-so-video__cta-button.is-disabled {
    cursor: default;
    opacity: 0.8;
    pointer-events: none;
}

.mv-so-video__caption {
    width: min(100%, 420px);
    margin: 28px auto 0;
    color: var(--mv-so-video-caption-color, #023e84) !important;
    font-size: var(--mv-so-video-caption-size, 24px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.mv-so-video__headline {
    margin: 0 0 32px;
    color: var(--mv-so-video-headline-color, #023e84) !important;
    font-family: Cairo, sans-serif;
    font-size: var(--mv-so-video-headline-size, 46px);
    font-weight: 700;
    line-height: 1.1;
}

.mv-so-video__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mv-so-video__step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.mv-so-video__step-icon {
    width: 62px;
    height: 62px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mv-so-video__step-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.mv-so-video__step-icon-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(2, 62, 132, 0.12);
}

.mv-so-video__step-title {
    margin: 0 0 8px;
    color: #023e84;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.mv-so-video__step-text {
    margin: 0;
    color: #89a5c4;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.mv-so-video__cta-wrap {
    margin-top: 40px;
}

.mv-so-video__cta-button {
    background: var(--mv-so-video-button-bg, #f15a24);
    color: var(--mv-so-video-button-color, #ffffff) !important;
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.2);
}
.mv-so-video__cta-wrap a{
    padding:15px 20px
}

@media (max-width: 1024px) {
    .mv-so-video__layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mv-so-video {
        padding: 40px 20px;
        border-radius: 24px;
    }
.mv-so-video__cta-wrap a{
    width: 100%;
    text-align: center;
}
    .mv-so-video__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mv-so-video__content-column {
        order: 1;
    }

    .mv-so-video__media-column {
        order: 2;
    }

    .mv-so-video__video-box {
        width: min(100%, 360px);
        border-radius: 24px;
    }

    .mv-so-video__play-button {
        width: 110px;
        height: 110px;
        min-height: 110px;
    }

    .mv-so-video__play-icon {
        margin-left: 10px;
        border-top: 36px solid transparent;
        border-bottom: 36px solid transparent;
        border-left: 58px solid currentColor;
    }

    .mv-so-video__headline {
        font-size: var(--mv-so-video-headline-mobile-size, 34px);
    }

    .mv-so-video__caption {
        width: min(100%, 360px);
        font-size: 20px;
    }

    .mv-so-video__step {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 16px;
    }

    .mv-so-video__step-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .mv-so-video__step-title {
        font-size: 24px;
    }

    .mv-so-video__step-text {
        font-size: 18px;
    }
}

