/* ===================================================
   BTM MATCH SLIDER
=================================================== */

.btm-slider-wrapper{
    position:relative;
    max-width:1400px;
    margin:40px auto;
    padding:0 55px;
    overflow:hidden;
}

.btm-slider{
    display:flex;
    gap:20px;
    overflow:hidden;
    scroll-behavior:smooth;
}

/* Card */

.btm-slider-card{
    flex:0 0 360px;
    width:360px;
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    border:1px solid #e7e7e7;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:.25s;
}

.btm-slider-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* Header */

.btm-slider-header{
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    font-size:14px;
    font-weight:700;
}

/* Body */

.btm-slider-body{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:25px 18px;
}

.btm-fixture-team{
    width:40%;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.btm-fixture-team img{
    width:72px;
    height:72px;
    object-fit:contain;
    margin-bottom:10px;
}

.btm-fixture-name{
    font-size:16px;
    font-weight:700;
    line-height:1.3;
}

.btm-fixture-vs{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f3f4f6;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:15px;
    flex-shrink:0;
}

/* Footer */

.btm-slider-footer{
    border-top:1px solid #ececec;
    padding:16px 18px;
}

.btm-slider-tournament{
    font-size:15px;
    font-weight:700;
    color:#111827;
}

.btm-slider-venue{
    margin-top:5px;
    font-size:13px;
    color:#6b7280;
}

/* Buttons */

.btm-slider-prev,
.btm-slider-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#222;
    cursor:pointer;
    font-size:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
    transition:.25s;
    z-index:5;
}

.btm-slider-prev{
    left:0;
}

.btm-slider-next{
    right:0;
}

.btm-slider-prev:hover,
.btm-slider-next:hover{
    background:#0d6efd;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .btm-slider-wrapper{
        padding:0 10px;
        margin:20px auto;
    }

    .btm-slider-card{
        flex:0 0 290px;
        width:290px;
    }

    .btm-slider-body{
        padding:18px 14px;
    }

    .btm-fixture-team img{
        width:56px;
        height:56px;
    }

    .btm-fixture-name{
        font-size:14px;
    }

    .btm-fixture-vs{
        width:40px;
        height:40px;
        font-size:13px;
    }

    .btm-slider-prev,
    .btm-slider-next{
        display:none;
    }
}

.btm-slider{
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.btm-slider-card{
    scroll-snap-align:start;
}
.btm-fixture-card{
    text-decoration:none;
    color:inherit;
}

.btm-fixture-card:hover{
    color:inherit;
}

.btm-slider-wrapper > p,
.btm-slider > p{
    display:none !important;
}