/* ION Heat — About Hero */

.about-hero {
    background: var(--fon-light);
    overflow: hidden;
}

.about-hero .container {
    flex-direction: row;
    gap: 5.5vw;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: var(--section-padding-x);
    padding-right: 0;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    flex-shrink: 0;
    max-width: 727px;
    width: 45%;
}

.about-hero__title {
    color: var(--text);
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 130%;
    font-weight: 300;
    align-self: stretch;
}

.about-hero__subtitle {
    color: var(--text);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 130%;
    font-weight: 500;
    align-self: stretch;
}

.about-hero__desc {
    color: var(--text);
    text-align: left;
    font-family: var(--text1-font-family);
    font-size: var(--text1-font-size);
    line-height: var(--text1-line-height);
    font-weight: var(--text1-font-weight);
    align-self: stretch;
}

.about-hero__img {
    flex-shrink: 0;
    width: 937px;
    max-width: 55%;
    height: 773px;
    object-fit: cover;
    display: block;
    margin-left: auto;
}

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .about-hero .container {
        flex-direction: column;
        gap: 40px;
        padding-right: var(--section-padding-x);
        padding-top: 60px;
        padding-bottom: 0;
    }

    .about-hero__content {
        width: 100%;
        max-width: 100%;
    }

    .about-hero__img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 937 / 773;
    }
}