.m_text_and_image {
    background: #111;
    padding: 100px 48px;
}

.m_text_and_image_container {
    display: flex;
    align-items: center;
    gap: 80px;

    max-width: 1440px;
    margin: 0 auto;
}

.m_text_and_image_content {
    flex: 1;
}

.m_text_and_image_subheadline {
    display: block;
    margin-bottom: 10px;

    color: #e62020;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.m_text_and_image_headline {
    margin: 0;

    color: #fff;

    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.m_text_and_image_headline::after {
    content: "";

    display: block;

    width: 60px;
    height: 3px;

    margin-top: 32px;

    background: #e62020;
}

.m_text_and_image_text {
    margin-top: 28px;

    max-width: 520px;

    color: rgba(255, 255, 255, 0.55);

    font-weight: 300;
    line-height: 1.75;
}

.m_text_and_image_image {
    flex: 1;

    aspect-ratio: 4 / 3;

    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);

    overflow: hidden;
}

.m_text_and_image_image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

/* Mobile */

@media (max-width: 900px) {
    .m_text_and_image {
        padding: 80px 24px;
    }

    .m_text_and_image_container {
        flex-direction: column;
        gap: 48px;
    }

    .m_text_and_image_content,
    .m_text_and_image_image {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .m_text_and_image_headline {
        font-size: 20px;
    }
}