/* ===========================
   NEWS SECTION
=========================== */

.news {
    padding: 65px 0;
}

.news__title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #252B42;
}

/* Слайдер */
.news__slider {
    width: 100%;
    position: relative;
}

/* Фиксированная высота слайда */
.news__slider .swiper-slide {
    height: 180px;
    display: flex;
    opacity: 0 !important;
    transition: opacity .6s ease !important;
    pointer-events: none;
}

.news__slider .swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
}

/* ===========================
   CARD
=========================== */

.news__card {
    display: flex;
    gap: 25px;
    background: #f2f2f2;
    border-radius: 2px;
    padding: 5px 20px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    align-items: center;
    box-shadow: 0 13px 19px rgba(0,0,0,0.07);

}

/* Картинка */
.news__image {
    flex: 0 0 220px;
    height: 140px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 13px 19px rgba(0,0,0,0.07);
}

.news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Контент */
.news__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news__date {
    font-size: 18px;
    color: #E76828;
    margin-bottom: 10px;
}

.news__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #333;
    
}

/* ===========================
   PROGRESS BAR
=========================== */

.news__progress {
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

.news__progress-bar {
    width: 0%;
    height: 100%;
    background: #E76828;
    transition: width linear;
}

/* ===========================
   ADAPTIVE
=========================== */

@media (max-width: 768px) {
    .news {
    padding: 35px 0;
}
    .news__slider .swiper-slide {
        height: auto;
    }

    .news__card {
        flex-direction: column;
        padding: 15px;
        height: auto;
    }

    .news__image {
        width: 100%;
        height: 200px;
    }

    .news__text {
        font-size: 18px;
    }
    .news__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}
}
