/* CHXN page: blog listing ("Tin tức") + single post — home.php/archive.php
   (listing) and single.php. No Flatsome row/col wrapper to convert here —
   each template prints its own ".chxn-blog-layout" grid directly. */

.chxn-blog-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 34px;
	align-items: start;
	padding-top: 34px;
	padding-bottom: 60px;
}
/* single-post reading view on mobile only (not desktop/tablet, which
   keeps the original spacing below — not the listing page either, which
   still wants its own 60px breathing room before the footer) — runs
   straight down into the footer instead of leaving a block of bare page
   background under it, now that the article itself is no longer a
   separate inset card there. */
@media (max-width: 850px) {
	body.single-post .chxn-blog-layout {
		padding-bottom: 0;
	}
}
/* below ~1380px this shared container has no spare margin outside its
   own 20px padding for the fixed floating contact cluster (components/
   fab.css, bottom-right) to sit in — the 320px sidebar's own price/link
   text can end up flush against the container edge, right where those
   buttons float. Same fix as pages/checkout.css, shop.css, product-
   detail.css. */
@media (min-width: 851px) and (max-width: 1380px) {
	.chxn-blog-layout {
		padding-right: 90px;
	}
}
/* grid items default to "min-width:auto" — refusing to shrink below their
   own CONTENT's intrinsic width even when that's wider than the assigned
   "320px" track — so widget content (long product names, price ranges)
   was pushing this whole column past its track, off the right edge of
   the viewport, instead of wrapping to fit. */
.chxn-blog-layout > * {
	min-width: 0;
}
#secondary {
	position: sticky;
	top: 20px;
}

/* ---- blog listing banner (business-logic.php's "chxn_before_blog") ---- */
.chxn-blog-banner {
	background: var(--chxn-cream);
	border-bottom: 1px solid var(--chxn-line);
}
.chxn-blog-banner-inner {
	max-width: var(--chxn-container);
	margin: 0 auto;
	padding: 30px 20px 26px;
	box-sizing: border-box;
}
.chxn-blog-crumb {
	font-size: 13px;
	color: var(--chxn-ink-2);
}
.chxn-blog-crumb a {
	color: var(--chxn-ink-2);
	text-decoration: none;
}
.chxn-blog-crumb a:hover {
	color: var(--chxn-green-d);
}
.chxn-blog-eyebrow-top {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--chxn-green-d);
	margin-top: 10px;
}
.chxn-blog-banner-inner h1 {
	font-size: 30px;
	font-weight: 800;
	margin: 6px 0 2px;
}
.chxn-blog-banner-inner p {
	color: var(--chxn-ink-2);
	font-size: 14px;
	margin: 0;
}

/* ---- featured post ---- */
.chxn-blog-featured {
	text-decoration: none;
	color: var(--chxn-ink);
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 26px;
	transition: box-shadow .2s;
}
.chxn-blog-featured:hover {
	box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}
.chxn-blog-featured img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}
.chxn-blog-featured-text {
	padding: 32px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.chxn-blog-eyebrow {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--chxn-green-d);
}
.chxn-blog-featured-text h2 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	margin: 12px 0 0;
}
.chxn-blog-featured-text p {
	font-size: 14px;
	color: var(--chxn-ink-2);
	line-height: 1.7;
	margin: 12px 0 0;
}
.chxn-blog-meta {
	font-size: 12.5px;
	color: var(--chxn-ink-2);
	margin-top: 16px;
	display: block;
}

/* ---- post grid ---- */
.chxn-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.chxn-blog-card {
	text-decoration: none;
	color: var(--chxn-ink);
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s;
}
.chxn-blog-card:hover {
	box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
}
.chxn-blog-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}
.chxn-blog-card-text {
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.chxn-blog-card-text .chxn-blog-eyebrow {
	font-size: 11px;
	letter-spacing: .06em;
}
.chxn-blog-card-text h3 {
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.35;
	margin: 8px 0 0;
}
.chxn-blog-card-text p {
	font-size: 13px;
	color: var(--chxn-ink-2);
	line-height: 1.6;
	margin: 8px 0 0;
	flex: 1;
}
.chxn-blog-card-text .chxn-blog-meta {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--chxn-line);
}

