/**
 * Player Records archive — grids, notes, unit labels
 * Shared chrome: archive-chrome.css
 */

body.btfc-player-records .btfc-hero-section,
body.btfc-player-records .btfc-hero-section.btfc-hero-title-only {
    display: none !important;
}

.btfc-pr-grid {
    display: grid;
    gap: 0.85rem;
}

.btfc-pr-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.btfc-pr-grid-1 {
    grid-template-columns: 1fr;
}

.btfc-pr-note {
    margin: 0.35rem 0 0.25rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-gray-500);
}

.btfc-pr-stat {
    flex-shrink: 0;
    min-width: 4.25rem;
    text-align: right;
}

.btfc-pr-value {
    display: block;
    min-width: 0;
}

.btfc-pr-unit {
    display: block;
    margin-top: 0.08rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.btfc-pr-empty {
    margin: 0.75rem 0 0.55rem;
    font-size: 0.86rem;
    color: var(--color-gray-500);
}

@media (max-width: 720px) {
    .btfc-pr-grid-2 {
        grid-template-columns: 1fr;
    }
}
