/* ============================================
   OUTDOOR / HERO BLOCK
   ============================================ */

.outdoor {
    position: relative;
    padding: 80px 0;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #242420;
    background-color: #F0DB7B;
}

.outdoor .container {
    padding: 0 20px;
    display: flex;
    gap: max(30px, 1vw);
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 50vw;
}

.outdoor .container > * {
    flex: 1;
}

.outdoor strong {
    font-weight: 700;
}

.outdoor__title {
    font-family: inherit;
    font-size: 6.4vw;
    font-weight: 700;
    line-height: min(100px, 6.667vw);
    margin-bottom: 24px;
    max-width: 620px;
}

.outdoor__desc {
    font-size: 18px;
    line-height: 1.5;
    max-width: 620px;
    margin: 0;
}

.outdoor__desc p {
    margin-bottom: 1em;
}

.outdoor__desc--mobile {
    display: none;
}

/* Мобильная версия (до 768px) */
@media screen and (max-width: 768px) {
    .outdoor {
        padding: 50px 0;
        text-align: left;
    }

    .outdoor .container {
        display: block;
        margin-bottom: 100vw;
    }

    .outdoor__title {
        font-size: 39px;
        margin-bottom: 20px;
        line-height: 46px;
    }

    .outdoor__desc {
        font-size: 18px;
        max-width: 100%;
    }

    .outdoor__desc--desktop {
        display: none;
    }

    .outdoor__desc--mobile {
        display: block;

    }
}

/* Планшеты (768px – 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .outdoor {
        padding: 70px 0;
    }
}

/* Десктоп выше 1200px */
@media screen and (min-width: 1200px) {
    .outdoor {
        padding: 100px 0;
    }

    .outdoor__title {
        font-size: min(100px, 6.4vw);
    }

    .outdoor__desc {
        font-size: 20px;
    }
}