/* =========================================
   RESULTADOS RECIENTES
========================================= */

.club-home-results{
    display:flex;
    flex-direction:column;
}

.club-home-results .led-resultado-item{
    display:grid;
    grid-template-columns:1fr 80px 1fr 90px;
    align-items:center;
    gap:14px;
    padding:22px 0;
    border-bottom:1px solid #E5E5E5;
    text-decoration:none;
    color:#444;
    cursor:pointer;
}

.club-home-results .led-resultado-item:hover{
    color:inherit;
}

.club-home-results .led-resultado-item:hover .club span,
.club-home-results .led-resultado-item:hover .marcador,
.club-home-results .led-resultado-item:hover .fecha{
    color:inherit;
}

.club-home-results .club{
    display:flex;
    align-items:center;
    gap:12px;
}

.club-home-results .visitante{
    justify-content:flex-end;
}

.club-home-results .led-escudo{
    width:36px;
    height:36px;
    object-fit:contain;
    flex-shrink:0;
}

.club-home-results .club span{
    font-size:16px;
    color:#444;
    line-height:1.2;
}

.club-home-results .marcador{
    text-align:center;
    font-size:20px;
    font-weight:800;
    color:#111;
}

.club-home-results .fecha{
    text-align:right;
    font-size:14px;
    color:#999;
    white-space:nowrap;
}

/* =========================================
   RESULTADOS RECIENTES - MÓVIL
========================================= */

@media (max-width:767px){

.club-home-results{
    gap:0;
}

.club-home-results .led-resultado-item{
    grid-template-columns:1fr 56px 1fr;
    gap:10px;
    padding:16px 0;
}

.club-home-results .fecha{
    display:none;
}

.club-home-results .led-escudo{
    width:28px;
    height:28px;
}

.club-home-results .club{
    gap:8px;
    min-width:0;
}

.club-home-results .visitante{
    justify-content:flex-end;
}

.club-home-results .visitante .led-escudo{
    order:2;
}

.club-home-results .visitante span{
    order:1;
    text-align:right;
}

.club-home-results .club span{
    font-size:13px;
    line-height:1.2;
}

.club-home-results .marcador{
    font-size:18px;
}

}