/**
 * Manager Records archive — leader tiles, comparison table, legend
 * Shared chrome: archive-chrome.css
 */

body.btfc-manager-records .btfc-hero-section,
body.btfc-manager-records .btfc-hero-section.btfc-hero-title-only {
    display: none !important;
}

.btfc-mr-leaders {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.btfc-mr-leader {
    padding: 0.85rem 1rem 0.7rem;
}

.btfc-mr-leader-title {
    font-size: 1.05rem;
}

.btfc-mr-leader-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btfc-mr-leader-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0 0.15rem;
}

.btfc-mr-leader-name {
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.3;
    min-width: 0;
}

.btfc-mr-leader-value {
    flex-shrink: 0;
    text-align: right;
}

.btfc-mr-stat {
    display: block;
    font-family: var(--font-heading, inherit);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-primary);
}

.btfc-mr-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-mr-table {
    min-width: 980px;
}

.btfc-mr-table th,
.btfc-mr-table td {
    text-align: right;
}

.btfc-mr-col-name,
.btfc-mr-table th.btfc-mr-col-name {
    text-align: left;
    font-weight: 650;
    min-width: 11.5rem;
}

.btfc-mr-best {
    background: rgba(245, 184, 0, 0.18);
    font-weight: 700;
    color: var(--color-primary);
}

.btfc-mr-pos {
    color: var(--color-primary-light);
    font-weight: 700;
}

.btfc-mr-neg {
    color: #7a1f1f;
    font-weight: 700;
}

.btfc-mr-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.btfc-mr-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btfc-mr-swatch {
    display: inline-block;
    width: 0.85rem;
    height: 0.85rem;
    border: 1px solid var(--color-gray-200);
}

.btfc-mr-swatch.btfc-mr-best {
    background: rgba(245, 184, 0, 0.18);
    border-color: var(--color-secondary);
}

.btfc-mr-swatch.btfc-mr-pos {
    background: var(--color-primary);
}

.btfc-mr-swatch.btfc-mr-neg {
    background: #7a1f1f;
}

.btfc-mr-empty {
    margin: 0.5rem 0;
    font-size: 0.86rem;
    color: var(--color-gray-500);
}

@media (max-width: 800px) {
    .btfc-mr-leaders {
        grid-template-columns: 1fr;
    }
}
