.standings-divisions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.standings-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 24px;
}

.standings-title {
    background: linear-gradient(to right, #1e293b, #334155);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 14px 18px;
}

.standings-row {
    display: grid;
    grid-template-columns: minmax(160px, 2.4fr) repeat(6, 0.7fr) 1fr 1fr 0.7fr;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #f1f5f9;
}

.standings-row:last-child {
    border-bottom: none;
}

.standings-header {
    background: #f8fafc;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 8px;
    padding-bottom: 8px;
}

.standings-row:not(.standings-header):hover {
    background: #f8fafc;
}

.row-leader {
    background: #f0fdf4;
}

.row-leader:hover {
    background: #dcfce7 !important;
}

.row-clinch {
    background: #eff6ff;
}

.row-clinch:hover {
    background: #dbeafe !important;
}

.col-team {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rank {
    width: 18px;
    flex-shrink: 0;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: right;
}

.team-logo-sm {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-name {
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-abbr {
    display: none;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
}

.col-num {
    text-align: center;
    font-variant-numeric: tabular-nums;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
}

.col-record {
    text-align: center;
    font-variant-numeric: tabular-nums;
    color: #64748b;
    font-size: 0.85rem;
}

.standings-header .col-num,
.standings-header .col-record {
    color: #64748b;
    font-weight: 700;
}

.streak-win {
    color: #15803d;
}

.streak-loss {
    color: #b91c1c;
}

.wc-divider {
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #1e293b 0,
        #1e293b 8px,
        transparent 8px,
        transparent 16px
    );
    margin: 0 18px;
}

@media (max-width: 900px) {
    .standings-row {
        grid-template-columns: minmax(120px, 2fr) repeat(6, 0.6fr) 0.6fr;
    }

    .col-record {
        display: none;
    }

    .team-name {
        display: none;
    }

    .team-abbr {
        display: inline;
    }
}

@media (max-width: 600px) {
    .standings-row {
        grid-template-columns: minmax(90px, 1.6fr) repeat(3, 0.55fr) 0.55fr;
        padding: 10px 12px;
    }

    .standings-title {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .col-num:nth-child(6),
    .col-num:nth-child(7),
    .col-num:nth-child(10) {
        display: none;
    }
}
