/* ------------------------------------------------------------------
   Northern Tales — runes reference page
   ------------------------------------------------------------------ */

.rune-aett h2 { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.aett-name-non { font-size: 0.85em; color: var(--fg-muted); font-style: italic; }

.rune-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.rune-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--bg-raised);
    border: 1px solid var(--rule);
    border-radius: 3px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rune-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-1px);
}

.rune-char {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent);
    min-width: 3.5rem;
    text-align: center;
    flex-shrink: 0;
    padding-top: 0.15rem;
    font-family: "Noto Sans Runic", "Segoe UI Historic", "Segoe UI Symbol", sans-serif;
}

.rune-info { flex: 1; min-width: 0; }
.rune-name { font-size: 1.15rem; margin: 0 0 0.25rem; color: var(--fg); }
.rune-translit { font-weight: 400; color: var(--fg-muted); font-size: 0.9em; }
.rune-meaning { font-weight: 600; color: var(--bronze); margin: 0 0 0.3rem; font-size: 0.95rem; }
.rune-sound { font-size: 0.85rem; color: var(--fg-muted); margin: 0 0 0.5rem; font-family: var(--font-sans); }
.rune-desc { font-size: 0.95rem; margin: 0; line-height: 1.6; }

.rune-sources { list-style: none; padding: 0; }
.rune-sources li { margin-bottom: 0.5rem; line-height: 1.5; }
.rune-sources cite { font-style: normal; }
.rune-source-note { display: block; color: var(--fg-muted); font-size: 0.88rem; margin-top: 0.15rem; }

@media (min-width: 48rem) {
    .rune-grid { grid-template-columns: 1fr 1fr; }
}
