/* Typography & base styles */

/*
 * Design tokens — central color and effect definitions
 *
 * --color-accent: #4a7c8a — a richer teal derived from the club's logo
 *   palette (original Nevada #667377 shifted towards blue for better
 *   contrast and a more modern feel).
 * --color-dark: #333 — softer alternative to the theme's default #2a2a2a
 */
:root {
    --color-accent: #4a7c8a;
    --color-accent-hover: #3d6974;
    --color-dark: #333;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-lift: 0 2px 8px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
}

body {
    font-family: "Inter", "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    background: #f9fafb;
}

a {
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

.content a,
.warning a,
.authorbox__description a {
    color: var(--color-accent);
}

.content a:hover,
.warning a:hover,
.authorbox__description a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.meta a:hover {
    color: var(--color-accent);
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-top: 2.2rem;
}

blockquote {
    border-left-color: var(--color-accent);
}

.logo__tagline {
    color: var(--color-accent);
}

.divider {
    background: var(--color-accent);
}

.toc__menu a {
    color: var(--color-accent);
}
