:root {
	--color-green: rgb(39, 145, 43);
	--color-green-dark: #166f22;
	--color-green-soft: #edf8ee;
	--color-orange: rgb(242, 128, 31);
	--color-orange-dark: #d6670d;
	--color-text: rgb(50, 49, 60);
	--color-muted: #6b7280;
	--color-border: #e5eadf;
	--color-surface: #ffffff;
	--color-bg: #f7faf6;
	--shadow-soft: 0 18px 45px rgba(27, 59, 34, 0.08);
	--radius: 8px;
	--container: 1140px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: "Georama", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

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

a:hover,
a:focus {
	color: var(--color-green);
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 20;
	padding: 10px 14px;
	background: var(--color-green);
	color: #fff;
	border-radius: var(--radius);
}

.skip-link:focus {
	top: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(229, 234, 223, 0.9);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.brand img {
	width: 190px;
	height: auto;
}

.nav-list {
	align-items: center;
	gap: 22px;
	font-size: 0.94rem;
	font-weight: 700;
}

.nav-list a {
	color: var(--color-text);
}

.nav-list-desktop {
	display: none;
}

.mobile-menu {
	position: relative;
}

.mobile-menu summary {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	gap: 5px;
	padding: 10px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	cursor: pointer;
	list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
	display: none;
}

.mobile-menu summary span {
	width: 21px;
	height: 2px;
	background: var(--color-text);
	border-radius: 999px;
}

.nav-list-mobile {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	display: grid;
	min-width: 250px;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.nav-list-mobile a {
	padding: 10px 8px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border-radius: var(--radius);
	background: var(--color-orange);
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	box-shadow: 0 10px 22px rgba(242, 128, 31, 0.22);
	transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
	background: var(--color-orange-dark);
	color: #fff;
	transform: translateY(-1px);
}

.button-small {
	min-height: 40px;
	padding: 10px 14px;
	font-size: 0.9rem;
}

.hero-band {
	background:
		linear-gradient(135deg, rgba(237, 248, 238, 0.96), rgba(255, 255, 255, 0.98)),
		radial-gradient(circle at 90% 15%, rgba(242, 128, 31, 0.14), transparent 30%);
	border-bottom: 1px solid var(--color-border);
}

.hero-grid {
	display: grid;
	gap: 32px;
	padding: 52px 0 40px;
}

.hero-copy {
	max-width: 720px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--color-green);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--color-text);
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.15rem, 6vw, 4.45rem);
	max-width: 820px;
}

.hero-copy p:not(.eyebrow) {
	max-width: 680px;
	margin: 18px 0 26px;
	color: #4d5460;
	font-size: 1.08rem;
}

.hero-search {
	max-width: 520px;
	margin: 0 0 22px;
}

.farmevo-search-form {
	margin: 0;
}

.farmevo-search-field {
	display: flex;
	align-items: center;
	min-height: 52px;
	border: 1px solid rgba(39, 145, 43, 0.28);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 12px 28px rgba(27, 59, 34, 0.07);
	overflow: hidden;
}

.farmevo-search-field:focus-within {
	border-color: var(--color-green);
	box-shadow: 0 0 0 4px rgba(39, 145, 43, 0.1);
}

.farmevo-search-field input {
	min-width: 0;
	flex: 1;
	height: 52px;
	padding: 0 4px 0 16px;
	border: 0;
	background: transparent;
	color: var(--color-text);
	font: inherit;
	outline: 0;
}

.farmevo-search-field input::placeholder {
	color: #7b8490;
}

.farmevo-search-field button {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 0;
	background: transparent;
	color: var(--color-green);
	cursor: pointer;
}

.farmevo-search-field button:hover,
.farmevo-search-field button:focus {
	color: var(--color-orange);
}

