/* ==========================================================
   CLUB TICKETS NEXT MATCH
========================================================== */

.club-next-match{
    background:transparent;
    border:1px solid #E5E5E5;
    border-radius:24px;
    overflow:hidden;
}

.club-promo{
    display:flex;
    justify-content:center;
    padding:20px 20px 0;
}

.club-promo img{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
    border-radius:18px;
}

.club-next-content{
    padding:28px;
}

.club-comp{
    color:#C8A63A;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:8px;
    font-family:'Open Sans',sans-serif;
}

.club-jornada{
    font-family:'Benzin',sans-serif;
    font-size:28px;
    color:#111;
    margin-bottom:22px;
    line-height:1.1;
}

.club-teams{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:18px;
    margin-bottom:24px;
}

.club-team{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:10px;
}

.club-team img{
    width:72px;
    height:72px;
    object-fit:contain;
}

.club-team strong{
    font-family:'Open Sans',sans-serif;
    font-size:16px;
    color:#111;
}

.club-vs{
    font-family:'Benzin',sans-serif;
    font-size:24px;
    color:#C8A63A;
}

.club-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    padding-top:18px;
    border-top:1px solid #E5E5E5;
}

.club-fecha{
    color:#666;
    font-size:15px;
    font-family:'Open Sans',sans-serif;
}

.club-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    font-family:'Open Sans',sans-serif;
    transition:.2s;
}

.club-btn-buy{
    background:#C8A63A;
    color:#000;
}

.club-btn-buy:hover{
    transform:translateY(-1px);
}

.club-btn-disabled{
    background:#F3F3F3;
    border:1px solid #E5E5E5;
    color:#999;
    cursor:not-allowed;
    pointer-events:none;
}

.club-loading{
    padding:28px;
    color:#777;
    font-family:'Open Sans',sans-serif;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:767px){

.club-next-content{
    padding:10px;
}

.club-teams{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.club-team:first-child{
    order:1;
}

.club-vs{
    order:2;
}

.club-team:last-child{
    order:3;
}

.club-footer{
    flex-direction:column;
    align-items:flex-start;
}

.club-btn{
    width:100%;
}

}