.m_cta {
    position: relative;

    background: #0c0c0c;

    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);

    overflow: hidden;

    padding: 80px 48px;
}

.m_cta::before {
    content: '';

    position: absolute;

    top: 0;
    right: 0;

    width: 50%;
    height: 100%;

    background: linear-gradient(
            270deg,
            rgba(230,32,32,.14) 0%,
            rgba(230,32,32,.08) 40%,
            rgba(230,32,32,0) 100%
    );

    pointer-events: none;
}

.m_cta_container {
    max-width: 1440px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 64px;

    position: relative;
    z-index: 2;
}

.m_cta_content,
.m_cta_link {
    flex: 0 0 calc(50% - 32px);
}

.m_cta_subheadline {
    display: block;

    margin-bottom: 10px;

    color: #e62020;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .3em;
    text-transform: uppercase;
}

.m_cta_headline {
    margin: 0;

    color: #fff;

    font-weight: 900;

    text-transform: uppercase;

    line-height: .95;
}

.m_cta_text {
    margin-top: 16px;

    max-width: 420px;

    color: rgba(255,255,255,.5);

    font-size: 15px;
    line-height: 1.8;
}

.m_cta_link {
    position: relative;

    padding-left: 64px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.m_cta_link a.button.primary {
    padding: 20px 56px 22px 56px;
}

.m_cta_link::before {
    content: '';

    position: absolute;

    left: 0;
    top: 50%;

    width: 1px;
    height: 190px;

    background: rgba(255,255,255,.1);

    transform: translateY(-50%);
}

.m_cta_background_word {
    position: absolute;

    top: 50%;
    right: -30px;

    transform: translateY(-50%);

    z-index: 1;

    pointer-events: none;
}

.m_cta_background_word span {
    display: block;

    font-size: clamp(120px, 16vw, 220px);
    font-weight: 900;

    line-height: 1;

    white-space: nowrap;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.04);
}

/* Tablet */

@media (max-width: 992px) {

    .m_cta_container {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .m_cta_content,
    .m_cta_link {
        flex: 0 0 100%;
        width: 100%;
    }

    .m_cta_link {
        padding-left: 0;
        padding-top: 32px;

        justify-content: flex-start;
    }

    .m_cta_link::before {
        width: 100px;
        height: 1px;

        top: 0;
        left: 0;

        transform: none;
    }

    .m_cta_background_word {
        right: -80px;
    }

    .m_cta::before {
        width: 100%;
        height: 40%;

        top: auto;
        bottom: 0;

        background: linear-gradient(
                180deg,
                rgba(230,32,32,0) 0%,
                rgba(230,32,32,.08) 60%,
                rgba(230,32,32,.14) 100%
        );
    }
}

/* Mobile */

@media (max-width: 767px) {

    .m_cta {
        padding: 60px 24px;
    }

    .m_cta_text {
        max-width: 100%;
    }

    .m_cta_background_word {
        display: none;
    }
}