/**
 * Impressum (legal notice) page styling.
 *
 * Enqueued only on the Impressum page (see includes/legal-pages/). The markup
 * lives in the page content (.hms-impressum … .hms-imp-* classes); keeping the
 * CSS in this file — instead of an inline <style> in the post content — avoids
 * wpautop mangling the rules (it turns newlines inside <style> into <br>).
 */
.hms-impressum {
	max-width: 760px;
	margin: 0 auto;
	color: #2b2b2b;
	font-size: 15px;
	line-height: 1.6;
}

.hms-impressum h3 {
	margin: 0 0 .25em;
	font-size: 1.9em;
	letter-spacing: .01em;
}

.hms-impressum .hms-imp-lead {
	color: #6b6b6b;
	margin: 0 0 1.6em;
	font-size: 1.02em;
}

.hms-impressum .hms-imp-card {
	background: #f7f9fa;
	border: 1px solid #e4e9ec;
	border-left: 4px solid #2386ad;
	border-radius: 8px;
	padding: 1.3em 1.5em;
	margin: 0 0 1.4em;
}

.hms-impressum .hms-imp-card h4 {
	margin: 0 0 .8em;
	font-size: 1.05em;
	color: #2386ad;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.hms-impressum dl.hms-imp-dl {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: .55em 1.2em;
	margin: 0;
}

.hms-impressum dl.hms-imp-dl dt {
	color: #6b6b6b;
	font-weight: 600;
}

.hms-impressum dl.hms-imp-dl dd {
	margin: 0;
	color: #2b2b2b;
}

.hms-impressum dl.hms-imp-dl dd a {
	color: #2386ad;
	text-decoration: none;
}

.hms-impressum dl.hms-imp-dl dd a:hover {
	text-decoration: underline;
}

.hms-impressum .hms-imp-firma {
	font-size: 1.15em;
	font-weight: 700;
}

.hms-impressum .hms-imp-note {
	font-size: .92em;
	color: #6b6b6b;
	margin: .2em 0 1.4em;
}

.hms-impressum .hms-imp-badge {
	margin: 0 0 1.4em;
}

@media (max-width: 560px) {
	.hms-impressum dl.hms-imp-dl {
		grid-template-columns: 1fr;
		gap: .15em;
	}

	.hms-impressum dl.hms-imp-dl dt {
		margin-top: .7em;
	}
}