.hero__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero__content {
    flex: 0 0 auto;
    width: 50%;
    gap: 3rem;
}

.hero__pretitle {
    padding-left: 1rem;
    border-left: 0.3rem solid var(--color-red);
    font-size: 1.4rem;
    margin-bottom: 4rem;
}

.hero__text {
    font-weight: 500;
}

@media screen and (max-width: 767.9px) {
    .hero__inner {
        flex-direction: column;
    } 

    .hero__image {
        order: -1;
    }

    .hero__content {
        width: 100%;
    }
}