/* Article template styles (generic, self-hosted) — accent #679146 */
* { box-sizing: border-box; }
html, body {
	margin: 0;
	padding: 0;
	background: #f4f6f1;
	color: #333333;
	font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

#wrapper {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 22px 60px;
}

/* Header / brand */
#header {
	border-bottom: 3px solid #679146;
	margin-bottom: 34px;
	padding: 28px 0 18px;
}
#header h1 {
	margin: 0 0 14px;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 1.2;
}
#header h1 a {
	color: #424242;
	text-decoration: none;
}
#header h1 strong { color: #679146; }

/* Top navigation */
#header nav.links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
}
#header nav.links li { margin: 0; }
#header nav.links a {
	display: block;
	padding: 7px 14px;
	color: #4b762b;
	text-decoration: none;
	font-size: .82em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
}
#header nav.links a:hover {
	color: #fff;
	background: #679146;
	border-radius: 3px;
}

/* Main content */
#main { }
article.post > header .title h2 {
	margin: 0 0 24px;
	font-size: 1.9em;
	line-height: 1.25;
	color: #2f3b25;
}
article.post > header .title h2 a {
	color: inherit;
	text-decoration: none;
}
article.post p {
	margin: 0 0 1.25em;
}
article.post a {
	color: #4b762b;
	text-decoration: underline;
}
article.post a:hover { color: #679146; }

/* Footer */
#footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #dce2d3;
}
#footer ul.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
}
#footer ul.icons .label { display: none; }

/* Mobile hamburger — dark bars, visible on light/white background */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid #c5cfc0;
	border-radius: 3px;
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
}
.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: #2f3b25;
	border-radius: 1px;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media screen and (max-width: 768px) {
	html, body { font-size: 16px; }
	#header {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}
	#header h1 {
		flex: 1;
		min-width: 0;
		margin: 0;
	}
	.nav-toggle {
		display: flex;
	}
	#header nav.links {
		display: none;
		width: 100%;
		order: 3;
		margin-top: 8px;
	}
	#header nav.links.is-open {
		display: block;
	}
	#header nav.links ul {
		flex-direction: column;
	}
	article.post > header .title h2 { font-size: 1.55em; }
}
