/* ==================================================
   BLOK: Doporučené bannery
================================================== */

.catCards-bg_3 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;

    background:
        linear-gradient(
            to bottom,
            #FFF 0,
            #FFF 20px,
            #ffebde 20px,
            #ffebde 100%
        );
}


.catCards-bg_3 .trailPicks {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 55px;
}


/* NADPIS */
.catCards-bg_3 .trailPicks__heading {
    text-align: center;
    margin: 0 0 40px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}


/* DESKTOP ROZLOŽENÍ */
.catCards-bg_3 .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.catCards-bg_3 .trailPicks__card {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: transform .25s ease,
                box-shadow .25s ease;
}


.catCards-bg_3 .trailPicks__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,.12);
}


.catCards-bg_3 .trailPicks__card img {
    display: block;
    width: 100%;
    height: auto;
}


/* ==========================
   MOBIL
========================== */

@media (max-width: 768px) {

    .catCards-bg_3 {
        background: #ffebde;
    }


    .catCards-bg_3 .trailPicks {
        padding: 40px 15px 40px;
    }


    .catCards-bg_3 .trailPicks__heading {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }


    .catCards-bg_3 .swiper-wrapper {
        display: flex;
        gap: 0;
    }


    .catCards-bg_3 .trailPicks__card {
        flex: 0 0 100%;
        width: 100%;
    }

}