:root {
	--article-green: var(--green, #075b34);
	--article-gold: var(--gold, #d9a326);
	--article-ink: #171c19;
	--article-muted: #555f59;
	--article-border: #e4e1d8;
	--article-soft: #f7f5ee;
	--article-surface: #fff;
	--article-page: #fcfbf7;
	--article-shadow: 0 8px 26px rgba(20, 55, 37, .07);
	--article-sticky-offset: 104px;
}

.single-article-page {
	background: var(--article-page);
	color: var(--article-ink);
	padding: 34px 0 18px;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	grid-template-areas: "main sidebar";
	gap: clamp(34px, 5vw, 72px);
	align-items: start;
}

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

.article-sidebar,
.article-sidebar__inner {
	grid-area: sidebar;
	display: grid;
	gap: 20px;
	min-width: 0;
}

.article-sidebar__inner.is-sticky {
	position: sticky;
	top: var(--article-sticky-offset);
}

.article-no-sidebar .article-layout {
	display: block;
}

.article-no-sidebar .article-main {
	margin-inline: auto;
	max-width: var(--article-reading-width, 840px);
}

.article-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: #89908c;
	font-size: 13px;
	margin-bottom: 28px;
}

.article-breadcrumbs a {
	color: #68716c;
	text-decoration: none;
}

.article-breadcrumbs a:hover {
	color: var(--article-green);
}

.article-header {
	text-align: right;
}

.article-category {
	display: inline-block;
	background: var(--article-gold);
	border-radius: 3px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 13px;
	text-decoration: none;
}

.article-header h1 {
	color: var(--article-ink);
	font-size: var(--article-title-desktop, 44px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.35;
	margin: 16px 0 12px;
	max-width: min(100%, var(--article-reading-width, 840px));
	overflow-wrap: anywhere;
}

.article-deck {
	color: var(--article-muted);
	font-size: calc(var(--article-text-desktop, 18px) + 1px);
	font-weight: 500;
	line-height: 1.9;
	margin: 0 0 24px;
	max-width: 900px;
}

.article-deck p {
	margin: 0;
}

.article-byline,
.article-meta-items,
.article-author {
	display: flex;
	align-items: center;
}

.article-byline {
	border-bottom: 1px solid var(--article-border);
	gap: 22px;
	justify-content: space-between;
	margin-bottom: 28px;
	padding-bottom: 16px;
}

.article-byline--below-feature {
	margin-top: 4px;
}

.article-font-controls {
	align-items: center;
	background: var(--article-soft);
	border: 1px solid var(--article-border);
	border-radius: 24px;
	direction: ltr;
	display: inline-flex;
	flex: 0 0 auto;
	overflow: hidden;
	padding: 3px;
}

.article-font-controls button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 18px;
	color: var(--article-ink);
	cursor: pointer;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	min-width: 38px;
	padding: 0 8px;
}

.article-font-controls button:hover {
	background: var(--article-surface);
	color: var(--article-green);
}

.article-font-controls button:disabled {
	cursor: not-allowed;
	opacity: .35;
}

.article-font-controls__reset {
	border-inline: 1px solid var(--article-border) !important;
}

.article-author {
	color: #4f5753;
	gap: 10px;
	text-decoration: none;
	white-space: nowrap;
}

.article-author img {
	border: 2px solid #e2dfd4;
	border-radius: 50%;
	height: 48px;
	object-fit: cover;
	width: 48px;
}

.article-author strong {
	color: var(--article-ink);
}

.article-meta-items {
	color: #6f7772;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 22px;
}

.article-meta-items > span {
	align-items: center;
	display: inline-flex;
	gap: 6px;
}

.article-meta-items .dashicons,
.sidebar-news-list .dashicons,
.related-articles small .dashicons {
	font-size: 16px;
	height: 16px;
	width: 16px;
}

.article-feature-wrap {
	position: relative;
}

.article-feature {
	margin: 0 0 25px;
}

.article-feature img {
	aspect-ratio: 16 / 8.9;
	border-radius: 7px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.article-feature figcaption {
	color: #777e79;
	font-size: 13px;
	padding-top: 8px;
	text-align: center;
}

.article-feature figcaption span + span::before {
	content: " · ";
	margin-inline: 5px;
}

.article-lightbox-open {
	background: none;
	border: 0;
	cursor: zoom-in;
	display: block;
	padding: 0;
	width: 100%;
}

.article-share {
	background: #fff;
	border: 1px solid var(--article-border);
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(36, 47, 40, .06);
	display: flex;
	flex-direction: column;
	inset-inline-end: calc(100% + 18px);
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 2;
}

.article-share a,
.article-share button {
	align-items: center;
	background: #fff;
	border: 0;
	border-bottom: 1px solid #eeeae1;
	color: #26342d;
	cursor: pointer;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	text-decoration: none;
	width: 42px;
}

.article-share a:last-child,
.article-share button:last-child {
	border-bottom: 0;
}

.article-share a:hover,
.article-share button:hover {
	background: var(--article-soft);
	color: var(--article-green);
}

.article-share svg {
	display: block;
	fill: currentColor;
	height: 19px;
	width: 19px;
}

.article-share .article-share__icon-stroke {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.article-content {
	--article-active-text-size: var(--article-text-desktop, 18px);
	color: #414943;
	font-size: calc(var(--article-active-text-size) + var(--article-font-adjustment, 0px));
	line-height: var(--article-line-height, 2);
	margin-inline: auto;
	max-width: var(--article-reading-width, 840px);
}

.article-content > * {
	max-width: 100%;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	color: var(--article-green);
	line-height: 1.45;
	margin: 30px 0 8px;
}

.article-content h2 {
	font-size: 25px;
}

.article-content h3 {
	font-size: 21px;
}

.article-content h4 {
	font-size: 18px;
}

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

.article-content img {
	border-radius: 7px;
	height: auto;
	max-width: 100%;
}

.article-content a {
	color: var(--article-green);
	text-decoration-color: color-mix(in srgb, var(--article-green), transparent 55%);
	text-underline-offset: 4px;
}

.article-content ul,
.article-content ol {
	margin: 0 0 22px;
	padding-inline-start: 28px;
}

.article-content li {
	margin-bottom: 8px;
}

.article-content figure,
.article-content .wp-block-image,
.article-content .wp-block-gallery {
	margin-block: 28px;
}

.article-content figcaption,
.article-content .wp-caption-text {
	color: var(--article-muted);
	font-size: .75em;
	text-align: center;
}

.article-content iframe,
.article-content video,
.article-content .wp-block-embed__wrapper {
	aspect-ratio: 16 / 9;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.article-content pre {
	background: #10251b;
	border-radius: 7px;
	color: #e5f2eb;
	direction: ltr;
	max-width: 100%;
	overflow: auto;
	padding: 18px;
	text-align: left;
}

.article-content code {
	background: color-mix(in srgb, var(--article-green), transparent 90%);
	border-radius: 4px;
	padding: .1em .35em;
}

.article-content pre code {
	background: none;
	padding: 0;
}

.article-content hr {
	border: 0;
	border-top: 1px solid var(--article-border);
	margin: 34px 0;
}

.article-table-of-contents {
	background: var(--article-soft);
	border: 1px solid var(--article-border);
	border-inline-start: 4px solid var(--article-gold);
	border-radius: 9px;
	margin: 28px 0;
	padding: 22px 24px 18px;
}

.article-table-of-contents h2 {
	color: var(--article-green);
	font-size: 21px;
	line-height: 1.5;
	margin: 0 0 12px;
}

.article-table-of-contents ol {
	display: grid;
	gap: 7px;
	list-style-position: inside;
	margin: 0;
	padding: 0;
}

.article-table-of-contents li {
	color: var(--article-gold);
	font-size: 15px;
	line-height: 1.7;
}

.article-table-of-contents .article-toc-level-3 {
	margin-inline-start: 22px;
}

.article-table-of-contents a {
	color: var(--article-ink);
	text-decoration: none;
	text-underline-offset: 4px;
}

.article-table-of-contents a:hover {
	color: var(--article-green);
	text-decoration: underline;
}

.article-content :is(h2, h3)[id] {
	scroll-margin-top: 92px;
}

.article-content .wp-block-button__link {
	background: var(--article-green);
	border-radius: 6px;
	color: #fff;
	padding: .75em 1.35em;
	text-decoration: none;
}

.article-content .is-style-agrinews-info,
.article-content .wp-block-group.is-style-agrinews-info {
	background: var(--article-soft);
	border: 1px solid var(--article-border);
	border-inline-start: 4px solid var(--article-gold);
	border-radius: 8px;
	margin-block: 26px;
	padding: 20px;
}

.article-content .alignwide {
	margin-inline: max(-50px, calc((var(--article-reading-width, 840px) - 100vw) / 2));
	max-width: calc(100% + 100px);
	width: auto;
}

.article-content .alignfull {
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.article-content blockquote {
	background: #fff;
	border: 1px solid #dedbd2;
	border-inline-end: 4px solid var(--article-gold);
	border-radius: 7px;
	color: #4d5550;
	font-size: 18px;
	margin: 28px 0;
	padding: 24px 64px 24px 30px;
	position: relative;
}

.article-content blockquote::before {
	color: var(--article-gold);
	content: "“";
	font-family: Georgia, serif;
	font-size: 58px;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 18px;
}

.article-content table {
	border-collapse: collapse;
	margin: 25px 0;
	width: 100%;
}

.article-content .wp-block-table,
.article-content > table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

.article-content th,
.article-content td {
	border: 1px solid var(--article-border);
	padding: 12px;
}

.article-tags {
	align-items: center;
	border-top: 1px solid var(--article-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	padding-top: 18px;
}

.article-tags a {
	background: #fff;
	border: 1px solid #ddd8ca;
	border-radius: 4px;
	color: #606863;
	font-size: 12px;
	padding: 4px 10px;
	text-decoration: none;
}

.article-tags a:hover {
	border-color: var(--article-green);
	color: var(--article-green);
}

.article-ad,
.sidebar-panel {
	background: #fff;
	border: 1px solid var(--article-border);
	border-radius: 9px;
}

.article-ad {
	align-items: center;
	aspect-ratio: 300 / 250;
	color: #b8bbb8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	outline: 1px dashed #c9cbc9;
	outline-offset: -15px;
}

.article-ad .dashicons {
	font-size: 40px;
	height: 40px;
	margin-bottom: 5px;
	width: 40px;
}

.article-ad strong {
	font-size: 15px;
}

.article-ad small {
	font-size: 14px;
}

.sidebar-panel {
	padding: 16px 15px 12px;
}

.sidebar-panel h2,
.article-section-title {
	color: var(--article-green);
	font-size: 21px;
	line-height: 1.4;
	margin: 0 0 9px;
	padding-bottom: 8px;
	position: relative;
}

.sidebar-panel h2::after,
.article-section-title::after {
	background: var(--article-gold);
	bottom: 0;
	content: "";
	height: 3px;
	position: absolute;
	right: 0;
	width: 54px;
}

.sidebar-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-news-list li {
	border-bottom: 1px solid #efede7;
	padding: 11px 0;
	position: relative;
}

.sidebar-news-list li:last-child {
	border-bottom: 0;
}

.sidebar-news-list a {
	align-items: center;
	color: var(--article-ink);
	display: flex;
	gap: 10px;
	text-decoration: none;
}

.sidebar-news-list img,
.sidebar-news-list .article-image-fallback {
	border-radius: 5px;
	flex: 0 0 72px;
	height: 60px;
	object-fit: cover;
	width: 72px;
}

.article-image-fallback {
	align-items: center;
	background: #eef2ed;
	color: #9baa9f;
	display: flex;
	justify-content: center;
}

.sidebar-news-list strong {
	display: -webkit-box;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sidebar-news-list small {
	align-items: center;
	color: #929793;
	display: flex;
	font-size: 9px;
	gap: 3px;
	margin-top: 5px;
}

.sidebar-news-list--ranked li {
	padding-inline-start: 28px;
}

.sidebar-rank {
	align-items: center;
	background: var(--article-gold);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 11px;
	height: 22px;
	justify-content: center;
	left: auto;
	position: absolute;
	right: 0;
	top: 31px;
	width: 22px;
}

.sidebar-more {
	color: var(--article-green);
	display: block;
	font-size: 11px;
	margin-top: 8px;
	text-align: center;
	text-decoration: none;
}

.sidebar-subscribe {
	background: linear-gradient(145deg, #075c38, #01462a);
	border-radius: 9px;
	color: #fff;
	padding: 24px 20px;
	position: relative;
}

.sidebar-subscribe > .dashicons {
	color: var(--article-gold);
	font-size: 34px;
	height: 34px;
	left: 20px;
	position: absolute;
	top: 22px;
	width: 34px;
}

.sidebar-subscribe h2 {
	font-size: 18px;
	margin: 0 0 7px;
}

.sidebar-subscribe p {
	color: #d9ebe2;
	font-size: 12px;
	line-height: 1.8;
	margin: 0 0 14px;
	max-width: 215px;
}

.sidebar-subscribe input,
.sidebar-subscribe button {
	border: 0;
	border-radius: 4px;
	font: inherit;
	height: 38px;
	width: 100%;
}

.sidebar-subscribe input {
	margin-bottom: 9px;
	padding: 0 12px;
}

.sidebar-subscribe button {
	background: var(--article-gold);
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
}

.article-post-nav,
.article-author-box {
	margin-top: 28px;
}

.article-post-nav {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr 1fr;
}

.article-post-nav.has-single-card {
	grid-template-columns: 1fr;
}

.article-post-nav.has-single-card .article-nav-card {
	max-width: calc(50% - 9px);
}

.article-nav-card {
	align-items: stretch;
	background: var(--article-surface);
	border: 1px solid var(--article-border);
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(20, 55, 37, .035);
	color: var(--article-ink);
	display: grid;
	gap: 18px;
	grid-template-columns: 22% minmax(0, 1fr);
	min-height: 190px;
	min-width: 0;
	overflow: hidden;
	padding: 18px;
	text-decoration: none;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}

.article-nav-card:hover {
	border-color: color-mix(in srgb, var(--article-gold), var(--article-border) 45%);
	box-shadow: 0 14px 36px rgba(20, 55, 37, .1);
	transform: translateY(-3px);
}

.article-nav-card--next {
	grid-template-columns: 22% minmax(0, 1fr);
}

.article-nav-card--next .article-nav-card__image {
	grid-column: 1;
	grid-row: 1;
}

.article-nav-card--next .article-nav-card__content {
	grid-column: 2;
	grid-row: 1;
}

.article-nav-card__image {
	align-self: center;
	aspect-ratio: 1;
	border-radius: 10px;
	display: block;
	min-height: 0;
	overflow: hidden;
	width: 100%;
}

.article-nav-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
	width: 100%;
}

.article-nav-card:hover .article-nav-card__image img {
	transform: scale(1.035);
}

.article-nav-card__content {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 50px;
	grid-template-rows: auto auto 1fr;
	min-width: 0;
	padding: 18px 0 8px;
}

.article-nav-card__content small {
	align-items: center;
	color: var(--article-muted);
	display: flex;
	font-size: 13px;
	gap: 11px;
	grid-column: 1 / -1;
	margin-bottom: 13px;
}

.article-nav-card__content small > span {
	background: var(--article-gold);
	display: block;
	height: 2px;
	width: 28px;
}

.article-nav-card__content strong {
	align-self: start;
	display: -webkit-box;
	font-size: clamp(16px, 1.45vw, 21px);
	font-weight: 700;
	grid-column: 1 / -1;
	line-height: 1.7;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.article-nav-card__arrow {
	align-items: center;
	align-self: end;
	border: 1.5px solid var(--article-green);
	border-radius: 50%;
	color: var(--article-green);
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 25px;
	grid-column: 2;
	grid-row: 3;
	height: 46px;
	justify-self: end;
	justify-content: center;
	transition: background .2s, color .2s, transform .2s;
	width: 46px;
}

.article-nav-card:hover .article-nav-card__arrow {
	background: var(--article-green);
	color: #fff;
	transform: translateX(-3px);
}

.article-nav-card--next:hover .article-nav-card__arrow {
	transform: translateX(3px);
}

.article-nav-card--no-image {
	grid-template-columns: 1fr;
}

.article-author-box {
	border: 1px solid var(--article-border);
	border-radius: 8px;
}

.article-author-box {
	align-items: center;
	display: flex;
	gap: 20px;
	padding: 18px 24px;
}

.article-author-box img {
	border-radius: 50%;
	height: 82px;
	object-fit: cover;
	width: 82px;
}

.article-author-box h2 {
	font-size: 17px;
	margin: 0 0 5px;
}

.article-author-box p {
	color: #7b827e;
	font-size: 12px;
	line-height: 1.9;
	margin: 0;
}

.article-author-box a {
	color: var(--article-green);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.related-articles,
.article-comments {
	margin-top: 28px;
}

.article-section-title {
	border-bottom: 1px solid var(--article-border);
	font-size: 22px;
	margin-bottom: 16px;
}

.related-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(var(--article-related-columns, 3), minmax(0, 1fr));
}

.related-grid article {
	border: 1px solid var(--article-border);
	border-radius: 8px;
	overflow: hidden;
	padding: 6px 6px 12px;
}

.related-image {
	display: block;
	position: relative;
}

.related-image img,
.related-image > .article-image-fallback {
	aspect-ratio: 16 / 8;
	border-radius: 6px;
	display: flex;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.related-image > span:not(.article-image-fallback) {
	background: var(--article-gold);
	border-radius: 3px;
	bottom: 8px;
	color: #fff;
	font-size: 9px;
	padding: 3px 8px;
	position: absolute;
	right: 8px;
}

.related-grid h3 {
	font-size: 13px;
	line-height: 1.6;
	margin: 10px 7px 5px;
}

.related-grid h3 a {
	color: var(--article-ink);
	text-decoration: none;
}

.related-grid small {
	align-items: center;
	color: #929793;
	display: flex;
	font-size: 9px;
	gap: 4px;
	margin: 0 7px;
}

.article-comments .comment-list {
	list-style: none;
	padding: 0;
}

.comments-area {
	background: var(--article-surface);
	border: 1px solid var(--article-border);
	border-radius: 10px;
	box-shadow: var(--article-shadow);
	padding: clamp(18px, 3vw, 30px);
}

.comments-heading {
	align-items: center;
	display: flex;
	gap: 8px;
}

.comments-heading h3,
.comment-reply-title {
	color: var(--article-ink);
	font-size: 18px;
	margin: 0 0 18px;
}

.comment-list,
.comment-list .children {
	list-style: none;
}

.comment-list .children {
	border-inline-start: 2px solid var(--article-border);
	margin-inline-start: 22px;
	padding-inline-start: 18px;
}

.comment-body {
	border-bottom: 1px solid var(--article-border);
	margin-bottom: 20px;
	padding: 0 0 18px;
}

.comment-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.comment-author {
	align-items: center;
	display: flex;
	gap: 9px;
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata,
.comment-metadata a {
	color: var(--article-muted);
	font-size: 11px;
	text-decoration: none;
}

.comment-content {
	font-size: 14px;
	line-height: 1.9;
	padding-inline-start: 63px;
}

.reply {
	padding-inline-start: 63px;
}

.comment-reply-link {
	color: var(--article-green);
	font-size: 12px;
	font-weight: 700;
}

.article-comments textarea,
.article-comments input:not([type="submit"]) {
	border: 1px solid var(--article-border);
	border-radius: 4px;
	font: inherit;
	padding: 10px;
	width: 100%;
}

.article-comments textarea {
	min-height: 95px;
}

.article-comments .comment-form {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
}

.article-comments .comment-notes,
.article-comments .comment-form-comment,
.article-comments .form-submit,
.article-comments .comment-form-cookies-consent {
	grid-column: 1 / -1;
}

.article-comments .submit {
	background: var(--article-gold);
	border: 0;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 10px 24px;
}

.article-comments label {
	color: var(--article-ink);
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 5px;
}

.article-comments .comment-form-cookies-consent {
	align-items: center;
	display: flex;
	gap: 8px;
}

.article-comments .comment-form-cookies-consent input {
	width: auto;
}

.article-comments .comment-form-cookies-consent label {
	margin: 0;
}

.article-reading-progress {
	background: color-mix(in srgb, var(--article-border), transparent 25%);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
	height: 4px;
	inset: 0 0 auto;
	pointer-events: none;
	position: fixed;
	z-index: 10001;
}

.article-reading-progress span {
	background: linear-gradient(90deg, var(--article-green), var(--article-gold));
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	width: 100%;
}

.article-back-top {
	align-items: center;
	background: var(--article-green);
	border: 0;
	border-radius: 50%;
	bottom: 24px;
	box-shadow: var(--article-shadow);
	color: #fff;
	cursor: pointer;
	display: flex;
	height: 46px;
	justify-content: center;
	left: 24px;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transform: translateY(12px);
	transition: opacity .2s, transform .2s;
	width: 46px;
	z-index: 30;
}

.article-back-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.article-lightbox {
	align-items: center;
	background: rgba(3, 18, 11, .94);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 40px;
	position: fixed;
	z-index: 10000;
}

.article-lightbox[hidden] {
	display: none;
}

.article-lightbox img {
	max-height: 90vh;
	max-width: 92vw;
	object-fit: contain;
}

.article-lightbox-close {
	background: var(--article-surface);
	border: 0;
	border-radius: 50%;
	color: var(--article-ink);
	cursor: pointer;
	font-size: 28px;
	height: 44px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 44px;
}

body.article-lightbox-active {
	overflow: hidden;
}

.article-copy-status {
	background: var(--article-green);
	border-radius: 5px;
	color: #fff;
	font-size: 11px;
	inset-inline-end: 50px;
	padding: 5px 8px;
	position: absolute;
	white-space: nowrap;
}

.article-copy-status:empty {
	display: none;
}

.article-newsletter-form label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 5px;
}

.article-newsletter-form small {
	color: #bdd3c8;
	display: block;
	font-size: 9px;
	line-height: 1.6;
	margin-top: 6px;
}

.single-post .site-footer {
	margin-top: 34px;
}

.single-article-page :where(a, button, input, textarea):focus-visible {
	outline: 3px solid var(--article-gold);
	outline-offset: 3px;
}

@media (max-width: 1180px) {
	.article-layout {
		grid-template-columns: minmax(0, 1fr) 270px;
		gap: 38px;
	}

	.article-share {
		flex-direction: row;
		inset-inline-end: auto;
		position: static;
		width: max-content;
	}

	.article-share a,
	.article-share button {
		border-bottom: 0;
		border-inline-end: 1px solid #eeeae1;
	}
}

@media (max-width: 900px) {
	.single-article-page {
		padding-top: 22px;
	}

	.article-layout {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"main"
			"sidebar";
	}

	.article-header h1 {
		font-size: var(--article-title-tablet, 36px);
	}

	.article-content {
		--article-active-text-size: var(--article-text-tablet, 17px);
	}

	.article-sidebar__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.article-sidebar__inner.is-sticky {
		position: static;
	}

	.article-ad,
	.sidebar-subscribe {
		min-height: 250px;
	}
}

@media (max-width: 600px) {
	.article-header h1 {
		font-size: var(--article-title-mobile, 29px);
	}

	.article-deck {
		font-size: 15px;
	}

	.article-byline {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.article-font-controls {
		align-self: stretch;
		justify-content: center;
	}

	.article-meta-items {
		gap: 14px;
	}

	.article-feature img {
		aspect-ratio: 4 / 3;
	}

	.article-content {
		--article-active-text-size: var(--article-text-mobile, 16px);
		line-height: 1.95;
	}

	.article-content blockquote {
		padding: 22px 52px 22px 18px;
	}

	.article-post-nav,
	.related-grid,
	.article-comments .comment-form,
	.article-sidebar__inner {
		grid-template-columns: 1fr;
	}

	.article-post-nav {
		gap: 15px;
	}

	.article-post-nav.has-single-card .article-nav-card {
		max-width: none;
	}

	.article-nav-card,
	.article-nav-card--next {
		gap: 14px;
		grid-template-columns: 92px minmax(0, 1fr);
		min-height: 146px;
		padding: 14px;
	}

	.article-nav-card--next .article-nav-card__image {
		grid-column: 1;
	}

	.article-nav-card--next .article-nav-card__content {
		grid-column: 2;
	}

	.article-nav-card__image {
		min-height: 0;
	}

	.article-nav-card__content {
		grid-template-columns: minmax(0, 1fr) 42px;
		padding: 6px 0;
	}

	.article-nav-card__content small {
		font-size: 11px;
		margin-bottom: 7px;
	}

	.article-nav-card__content strong {
		font-size: 15px;
		line-height: 1.65;
		-webkit-line-clamp: 2;
	}

	.article-nav-card__arrow {
		font-size: 21px;
		height: 40px;
		width: 40px;
	}

	.article-nav-card--no-image {
		grid-template-columns: 1fr;
	}

	.article-author-box {
		align-items: flex-start;
		padding: 16px;
	}

	.article-author-box img {
		height: 64px;
		width: 64px;
	}

	.article-comments .comment-form > * {
		grid-column: 1;
	}

	.article-share {
		max-width: none;
		overflow: hidden;
		width: 100%;
	}

	.article-share a,
	.article-share button {
		flex: 1 1 0;
		height: 44px;
		min-width: 0;
	}

	.article-back-top {
		bottom: 16px;
		left: 16px;
	}

	.comment-content,
	.reply {
		padding-inline-start: 0;
	}

	.comment-list .children {
		margin-inline-start: 8px;
		padding-inline-start: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.article-back-top {
		transition: none;
	}
}

@media (prefers-color-scheme: dark) {
	.single-article-page {
		--article-ink: #f1f4f2;
		--article-muted: #b7c1bb;
		--article-border: #30443a;
		--article-soft: #1b2d24;
		--article-surface: #13231b;
		--article-page: #0c1913;
		--article-shadow: 0 8px 28px rgba(0, 0, 0, .28);
	}

	.article-content {
		color: #d5ddd8;
	}

	.article-share,
	.article-share a,
	.article-share button,
	.article-tags a,
	.article-ad,
	.sidebar-panel,
	.article-content blockquote,
	.related-grid article,
	.article-nav-card,
	.article-author-box,
	.article-comments textarea,
	.article-comments input:not([type="submit"]) {
		background: var(--article-surface);
		color: var(--article-ink);
	}

	.article-image-fallback {
		background: #21362b;
		color: #93a49a;
	}
}

html[data-theme="dark"] .single-article-page,
body.dark-mode .single-article-page {
	--article-ink: #f1f4f2;
	--article-muted: #b7c1bb;
	--article-border: #30443a;
	--article-soft: #1b2d24;
	--article-surface: #13231b;
	--article-page: #0c1913;
	--article-shadow: 0 8px 28px rgba(0, 0, 0, .28);
}

html[data-theme="dark"] .article-content,
body.dark-mode .article-content {
	color: #d5ddd8;
}

html[data-theme="dark"] :is(.article-share, .article-share a, .article-share button, .article-tags a, .article-ad, .sidebar-panel, .article-content blockquote, .related-grid article, .article-nav-card, .article-author-box, .comments-area, .article-comments textarea, .article-comments input:not([type="submit"])),
body.dark-mode :is(.article-share, .article-share a, .article-share button, .article-tags a, .article-ad, .sidebar-panel, .article-content blockquote, .related-grid article, .article-nav-card, .article-author-box, .comments-area, .article-comments textarea, .article-comments input:not([type="submit"])) {
	background: var(--article-surface);
	color: var(--article-ink);
}

@media print {
	.agrinews-header,
	.site-footer,
	.article-sidebar,
	.article-share,
	.article-breadcrumbs,
	.article-post-nav,
	.related-articles,
	.article-comments,
	.assistant {
		display: none !important;
	}

	.article-layout {
		display: block;
	}
}
