/* ═══════════════════════════════════════════════════════════════════════════
   Basketball matchup — supplemental styles
   Basketball-specific controls only. Shared design system in shared/style.css.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Venue toggle group ───────────────────────────────────────────────────── */
/* Three-button text group. No thumbnails — venue identity is text-first. */

.venue-toggle-group .toggle {
    font-size: 11px;
    letter-spacing: 0.10em;
    padding: 11px 4px;
    line-height: 1.5;
}

/* ── Inline venue specs panel ─────────────────────────────────────────────── */
.venue-specs {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.venue-specs-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
}

.venue-specs-location {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.venue-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.venue-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.venue-spec-item.venue-spec-full {
    grid-column: 1 / -1;
}

.venue-spec-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
}

.venue-spec-val {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* ── Team info strip (controls panel) ────────────────────────────────────── */
.team-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.team-name-link {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.1s;
}
.team-name-link:hover { color: var(--yellow); }

.team-detail {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--dim);
    text-transform: uppercase;
}

.team-divider {
    height: 1px;
    background: var(--border);
}

.matchup-note {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--dim);
    text-transform: uppercase;
    line-height: 1.6;
    margin-top: 4px;
}

/* ── Rule set info block ──────────────────────────────────────────────────── */
/* Static display — not user-selectable. Four rules listed as locked facts.   */
.rule-set-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rule-set-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.rule-set-dot {
    font-size: 10px;
    color: var(--yellow);
    flex-shrink: 0;
}

.rule-set-text {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dim);
    line-height: 1.5;
}

/* ── Score display in athlete rows ───────────────────────────────────────── */
/* Basketball scores are 2-3 digits. Default .athlete-time is 30px which fits;
   no override needed. Left in for future matchup-specific size adjustment. */

/* ── Basketball condition flag ────────────────────────────────────────────── */
/* Applied to #result-condition via conditionFlag.cls = 'is-basketball' */
.result-legality.is-basketball {
    color: var(--dim);
    white-space: pre-line;
    line-height: 1.9;
}
