/* --- Страница «О проекте» --- */
.hero--about {
    background-image: none;
    background: var(--color-bg);
    align-items: stretch;
    padding-block: 8rem 3rem!important;
    min-height: auto!important;
    flex-direction: column;
    gap: 2rem;
}

.hero--about::before {
    display: none;
}

.hero--about .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: stretch;
    position: relative;
}

.hero__about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    text-align: left;
}


.hero__about-bg {
    position: relative;
    width: 94vw;
    min-height: 75vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.hero__about-bg_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.hero--about .hero__title--about {
    font-size: 95px;
    color: transparent;
    background: linear-gradient(0.281turn,
            rgba(241, 90, 34, 1) 0%,
            rgba(247, 148, 30, 1) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    margin-inline: 0;
    max-width: none;
    opacity: 1;
    transform: none;
    animation: none;
    margin: 0;
    text-wrap: nowrap;
}

.hero--about .hero__subtitle--about {
    line-height: 1.2;
    max-width: 70%;
    font-size: var(--text-2xl);
    color: var(--color-text);
    text-align: left;
    text-shadow: none;
    margin-inline: 0;
    opacity: 1;
    transform: none;
    animation: none;
}

.about-content {
    padding-block: var(--space-3xl);
    background: var(--color-bg);
}

.about-content__inner {
    max-width: 48rem;
}

.about-content__lead {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-strong);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-normal);
}

.about-content__text {
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-normal);
}

.about-content__back {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
    transition: color var(--transition);
}

.about-content__back:hover {
    color: var(--color-accent-hover);
}

@media screen and (max-width: 1200px) {
    .hero__about-content {
        gap: 1.25rem;
    }

    .hero--about .hero__title--about {
        font-size: 64px;
    }

    .hero--about .hero__subtitle--about {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .hero__about-bg {
        width: 96%;
        min-height: 65vh;
    }
}

@media screen and (max-width: 1024px) {

    .hero--about .hero__title--about {
        font-size: 54px;
    }
}

@media screen and (max-width: 768px) {
    .hero--about {
        padding-block: 4rem!important;

    }
    .hero--about .container {
        padding: 0 1.2rem;
    }
    .hero__about-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 0;
    }
    .hero--about .hero__title--about {
        font-size: 2.6rem;
    }   
    .hero--about .hero__subtitle--about {
        line-height: 1.2;
        font-size: 14px;
        width: 100%;
        max-width: 90%;
    }
    .footer.reveal {
        opacity: 1;
        transform: none;
    }
}