.hero {
    position: relative;
    width: 100%;
    /* margin-left: calc((1440px - 100vw) / 2); */
    /* align-self: flex-start; */
    overflow: hidden;
    padding-bottom: 67px;
    flex-shrink: 0;
    padding-top: 100px;
}

.hero::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    z-index: -5;
    background: linear-gradient(109.84deg, #C8C5C0 0%, #B8B5B0 40%, #A8A5A0 100%);
}

.hero__inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    padding-left: 48px;
    padding-right: 34px;
}

.hero__bg img {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__strip {
    position: relative;
    left: 0;
    height: fit-content;
    min-width: 300px;
    padding: 32px 45px;
    padding-left: 0;
}

.hero__strip::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100vw;
    background: var(--black);
    display: block;
    z-index: -1;
}

/* область фото правая нижняя */
.hero__photo {
    /* position: absolute; */
    /* left: 380px; */
    /* top: 338px; */
    width: 100%;
    height: 331px;
    background: #f2f1ef;
    overflow: hidden;
    grid-column: 2/4;
}

.hero__photo img {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* заголовок */
.hero__heading {
    /* position: absolute; */
    left: 48px;
    top: 186px;
    /* transform: translateY(-50%); */
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 113px;
    line-height: 99.85px;
    letter-spacing: -3.4px;
    text-transform: uppercase;
    color: var(--black);
    /* max-width: 720px; */
}

.hero__heading span { color: var(--red); }

/* список событий — внутри стрипа, центрируется по вертикали */
.hero__list {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 19.2px;
    letter-spacing: 0.12px;
    color: var(--white);
}

.hero__list li {
    list-style: disc;
    margin-left: 27px;
    margin-bottom: 15px;
}

.hero__list li:last-child { margin-bottom: 0; }

/* CTA блок */
.hero__cta {
    /* position: absolute; */
    bottom: 67px;
    right: 34px;
    width: 306px;
    display: flex;
    flex-direction: column;
    gap: 24.875px;
    margin-top: auto;
    min-width: 306px;
}

.hero__cta-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24.75px;
    color: var(--black);
}

.hero__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 16px 40px;
    width: 100%;
    transition: background 0.2s ease;
}

.hero__cta-btn span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
}

.hero__cta-btn:hover { background: #2a2a2a; }

.hero__inner-wrapper {
    margin-top: 38px;
}

.hero__heading.mobile {
    display: none;
}

