/* =========================================
   TABLA DE POSICIONES - HOME
========================================= */

/* Tabla */

.club-home-table{
    width:100%;
    border-collapse:collapse;
    border:none;
    table-layout:fixed;
}

/* Encabezado */

.club-home-table thead th{
    padding:0 0 12px;
    border:none;
    border-bottom:1px solid #E5E5E5;
    background:none;

    font-family:var(--e-global-typography-text-font-family);
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    color:#000;
    text-align:left;
}

/* Celdas */

.club-home-table tbody td{
    padding:14px 0;
    border:none;
    border-bottom:1px solid #E5E5E5;

    font-size:16px;
    color:#444;
    vertical-align:middle;
}

/* Columnas numéricas */

.club-home-table th:nth-child(1),
.club-home-table td:nth-child(1){
    width:42px;
    text-align:center;
    font-weight:700;
    color:#444;
}

.club-home-table th:nth-child(3),
.club-home-table th:nth-child(4),
.club-home-table th:nth-child(5),
.club-home-table td:nth-child(3),
.club-home-table td:nth-child(4),
.club-home-table td:nth-child(5){
    width:54px;
    text-align:center;
}

/* Columna Club */

.club-home-table .club{
    display:flex;
    align-items:center;
    gap:12px;
}

.club-home-table .led-escudo{
    width:30px;
    height:30px;
    object-fit:contain;
    flex-shrink:0;
}

.club-home-table .club span{
    font-size:15px;
    color:#444;
    line-height:1.2;
    text-transform:uppercase;
}

/* Puntos */

.club-home-table .pts{
    font-weight:800;
    color:#000;
}

/* Hover */

.club-home-table tbody tr:hover{
    background:#FAFAFA;
}

/* Móvil */

@media (max-width:767px){

.club-home-table thead th{
    font-size:12px;
    padding-bottom:10px;
}

.club-home-table tbody td{
    padding:12px 0;
}

.club-home-table .led-escudo{
    width:24px;
    height:24px;
}

.club-home-table .club{
    gap:8px;
}

.club-home-table .club span{
    font-size:13px;
}

.club-home-table th:nth-child(1),
.club-home-table td:nth-child(1){
    width:28px;
}

.club-home-table th:nth-child(3),
.club-home-table th:nth-child(4),
.club-home-table th:nth-child(5),
.club-home-table td:nth-child(3),
.club-home-table td:nth-child(4),
.club-home-table td:nth-child(5){
    width:40px;
}

}