/* ==========================================================================
   Series Hero — Boring Mode
   Compact single-line series info bar. No drama, all data.
   ========================================================================== */

.shb {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--theme-border-color, #e5e7eb);
}

/* --- Bar layout --- */
.shb-bar {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
}

/* --- Label --- */
.shb-label {
    font-family: 'Karla', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--theme-text-muted, #9ca3af);
    white-space: nowrap;
}

/* --- Series name --- */
.shb-series-name {
    font-family: 'Karla', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--theme-text-primary, #111827);
    margin: 0;
    white-space: nowrap;
    text-decoration: none;
}

.shb-series-name:hover {
    text-decoration: underline;
}

/* --- Standing --- */
.shb-standing {
    font-family: 'Karla', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-text-secondary, #374151);
    white-space: nowrap;
}

/* --- Links --- */
.shb-links {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
    margin-left: auto;
}

.shb-link {
    font-family: 'Karla', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.625rem;
    border: 1px solid var(--theme-border-color, #d1d5db);
    border-radius: 3px;
    background: transparent;
    color: var(--theme-text-secondary, #374151);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.shb-link:hover {
    background: var(--theme-text-primary, #111827);
    color: #fff;
    border-color: var(--theme-text-primary, #111827);
    text-decoration: none;
}

.shb-link--accent {
    color: #b45309;
    border-color: #fbbf24;
}

.shb-link--accent:hover {
    background: #b45309;
    border-color: #b45309;
}

/* --- Super Ace --- */
.shb-super-ace {
    font-family: 'Karla', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-text-muted, #6b7280);
    white-space: nowrap;
    text-decoration: none;
}

.shb-super-ace:hover {
    text-decoration: underline;
    color: var(--theme-text-secondary, #374151);
}

/* --- Empty state --- */
.shb-empty {
    text-align: center;
    padding: 1rem;
    color: var(--theme-text-muted, #6b7280);
    font-size: 0.85rem;
}

.shb-empty p {
    margin: 0;
}

/* ==========================================================================
   Dark Mode
   ========================================================================== */

[data-bs-theme="dark"] .shb {
    border-bottom-color: #374151;
}

[data-bs-theme="dark"] .shb-link {
    border-color: #4b5563;
    color: #d1d5db;
}

[data-bs-theme="dark"] .shb-link:hover {
    background: #e5e7eb;
    color: #111827;
    border-color: #e5e7eb;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 640px) {
    .shb-bar {
        flex-direction: column;
        gap: 0.375rem;
    }

    .shb-links {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .shb-link {
        flex: 1;
        text-align: center;
    }
}
