.hero-info__inner {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.hero-info__media,
.hero-info__content {
    flex: 1;
}

.hero-info__media {
    box-shadow: 0 0 3.5rem 0 rgb(0 0 0 / 15%);
    overflow: hidden;
}

.hero-info__image {
    width: 100%;
    aspect-ratio: 600/360;
}

.hero-info__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: #fff;
}

.hero-info__number {
    font-weight: 500;
    font-size: 2.4rem;
}

.hero-info__number-symbol {
    color: var(--color-red);
}

.hero-info__subtitle {
    font-size: 1.4rem;
}

.hero-info__content {
    gap: 3rem;
}

.hero-info__title strong {
    font-weight: inherit;
    color: var(--color-red);
}

.hero-info__text {
    font-weight: 500;
}

@media screen and (max-width: 767.9px) {
    .hero-info__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-info__media, 
    .hero-info__content {
        width: 100%;
    }

    .hero-info__media {
        margin-bottom: 2rem;
    }

    .hero-info__content {
        display: contents;
    }

    .hero-info .breadcrumbs {
        order: -1;
    }
}