/* ===========================
THE CINE BULLETIN
MOVIE REVIEW SLIDER
=========================== */

.tcb-movie-section{

    background:#111;
    border-radius:18px;
    padding:30px;
    margin:30px 0;

}

.tcb-container{

    max-width:1400px;
    margin:auto;

}

.tcb-heading{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;

}

.tcb-heading h2{

    color:#fff;
    font-size:40px;
    margin:0;
    font-weight:800;

}

.tcb-heading a{

    color:#F5C542;
    text-decoration:none;
    font-weight:700;

}

/* Slider */

.tcbSwiper{

    padding:10px 5px 50px;

}

/* Card */

.tcb-card{

    background:#1a1a1a;
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
    cursor:pointer;

}

.tcb-card:hover{

    transform:translateY(-8px);

}

/* Poster */

.tcb-card img{

    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
    display:block;
    transition:.35s;

}

.tcb-card:hover img{

    transform:scale(1.05);

}

/* Stars */

.tcb-stars{

    text-align:center;
    margin-top:12px;

}

.tcb-stars i{

    color:#FFC107;
    font-size:15px;

}

/* Movie Name */

.tcb-card h3{

    text-align:center;
    padding:10px;
    margin:0;
    font-size:18px;

}

.tcb-card h3 a{

    color:#fff;
    text-decoration:none;

}

/* Arrows */

.swiper-button-next,
.swiper-button-prev{

    color:#F5C542;

}

.swiper-button-next:after,
.swiper-button-prev:after{

    font-size:28px;

}

/* Pagination */

.swiper-pagination-bullet{

    background:#fff;
    opacity:.5;

}

.swiper-pagination-bullet-active{

    background:#F5C542;
    opacity:1;

}

/* Responsive */

@media(max-width:991px){

.tcb-heading h2{

font-size:32px;

}

}

@media(max-width:768px){

.tcb-heading{

flex-direction:column;
gap:12px;

}

.tcb-heading h2{

font-size:26px;

}

}