.chxn-pagination {
	margin-top: 32px;
}
.chxn-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.chxn-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: var(--chxn-radius-pill);
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	color: var(--chxn-ink-2);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.chxn-pagination .page-numbers.current {
	background: var(--chxn-green);
	border-color: var(--chxn-green);
	color: #fff;
}

/* ---- sidebar widgets (shared card shell — sidebar.php reuses the same
   ".chxn-blog-widget" wrapper for the policy-pages cross-nav context too,
   see pages/policy.css, since that page's CSS never loads alongside this
   one). ---- */
.chxn-blog-widget {
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: var(--chxn-radius-card);
	padding: 20px 22px;
}
.chxn-blog-widget-title {
	font-weight: 800;
	font-size: 15px;
	margin-bottom: 14px;
}
.chxn-blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.chxn-blog-search-widget {
	padding: 20px;
}
.chxn-blog-search-widget form {
	display: flex;
	align-items: center;
	background: var(--chxn-bg);
	border: 1.5px solid var(--chxn-line);
	border-radius: var(--chxn-radius-pill);
	padding: 4px 4px 4px 16px;
	margin: 0;
}
.chxn-blog-search-widget input {
	flex: 1;
	border: 0;
	box-shadow: none;
	background: none;
	outline: none;
	font-size: 13.5px;
	font-family: inherit;
	padding: 0;
	margin: 0;
}
.chxn-blog-search-widget button {
	background: var(--chxn-green);
	color: #fff;
	border: 0;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	margin: 0;
}
.chxn-blog-search-widget button:hover {
	background: var(--chxn-green-d);
}
.chxn-topic-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.chxn-topic-pills a {
	text-decoration: none;
	background: var(--chxn-green-l);
	color: var(--chxn-green-d);
	font-size: 12.5px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: var(--chxn-radius-pill);
}
.chxn-topic-pills a:hover {
	background: var(--chxn-green);
	color: #fff;
}
.chxn-popular-post-list,
.chxn-mini-product-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.chxn-popular-post-list a {
	text-decoration: none;
	color: var(--chxn-ink);
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.chxn-popular-post-list a:hover {
	color: var(--chxn-green-d);
}
.chxn-popular-post-n {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--chxn-green-l);
	color: var(--chxn-green-d);
	font-weight: 800;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chxn-popular-post-title {
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
}
.chxn-popular-post-read {
	font-size: 11.5px;
	color: var(--chxn-ink-2);
	margin-top: 3px;
}
.chxn-mini-product-list a {
	text-decoration: none;
	color: var(--chxn-ink);
	display: flex;
	gap: 12px;
	align-items: center;
}
.chxn-mini-product-list a:hover {
	color: var(--chxn-green-d);
}
.chxn-mini-product-list img {
	width: 54px;
	height: 54px;
	border-radius: 9px;
	object-fit: cover;
	flex: none;
}
.chxn-mini-product-name {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}
.chxn-mini-product-price {
	font-size: 13px;
	color: var(--chxn-red);
	font-weight: 800;
	margin-top: 3px;
}
.chxn-mini-product-price ins,
.chxn-mini-product-price ins .amount,
.chxn-mini-product-price .amount {
	color: var(--chxn-red);
	text-decoration: none;
}
.chxn-mini-product-price del,
.chxn-mini-product-price del .amount {
	color: var(--chxn-ink-2);
	font-weight: 400;
	font-size: 11px;
}
.chxn-mini-product-price .devvn_woocommerce_price_prefix,
.chxn-mini-product-price .devvn_woocommerce_price_suffix {
	display: none;
}
.chxn-blog-widget-more {
	display: block;
	text-align: center;
	margin-top: 16px;
	color: var(--chxn-green-d);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
}
.chxn-blog-combo-widget {
	background: var(--chxn-green-d);
	border-radius: 14px;
	padding: 22px;
	color: #fff;
	text-align: center;
}
.chxn-blog-combo-icon {
	font-size: 26px;
}
.chxn-blog-combo-title {
	font-weight: 800;
	font-size: 15px;
	margin-top: 8px;
}
.chxn-blog-combo-text {
	font-size: 12.5px;
	color: #d6ece2;
	line-height: 1.6;
	margin: 8px 0 14px;
}
.chxn-blog-combo-btn {
	display: inline-block;
	background: #fff;
	color: var(--chxn-green-d);
	text-decoration: none;
	border-radius: var(--chxn-radius-pill);
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 700;
}

/* ==================== SINGLE POST ==================== */

.chxn-blog-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 60;
	background: rgba(18, 107, 72, .12);
}
.chxn-blog-progress-bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #137a52, #5cab10);
	transition: width .1s linear;
}
/* printed inside ".chxn-blog-article-card" itself (single.php) rather
   than as its own strip above ".chxn-blog-layout" — it now just inherits
   the card's own padding/width like every other piece of the article
   instead of carrying its own separate centering/top-padding. */
