:root {
	--bh-primary: #1f2937;
	--bh-accent: #2563eb;
	--bh-bg: #f8fafc;
	--bh-card: #ffffff;
	--bh-text: #111827;
	--bh-muted: #6b7280;
	--bh-font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
	--bh-font-heading: "Playfair Display", "Times New Roman", serif;
	--bh-container: 1200px;
	--bh-radius: 16px;
	--bh-space-1: 8px;
	--bh-space-2: 16px;
	--bh-space-3: 24px;
	--bh-space-4: 32px;
	--bh-space-5: 48px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--bh-font-body);
	background: var(--bh-bg);
	color: var(--bh-text);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4 {
	font-family: var(--bh-font-heading);
	color: var(--bh-primary);
	line-height: 1.2;
	margin: 0 0 var(--bh-space-2);
}

p {
	margin: 0 0 var(--bh-space-2);
	color: var(--bh-muted);
}

.bhblog-container {
	max-width: var(--bh-container);
	margin: 0 auto;
	padding: 0 var(--bh-space-3);
}
