.player-overview {
    margin: 24px 0;
    border: 1px solid #dedede;
    background: #fff;
}

.player-overview .player-overview-title {
    margin: 0;
    padding: 12px 16px;
    border-bottom: 3px solid #ffe14d;
    background: #193d6a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.player-overview .player-overview-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: #e5e5e5;
}

.player-overview .player-overview-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 16px 8px;
    background: #fff;
    text-align: center;
}

.player-overview dt {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.player-overview dd {
    order: -1;
    margin: 0 0 4px;
    color: #193d6a;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .player-overview .player-overview-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
