.news-info-promo {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

/* Przywrócenie layoutu utraconego przy zmianie duplikatu id="news-info"
   na unikalne ID - te właściwości siedziały w sklep.css pod selektorem
   #news-info (ID), więc zniknęły gdy zmieniliśmy news-info-delivery/-2. */
.news-info,
.news-info-2 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.news-info h3,
.news-info-2 h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.news-info::after,
.news-info-2::after,
.news-info-promo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, #fff, transparent);
}

.news-info #card-info {
    margin: 0 0 3rem 0;
}

.news-info #card-info img {
    border-radius: 2rem;
    width: 100%;
    box-shadow: 12px 12px 20px -11px #fe5721;
}

.news-info-promo h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.promoActions {
    width: 100%;
    max-width: 900px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.promoActions .swiper-wrapper {
    display: flex;
}

.promoActions .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.promoActions .swiper-slide img {
    width: 100%;
    border-radius: 1.2rem;
    display: block;
}

.promoActions .swiper-pagination {
    position: relative;
    margin-top: 12px;
    text-align: center;
}

@media screen and (min-width: 811px) {
    .promoActions .swiper-wrapper {
        flex-direction: column;
        gap: 16px;
        transform: none !important;
    }
    .promoActions .swiper-slide {
        width: 100% !important;
    }
    .promoActions .swiper-pagination,
    .promoActions .swiper-button-prev,
    .promoActions .swiper-button-next {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promoActions .swiper-wrapper {
        transition: none !important;
    }
}
