.video_background_intro_actions {
    position: relative;
    width: 100%;
    aspect-ratio: 1180 / 662;
    min-height: 662px;
    height: auto;
    margin: 32px auto;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
}

.training-page {
    .video_background_intro_actions {
        aspect-ratio: 1180 / 500;
        min-height: auto;
    }

    .video_background_intro_actions .video_background_intro_actions__video {
        object-position: top;
    }
}

.video_background_intro_actions .video_background_intro_actions__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video_background_intro_actions .video_background_intro_actions__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video_background_intro_actions .video_background_intro_actions__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.video_background_intro_actions .video_background_intro_actions__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 48px 32px;
    text-align: center;
    color: #FFFFFF;
}

.video_background_intro_actions .video_background_intro_actions__title {
    width: 80%;
    margin: 0 auto;
    font-family: Canela Trial, serif !important;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: white;
}

.video_background_intro_actions .video_background_intro_actions__description {
    width: 60%;
    margin: 26px auto 0 auto;
    font-weight: 400;
    font-size: 20px;
    line-height: 2.2rem;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFFB2;
}

.video_background_intro_actions .video_background_intro_actions__description .strong {
    font-weight: 700;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFFE5;
}

.video_background_intro_actions .video_background_intro_actions__actions {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.video_background_intro_actions .video_background_intro_actions__button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.video_background_intro_actions .video_background_intro_actions__button--primary {
    background: #EF4444;
    color: #FFFFFF;
}

.video_background_intro_actions .video_background_intro_actions__button--secondary {
    background: white;
    color: #1F2937;
}

@media (max-width: 767px) {
    .video_background_intro_actions .video_background_intro_actions__actions {
        width: 100%;
    }

    .video_background_intro_actions__button--primary {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
        display: block !important;
    }

    .video_background_intro_actions .video_background_intro_actions__title {
        width: 100%;
    }

    .video_background_intro_actions .video_background_intro_actions__description {
        width: 100%;
    }
}