/* ═══════════════════════════════════════════════════════════════════════
   STUFF CURIOUS — EDITS PATCH v2
   Append to the bottom of style.css (or load as assets/css/edits-v2.css)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Ticker link styling ─────────────────────────────────────────────── */
.ticker-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
    border-bottom: 1px solid rgba(139, 93, 246, 0.4);
    padding-bottom: 1px;
}
.ticker-link:hover {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

/* ─── Footer logo image ───────────────────────────────────────────────── */
.footer-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.footer-logo img {
    height: 32px;
    width: auto;
    max-width: 160px;
    display: block;
}