.chxn-blog-single-crumb {
	font-size: 13px;
	color: var(--chxn-ink-2);
	margin-bottom: 6px;
}
.chxn-blog-single-crumb a {
	color: var(--chxn-ink-2);
	text-decoration: none;
}
.chxn-blog-single-crumb a:hover {
	color: var(--chxn-green-d);
}

.chxn-blog-article-card {
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 16px;
	padding: 30px 34px;
	box-shadow: 0 4px 16px rgba(18, 107, 72, .04);
}
/* mobile only — no card background/border/shadow, so the article reads
   as part of the page rather than a boxed widget floating inset within
   its own (already full-width) column. Side padding trimmed down too,
   since it's no longer separating text from a card edge. Desktop/tablet
   keep the original boxed-card look above. */
@media (max-width: 850px) {
	.chxn-blog-article-card {
		background: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 30px 0 0;
	}
}
.chxn-blog-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.22;
	margin: 12px 0 0;
}
.chxn-blog-byline {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 14px 0 0;
	font-size: 13px;
	color: var(--chxn-ink-2);
	flex-wrap: wrap;
}
.chxn-blog-byline-author {
	display: flex;
	align-items: center;
	gap: 8px;
}
.chxn-blog-byline-author img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}
.chxn-blog-cover {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid var(--chxn-line);
	margin: 22px 0 0;
	display: block;
}
.chxn-blog-content {
	font-size: 15px;
	line-height: 1.9;
	color: var(--chxn-ink-2);
	margin-top: 24px;
}
.chxn-blog-content h2,
.chxn-blog-content h3 {
	font-weight: 800;
	color: var(--chxn-ink);
	margin: 28px 0 0;
}
.chxn-blog-content h2 {
	font-size: 21px;
}
.chxn-blog-content h3 {
	font-size: 18px;
}
.chxn-blog-content p {
	margin: 10px 0 0;
}
/* ---- table of contents (chxn_blog_toc, business-logic.php) — theme-native
   replacement for the fixed-toc plugin's floating widget ---- */
