.hero-new {
    padding: 40px 0 80px;
}

.hero-new__card {
    min-height: 430px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 70px rgba(87, 62, 35, 0.12);
}

.hero-new__content {
    padding: 58px 42px;
    position: relative;
    z-index: 2;
}

.hero-new__label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3d7a7;
    color: #8a5a22;
    font-size: 14px;
    font-weight: 700;
}

.hero-new__title {
    max-width: 480px;
    margin: 0 0 22px;
    color: #30333a;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 900;
}

.hero-new__text {
    max-width: 430px;
    margin: 0 0 28px;
    color: #56606a;
    font-size: 18px;
    line-height: 1.45;
}

.hero-new__text strong {
    color: #b97823;
    font-weight: 900;
}

.hero-new__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 52px;
    padding: 0 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d28b31, #b97722);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(185, 119, 34, 0.28);
}

.hero-new__note {
    margin: 70px 0 0;
    color: #6d6f75;
    font-size: 15px;
}

.hero-new__slider {
    width: 100%;
    height: 430px;
    border-radius: 26px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
}

.hero-new__slider .swiper-slide {
    width: 100%;
    height: 430px;
}

.hero-new__slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-new {
        padding: 24px 0 50px;
    }

    .hero-new__card {
        grid-template-columns: 1fr;
        border-radius: 26px;
        -webkit-border-radius: 26px;
        -moz-border-radius: 26px;
        -ms-border-radius: 26px;
        -o-border-radius: 26px;
        padding: 30px;
}

    .hero-new__content {
        padding: 34px 24px 26px;
    }

    .hero-new__title {
        font-size: 34px;
    }

    .hero-new__text {
        font-size: 16px;
    }

    .hero-new__note {
        margin-top: 32px;
    }

    .hero-new__slider {
        height: 280px;
    }

    .hero-new__slider .swiper-slide {
        height: 280px;
    }
}