/* ==========================================================
   HERO HOME · CLUB CONNECT
   Copia del Loop de Liga El Dorado
========================================================== */

.club-home-hero{
    position:relative;
    overflow:hidden;
}

.club-home-hero .swiper-wrapper{
    display:flex;
    align-items:flex-start;
}

.club-home-hero .swiper-slide{
    box-sizing:border-box;
    flex-shrink:0;
}

/* ---------- Tarjeta ---------- */

.partido-card{

    display:flex;
    flex-direction:column;

    min-height:220px;

    justify-content:flex-start;
    align-items:flex-start;

    gap:0;

    padding:10px;

    background:#000;

    cursor:pointer;

    transition:transform .2s ease,
               background-color .2s ease;

}

.partido-card:hover{

    transform:translateY(-4px);
    background:#1A1A1A77;

}

/* ---------- Header ---------- */

.partido-card-top{

    display:flex;
    flex-direction:column;

    gap:4px;

    width:100%;

    padding-bottom:10px;

}

.jornada{

    font-family:"Benzin",sans-serif;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;

    color:#FFF;

    line-height:1;

}

.partido-card-info{

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    padding-bottom:10px;

    border-bottom:1px solid rgba(255,255,255,.18);

}

.competencia{

    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:400;

    color:#BEBEBE;

}

.estado{

    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:700;

    color:#FFF;

}

/* ---------- Equipos ---------- */

.partido-card-teams{

    display:flex;
    flex-direction:column;

    gap:10px;

    margin-top:20px;

    padding-left:10px;

    border-left:1px solid rgba(255,255,255,.18);

    width:100%;

}

.team-row{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    flex-wrap:nowrap;

    width:100%;

}

.team-row > div:first-child,
.team-row > a:first-child{

    display:flex;
    align-items:center;

    gap:5px;

    flex-wrap:nowrap;

    width:80%;

}

.led-partido-escudo{

    width:40px;
    height:40px;

    object-fit:contain;

    flex-shrink:0;

}

.team-code{

    font-family:"Benzin",sans-serif !important;
    font-size:22px;
    font-weight:800;

    line-height:1;

    text-transform:uppercase;

    white-space:nowrap;

    color:#FFF;

}

/* ---------- Marcador ---------- */

.team-score{

    width:22px;
    min-width:22px;

    text-align:right;

    font-family:"Benzin",sans-serif;
    font-size:22px;
    font-weight:800;

    line-height:1;

    color:#FFF;

}

.team-score:empty{

    visibility:hidden;

}

/* ---------- Flechas ---------- */

.club-home-prev,
.club-home-next{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:32px;
    height:32px;

    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:999;

}

.club-home-prev{

    left:8px;

}

.club-home-next{

    right:8px;

}

.club-home-prev::before,
.club-home-next::before{

    content:"";

    width:12px;
    height:12px;

    border-top:3px solid #FFF;
    border-right:3px solid #FFF;

    transition:.2s ease;

}

.club-home-prev::before{

    transform:rotate(-135deg);

}

.club-home-next::before{

    transform:rotate(45deg);

}

.club-home-prev:hover::before{

    transform:rotate(-135deg) translate(-2px,-2px);

}

.club-home-next:hover::before{

    transform:rotate(45deg) translate(2px,-2px);

}
/* ---------- Tablet ---------- */

@media(max-width:1199px){

    .club-home-prev,
    .club-home-next{

        width:38px;
        height:38px;

    }

}

/* ---------- Mobile ---------- */

@media(max-width:767px){

    .club-home-prev,
    .club-home-next{

        width:34px;
        height:34px;

    }

}