/* The way from the scene into the writing. Quiet until wanted. */
.read-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-size: 0.84rem;
}

.read-nav a {
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.read-nav a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-blood);
}

.read-nav a:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* On a narrow screen the scene needs its room; the dock still reaches these. */
@media (max-width: 900px) {
    .read-nav { display: none; }
}

/* Links inside the dock's Read card. */
#read-card .control-item a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-blood-dim);
}
#read-card .control-item a:hover { border-bottom-color: var(--accent-blood); }
