/* Typography - Global typography styles */

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-size: var(--font-size-base);
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: var(--color-text);
}

h1,
h2,
h3 {
	font-weight: 600;
	line-height: 1.3;
}

h1 {
	font-size: var(--font-size-h1);
	margin-bottom: var(--space-s);
}

h2 {
	font-size: var(--font-size-h2);
	margin-top: var(--space-xl);
	margin-bottom: var(--space-l);
}

h3 {
	font-size: var(--font-size-h3);
	margin-top: var(--space-l);
	margin-bottom: var(--space-xs);
}

p+p {
	margin-top: var(--space-s);
}

a {
	color: var(--link-color);
	text-decoration: none;
	border-bottom: var(--link-underline);
	padding-bottom: 0.05em;
	transition: border-color 0.2s ease, color 0.2s ease;
}

a:hover {
	color: var(--link-hover);
	border-bottom-color: var(--link-hover);
}

:target {
	outline: none;
	text-decoration: underline;
	text-decoration-color: var(--color-accent);
	text-decoration-thickness: 2px;
}

/* Listen-Layout */
ul,
ol {
	margin-block: var(--space-m);
	padding-left: 1.4rem;
}

ul {
	list-style: none;
}

li {
	position: relative;
	margin-block: var(--space-xs);
	line-height: 1.45;
}

li::before {
	content: "—";
	/* schöner langer Strich */
	position: absolute;
	left: -1.2rem;
	top: 0.1rem;
	font-weight: 400;
	color: var(--color-accent);
	font-size: 0.9em;
}

/* Optional: etwas mehr Luft, wenn Absatz direkt nach Liste folgt */
li+li {
	margin-top: var(--space-s);
}

.site-title {
	font-weight: 600;
	text-decoration: none;
	border-bottom: none;
	color: var(--color-text);
}

.site-title a {
	text-decoration: none;
	border-bottom: none;
	color: inherit;
}

.site-title a:hover {
	color: inherit;
	/* keine Farbe ändern */
	border-bottom: none;
	/* kein underline */
	opacity: 0.9;
	/* optional leichtes Hover-Feedback */
}

.site-nav a {
	margin-left: 1.5rem;
	text-decoration: none;
	border-bottom: none;
	color: var(--color-text);
}

.site-nav a:hover {
	opacity: 0.8;
}

.site-footer {
	font-size: 0.9rem;
}

.site-footer .container {
	font-size: 0.9rem;
}

.footer-nav a {
	margin-left: 1rem;
	text-decoration: none;
	color: var(--color-text);
}

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

.article-card {
	padding: var(--space-m);
	margin-bottom: var(--space-xl);
	border-radius: 6px;
}

.article-card h2 a {
	text-decoration: none;
	color: var(--color-text);
}

.article-card .excerpt {
	margin-top: 0.5rem;
	color: var(--color-text-muted);
}

.read-more {
	display: inline-block;
	margin-top: 0.5rem;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}