.hero-panel {
	position: relative;
	min-height: 260px;
	padding: 22px;
	border: 1px solid rgba(39, 145, 43, 0.18);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.field-map {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	height: 216px;
}

.field-map span {
	border-radius: 7px;
	background: linear-gradient(145deg, #dff1d6, #95cb76);
}

.field-map span:nth-child(3n) {
	background: linear-gradient(145deg, #f5d2a7, #b8d482);
}

.field-map span:nth-child(4n) {
	background: linear-gradient(145deg, #c9e5c6, #58a64c);
}

.signal-card {
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: min(220px, calc(100% - 44px));
	padding: 16px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--color-border);
	box-shadow: 0 14px 32px rgba(27, 59, 34, 0.12);
}

.signal-card strong {
	display: block;
	color: var(--color-green);
	font-size: 1.55rem;
	line-height: 1;
}

.signal-card small {
	color: var(--color-muted);
	font-weight: 700;
}

.content-band,
.article-band {
	padding: 42px 0 64px;
	background: #fff;
}

.breadcrumb-band {
	padding: 16px 0;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.breadcrumb-list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.breadcrumb-list li + li::before {
	content: "/";
	color: #b2bac2;
	font-weight: 600;
}

.breadcrumb-list a {
	color: var(--color-green);
}

.breadcrumb-list [aria-current="page"],
.breadcrumb-list li[aria-current="page"] span {
	color: var(--color-muted);
	font-weight: 600;
}

body .search-results-header {
	width: min(100% - 32px, var(--container));
	margin: 28px auto 0;
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

body .search-results-header h1 {
	color: var(--color-text);
	font-size: clamp(1.45rem, 4vw, 2.1rem);
}

body .search-results-header .search-query {
	color: var(--color-green);
}

body .search-results-header .search-count,
body .search-no-results p,
body .search-result-excerpt {
	color: var(--color-muted);
}

body .search-highlight {
	background: rgba(242, 128, 31, 0.2);
	color: var(--color-text);
	border-radius: 3px;
}

.content-layout,
.article-layout {
	display: grid;
	gap: 34px;
	align-items: start;
}

.post-list {
	display: grid;
	gap: 22px;
}

.post-card {
	display: grid;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
}

.post-card-media {
	min-height: 210px;
	background: var(--color-green-soft);
}

.post-card-media img,
.post-card-placeholder {
	width: 100%;
	height: 230px;
	min-height: 210px;
	object-fit: cover;
}

.post-card-placeholder {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(39, 145, 43, 0.08), rgba(242, 128, 31, 0.08)),
		repeating-linear-gradient(90deg, rgba(39, 145, 43, 0.09) 0 18px, transparent 18px 36px);
}

.post-card-placeholder img {
	width: 74px;
	opacity: 0.85;
}

.post-card-body {
	padding: 24px;
}

.meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--color-muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.category-pill {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--color-green-soft);
	color: var(--color-green-dark);
}

.post-card h2 {
	font-size: clamp(1.35rem, 4vw, 2rem);
}

.post-card p {
	margin: 14px 0 18px;
	color: #535b65;
}

.read-more {
	color: var(--color-green);
	font-weight: 800;
}

.read-more::after {
	content: " ->";
}

.sidebar {
	display: grid;
	gap: 18px;
}

.sidebar-block {
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 12px 28px rgba(27, 59, 34, 0.06);
}

.sidebar-block h2 {
	margin-bottom: 12px;
	font-size: 1.05rem;
}

.sidebar-block p {
	margin: 0 0 16px;
	color: var(--color-muted);
}

.sidebar-cta {
	background: linear-gradient(135deg, var(--color-green-soft), #fff);
	border-color: rgba(39, 145, 43, 0.2);
}

.link-list,
.recent-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.link-list a,
.recent-list a {
	font-weight: 700;
}

.recent-list time {
	display: block;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.pagination-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 10px;
	color: var(--color-muted);
	font-weight: 700;
}

.pagination-nav a {
	color: var(--color-green);
}

.article-main {
	min-width: 0;
}

.article-header {
	padding-bottom: 24px;
}

.article-header h1 {
	font-size: clamp(2.1rem, 6vw, 4rem);
}

.article-description {
	max-width: 760px;
	margin: 18px 0 0;
	color: #535b65;
	font-size: 1.12rem;
}

.article-cover {
	margin: 0 0 30px;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.article-cover img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.article-content {
	max-width: 780px;
	color: #2f3440;
	font-size: 1.05rem;
}

.article-content h2 {
	margin: 34px 0 12px;
	font-size: clamp(1.45rem, 4vw, 2.05rem);
}

.article-content h3 {
	margin: 26px 0 10px;
	font-size: 1.25rem;
}

.article-content p,
.article-content ul,
.article-content ol {
	margin: 0 0 18px;
}

.article-content a {
	color: var(--color-green);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.article-content blockquote {
	margin: 24px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--color-green);
	background: var(--color-green-soft);
	border-radius: var(--radius);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 32px 0;
}

.tag-list a {
	padding: 6px 11px;
	border-radius: 999px;
	background: #f3f5f1;
	color: var(--color-muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.article-cta {
	max-width: 780px;
	margin-top: 34px;
	padding: 26px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
	color: #fff;
}

.article-cta h2,
.article-cta p {
	color: #fff;
}

.article-cta h2 {
	font-size: 1.55rem;
}

.article-cta p {
	margin: 10px 0 18px;
	opacity: 0.9;
}

.empty-state {
	padding: 28px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
}

.empty-state h2 {
	font-size: 1.4rem;
}

.site-footer {
	padding: 42px 0 22px;
	background: #f7faf6;
	border-top: 1px solid var(--color-border);
}

.footer-grid {
	display: grid;
	gap: 24px;
}

.footer-grid p {
	max-width: 430px;
	margin: 14px 0 0;
	color: var(--color-muted);
}

.footer-grid nav {
	display: grid;
	gap: 10px;
	align-content: start;
}

.footer-grid nav a {
	font-weight: 700;
}

.footer-bottom {
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 0.9rem;
}

@media (min-width: 760px) {
	.nav-list-desktop {
		display: flex;
	}

	.mobile-menu {
		display: none;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
		align-items: center;
		padding: 70px 0 54px;
	}

	.post-card {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.post-card-media,
	.post-card-media img,
	.post-card-placeholder {
		height: 100%;
		min-height: 100%;
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1fr) 260px;
	}
}

@media (min-width: 980px) {
	.content-layout,
	.article-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
	}

	.sidebar {
		position: sticky;
		top: 104px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
