/* =========================================
   TABLAS DE ESTADÍSTICAS
========================================= */

.club-stats-wrap{
    width:100%;
    overflow-x:auto;
}

.club-stats-table{
    width:100%;
    border-collapse:collapse;
    border:none;
    table-layout:auto;
    font-family:'Open Sans',sans-serif;
}

.club-stats-table thead th{
    padding:0 0 12px;
    border:none;
    border-bottom:1px solid #E5E5E5;
    background:none;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    color:#000;
    text-align:left;
    white-space:nowrap;
}

.club-stats-table tbody td{
    padding:14px 0;
    border:none;
    border-bottom:1px solid #E5E5E5;
    font-size:15px;
    color:#444;
    vertical-align:middle;
}

.club-stats-table tbody tr:hover{
    background:#FAFAFA;
}

/* Columnas */

.club-stats-table th:first-child,
.club-stats-table td:first-child{
    width:42px;
    text-align:center;
    font-weight:700;
}

.club-stats-table th:last-child,
.club-stats-table td:last-child{
    width:72px;
    text-align:center;
}

/* Jugador */

.club-player{
    display:flex;
    align-items:center;
    gap:12px;
}

.club-player .club-escudo{
    width:30px;
    height:30px;
    object-fit:contain;
    flex-shrink:0;
}

.club-player-info{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.club-player-info strong{
    font-size:15px;
    font-weight:700;
    color:#444;
    line-height:1.2;
}

.club-player-info span{
    font-size:13px;
    color:#777;
    line-height:1.2;
}

.club-stats-table .total{
    font-weight:800;
    color:#000;
}

/* =========================
   MÓVIL
========================= */

@media (max-width:767px){

    .club-stats-wrap{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .club-stats-table{
        width:100%;
        min-width:420px;
    }

    .club-stats-table thead th{
        font-size:12px;
    }

    .club-stats-table tbody td{
        padding:12px 0;
        font-size:13px;
    }

    .club-player{
        gap:8px;
    }

    .club-player .club-escudo{
        width:24px;
        height:24px;
    }

    .club-player-info strong{
        font-size:13px;
    }

    .club-player-info span{
        font-size:11px;
    }

    .club-stats-table th:first-child,
    .club-stats-table td:first-child{
        width:32px;
    }

    .club-stats-table th:last-child,
    .club-stats-table td:last-child{
        width:56px;
    }

}