.chxn-toc {
	background: var(--chxn-cream);
	border: 1px solid var(--chxn-line);
	border-radius: 12px;
	padding: 4px 18px;
	margin: 24px 0 0;
}
.chxn-toc-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	background: none;
	border: 0;
	padding: 11px 0;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 800;
	color: var(--chxn-ink);
	text-align: left;
	cursor: pointer;
}
.chxn-toc-caret {
	margin-left: auto;
	color: var(--chxn-ink-2);
	font-size: 12px;
	transition: transform .2s;
}
.chxn-toc.is-collapsed .chxn-toc-caret {
	transform: rotate(-90deg);
}
.chxn-toc-list {
	list-style: none;
	margin: 0;
	padding: 2px 0 14px;
	/* slide open/closed instead of popping (animation pass) — max-height
	   is generous headroom, not a real size; a 30-heading TOC still fits. */
	max-height: 900px;
	overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
	.chxn-toc-list {
		transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
	}
}
.chxn-toc.is-collapsed .chxn-toc-list {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.chxn-toc-list li {
	margin: 0;
	padding: 3px 0;
}
.chxn-toc-list .chxn-toc-l3 {
	padding-left: 18px;
	font-size: 13px;
}
.chxn-toc-list a {
	color: var(--chxn-ink-2);
	text-decoration: none;
}
.chxn-toc-list .chxn-toc-l2 > a {
	font-weight: 600;
	color: var(--chxn-ink);
	font-size: 13.5px;
}
.chxn-toc-list a:hover {
	color: var(--chxn-green-d);
}
/* anchor jumps land the heading clear of the viewport edge; smooth only
   outside the reduced-motion preference. */
.chxn-blog-content h2[id],
.chxn-blog-content h3[id] {
	scroll-margin-top: 24px;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
/* mobile only — evenly aligned both edges, like print body copy;
   "text-align-last:left" keeps just the final (usually short) line of
   each paragraph at its normal ragged-right instead of stretching it
   full-width too. Desktop/tablet keep the original ragged-right text. */
@media (max-width: 850px) {
	.chxn-blog-content p {
		text-align: justify;
		text-align-last: left;
	}
}
.chxn-blog-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 16px 0;
}
.chxn-blog-content blockquote {
	position: relative;
	margin: 24px 0;
	padding: 26px 28px 26px 64px;
	background: var(--chxn-green-l);
	border-left: 4px solid var(--chxn-green);
	border-radius: var(--chxn-radius-card);
	color: var(--chxn-ink);
	font-size: 15.5px;
	font-style: italic;
	line-height: 1.75;
}
.chxn-blog-content blockquote::before {
	content: "\201C";
	position: absolute;
	top: 8px;
	left: 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 46px;
	line-height: 1;
	color: var(--chxn-green);
	opacity: .5;
}
.chxn-blog-content blockquote p {
	margin: 0;
	position: relative;
}
.chxn-blog-content blockquote p + p {
	margin-top: 10px;
}
.chxn-blog-content blockquote b,
.chxn-blog-content blockquote strong {
	font-style: normal;
	color: var(--chxn-green-d);
}
/* kk-star-ratings auto-appends a "rate this post" widget to the_content()
   globally (meant for products) — not part of blog-detail.dc.html */
.chxn-blog-content .kk-star-ratings {
	display: none;
}

.chxn-blog-share {
	margin: 30px 0 0;
	padding: 16px 0;
	border-top: 1px solid var(--chxn-line);
	border-bottom: 1px solid var(--chxn-line);
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.chxn-blog-share-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--chxn-ink);
}
.chxn-blog-share a,
.chxn-blog-share button {
	text-decoration: none;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: var(--chxn-radius-pill);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	font-family: inherit;
	border: 0;
	line-height: 20px;
	margin: 0;
}
.chxn-share-fb {
	background: #1877f2;
	color: #fff;
}
.chxn-share-zalo {
	background: #0068ff;
	color: #fff;
	font-weight: 700;
}
.chxn-share-copy {
	background: var(--chxn-bg);
	color: var(--chxn-ink);
	border: 1px solid var(--chxn-line);
	font-weight: 600;
}

.chxn-blog-cta {
	margin: 24px 0 0;
	padding: 24px 26px;
	background: var(--chxn-green);
	border-radius: 16px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}
.chxn-blog-cta-title {
	font-weight: 800;
	font-size: 18px;
}
.chxn-blog-cta-text {
	font-size: 13.5px;
	color: #d6ece2;
	margin-top: 4px;
}
.chxn-blog-cta-btn {
	background: #fff;
	color: var(--chxn-green-d);
	text-decoration: none;
	border-radius: var(--chxn-radius-pill);
	padding: 12px 26px;
	font-size: 14.5px;
	font-weight: 700;
	white-space: nowrap;
}

/* ---- comment form (wp-comments-post default markup — WordPress core) ---- */
.comments-area {
	margin: 24px 0 0;
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 16px;
	padding: 30px 34px;
	box-shadow: 0 4px 16px rgba(18, 107, 72, .04);
}
#respond.comment-respond {
	background: transparent;
	padding: 0;
}
.comment-reply-title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 6px;
	color: var(--chxn-ink);
	display: flex;
	align-items: center;
	gap: 12px;
}
.comment-reply-title::before {
	content: "";
	width: 6px;
	height: 24px;
	background: var(--chxn-green);
	border-radius: var(--chxn-radius-pill);
	display: inline-block;
	flex-shrink: 0;
}
.comment-reply-title small a {
	font-size: 13px;
	font-weight: 500;
	color: var(--chxn-ink-2);
	margin-left: 8px;
}
.comment-notes,
.comment-form p.logged-in-as {
	font-size: 13px;
	color: var(--chxn-ink-2);
	margin: 0 0 20px;
}
.comment-form p {
	margin: 0 0 16px;
}
.comment-form label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--chxn-ink);
	margin: 0 0 6px;
}
.comment-form label .required {
	color: var(--chxn-red);
	text-decoration: none;
}
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	box-sizing: border-box;
	background: var(--chxn-bg);
	border: 1.5px solid var(--chxn-line);
	border-radius: 12px;
	padding: 11px 14px;
	font: inherit;
	font-size: 14px;
	color: var(--chxn-ink);
	transition: border-color .15s;
}
.comment-form textarea {
	min-height: 130px;
	resize: vertical;
}
.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
	outline: none;
	border-color: var(--chxn-green);
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
	display: inline-block;
	width: calc(33.333% - 11px);
	vertical-align: top;
}
.comment-form-author,
.comment-form-email {
	margin-right: 16px;
}
.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--chxn-ink-2);
}
.comment-form-cookies-consent label {
	display: inline;
	font-weight: 400;
	margin: 0;
}
.comment-form-cookies-consent input {
	margin-top: 3px;
}
.form-submit {
	margin: 20px 0 0;
}
.comment-form #submit {
	background: var(--chxn-green);
	color: #fff;
	border: 0;
	border-radius: var(--chxn-radius-pill);
	padding: 13px 30px;
	font-size: 14.5px;
	font-weight: 700;
	line-height: normal;
	cursor: pointer;
	transition: background .15s;
}
.comment-form #submit:hover {
	background: var(--chxn-green-d);
}
@media (max-width: 700px) {
	.comment-form-author,
	.comment-form-email,
	.comment-form-url {
		display: block;
		width: 100%;
		margin-right: 0;
	}
}

/* ---- related posts (business-logic.php's "chxn_after_blog") ---- */
.chxn-blog-related {
	background: var(--chxn-cream);
	border-top: 1px solid var(--chxn-line);
}
.chxn-blog-related-inner {
	max-width: var(--chxn-container);
	margin: 0 auto;
	padding: 44px 20px;
	box-sizing: border-box;
}
.chxn-blog-related-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}
.chxn-blog-related-bar {
	width: 6px;
	height: 26px;
	background: var(--chxn-green);
	border-radius: var(--chxn-radius-pill);
	display: inline-block;
	flex: none;
}
.chxn-blog-related-head h2 {
	font-size: 22px;
	font-weight: 800;
	margin: 0;
	white-space: nowrap;
}
.chxn-blog-related-line {
	flex: 1;
	height: 1px;
	background: var(--chxn-line);
}
.chxn-blog-related-head > a {
	color: var(--chxn-green-d);
	font-weight: 700;
	font-size: 13.5px;
	text-decoration: none;
	white-space: nowrap;
}
.chxn-blog-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.chxn-blog-related-card {
	text-decoration: none;
	color: var(--chxn-ink);
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.chxn-blog-related-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 34px rgba(13, 85, 56, .16);
}
.chxn-blog-related-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.chxn-blog-related-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.chxn-blog-related-card:hover .chxn-blog-related-media img {
	transform: scale(1.08);
}
.chxn-blog-related-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 85, 56, .55), rgba(13, 85, 56, 0) 55%);
}
.chxn-blog-related-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	background: rgba(255, 255, 255, .92);
	color: var(--chxn-green-d);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 5px 11px;
	border-radius: var(--chxn-radius-pill);
}
.chxn-blog-related-text {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.chxn-blog-related-text h3 {
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	flex: 1;
}
.chxn-blog-related-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--chxn-green-d);
	font-weight: 700;
	font-size: 13px;
	margin-top: 12px;
}

@media (max-width: 950px) {
	.chxn-blog-layout {
		grid-template-columns: 1fr;
	}
	#secondary {
		position: static;
	}
	.chxn-blog-featured,
	.chxn-blog-grid,
	.chxn-blog-related-grid {
		grid-template-columns: 1fr;
	}
}
