/* Blog — listing & post detail (darker type) */

.blog-page {
	--gm-ink: #08160e;
	--gm-ink-soft: #122418;
	--gm-mist: #f1f4f1;
	--gm-leaf: #2f6a48;
	--gm-line: rgba(8, 22, 14, 0.14);
	--gm-ease: cubic-bezier(0.22, 1, 0.36, 1);
	color: var(--gm-ink);
	background:
		radial-gradient(ellipse 55% 45% at 100% 0%, rgba(47, 106, 72, 0.1), transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 15%, rgba(8, 22, 14, 0.06), transparent 50%),
		linear-gradient(180deg, #f7f9f7 0%, var(--gm-mist) 50%, #e8efe9 100%);
}

.blog-page .cd-main-content {
	overflow-x: hidden;
}

.blog-shell {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* —— Elegant page loader (same pattern as Events / Trobairitz) —— */
.blog-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background:
		radial-gradient(ellipse 70% 50% at 50% 40%, rgba(47, 106, 72, 0.14), transparent 60%),
		linear-gradient(165deg, #f7f9f7 0%, #eef3ef 55%, #e4ebe5 100%);
	transition: opacity 0.65s var(--gm-ease), visibility 0.65s var(--gm-ease);
}

.blog-loader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.blog-loader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.blog-loader__ring {
	position: relative;
	width: 4.25rem;
	height: 4.25rem;
}

.blog-loader__orbit {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(8, 22, 14, 0.12);
	border-top-color: var(--gm-leaf);
	border-right-color: rgba(47, 106, 72, 0.35);
	animation: blogLoaderSpin 1.1s linear infinite;
}

.blog-loader__dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.45rem;
	height: 0.45rem;
	margin: -0.225rem 0 0 -0.225rem;
	border-radius: 50%;
	background: var(--gm-ink);
	box-shadow: 0 0 0 6px rgba(47, 106, 72, 0.12);
	animation: blogLoaderPulse 1.4s var(--gm-ease) infinite;
}

.blog-loader__label {
	margin: 0.35rem 0 0;
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gm-ink);
}

.blog-loader__hint {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: rgba(8, 22, 14, 0.5);
	animation: blogLoaderFade 1.6s var(--gm-ease) infinite;
}

.blog-listing .animsition {
	opacity: 1 !important;
}

.blog-listing:not(.blog-is-ready) .blog-intro,
.blog-listing:not(.blog-is-ready) .blog-section {
	opacity: 0;
}

.blog-listing.blog-is-ready .blog-intro,
.blog-listing.blog-is-ready .blog-section {
	opacity: 1;
	transition: opacity 0.45s var(--gm-ease);
}

.blog-listing.blog-is-ready .blog-kicker,
.blog-listing.blog-is-ready .blog-intro h1,
.blog-listing.blog-is-ready .blog-lede,
.blog-listing.blog-is-ready .blog-card {
	animation-play-state: running;
}

.blog-intro {
	padding: 7.5rem 0 2.5rem;
}

.blog-kicker {
	display: inline-block;
	margin: 0 0 1rem;
	font-family: "Lato", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gm-leaf);
	opacity: 0;
	animation: blogReveal 0.9s var(--gm-ease) 0.05s both;
}

.blog-listing .blog-kicker {
	animation-play-state: paused;
}

.blog-intro h1 {
	margin: 0 0 1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gm-ink);
	text-align: left;
	opacity: 0;
	animation: blogReveal 1s var(--gm-ease) 0.14s both;
}

.blog-listing .blog-intro h1 {
	animation-play-state: paused;
}

.blog-lede {
	margin: 0;
	max-width: 36rem;
	font-family: "Lato", sans-serif;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(8, 22, 14, 0.82);
	opacity: 0;
	animation: blogReveal 1s var(--gm-ease) 0.26s both;
}

.blog-listing .blog-lede {
	animation-play-state: paused;
}

.blog-section {
	padding: 0 0 5.5rem;
}

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
	gap: 2.5rem 3rem;
	align-items: start;
}

.blog-main,
.blog-sidebar {
	min-width: 0;
}

.blog-sidebar-inner {
	position: sticky;
	top: 6.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--gm-line);
}

.blog-sidebar-title {
	margin: 0 0 1rem;
	font-family: "Lato", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(8, 22, 14, 0.55);
}

.blog-cat-nav {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.blog-cat-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 0.85rem;
	border-left: 2px solid transparent;
	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-ink-soft);
	transition: background 0.3s var(--gm-ease), color 0.3s var(--gm-ease), border-color 0.3s var(--gm-ease);
}

.blog-cat-link:hover {
	background: rgba(47, 106, 72, 0.08);
	color: var(--gm-ink);
	border-left-color: rgba(47, 106, 72, 0.4);
	text-decoration: none;
}

.blog-cat-link.is-active {
	background: rgba(8, 22, 14, 0.06);
	border-left-color: var(--gm-leaf);
	color: var(--gm-ink);
}

.blog-cat-count {
	font-family: "Lato", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(8, 22, 14, 0.45);
}

.blog-cat-link.is-active .blog-cat-count {
	color: var(--gm-leaf);
}

.blog-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--gm-line);
}

.blog-section-head h2 {
	margin: 0;
	font-family: "Playball", Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	font-weight: 400;
	color: var(--gm-ink);
	text-align: left;
}

.blog-section-meta {
	font-family: "Lato", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(8, 22, 14, 0.5);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-card {
	opacity: 0;
	transform: translateY(18px);
	animation: blogReveal 0.85s var(--gm-ease) both;
	animation-play-state: paused;
}

.blog-card:nth-child(1) { animation-delay: 0.12s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.28s; }
.blog-card:nth-child(4) { animation-delay: 0.36s; }
.blog-card:nth-child(5) { animation-delay: 0.44s; }
.blog-card:nth-child(n+6) { animation-delay: 0.52s; }

.blog-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.blog-card-link:hover,
.blog-card-link:focus {
	text-decoration: none;
	color: inherit;
}

.blog-thumb {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(145deg, #122418, #08160e 60%, #1f3d2a);
	margin-bottom: 0.9rem;
}

.blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s var(--gm-ease);
}

.blog-card-link:hover .blog-thumb img {
	transform: scale(1.05);
}

.blog-thumb-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Playball", Georgia, serif;
	font-size: 2.75rem;
	color: rgba(244, 247, 244, 0.55);
}

.blog-card-title {
	margin: 0 0 0.4rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.4;
	color: var(--gm-ink);
	text-align: left;
	transition: color 0.3s var(--gm-ease);
}

.blog-card-link:hover .blog-card-title {
	color: var(--gm-leaf);
}

.blog-card-meta {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(8, 22, 14, 0.58);
}

.blog-empty {
	padding: 2rem 0;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(8, 22, 14, 0.65);
}

/* —— Detail —— */
.blog-detail-hero {
	position: relative;
	min-height: clamp(320px, 52vh, 520px);
	display: flex;
	align-items: flex-end;
	background: #08160e;
	overflow: hidden;
}

.blog-detail-hero__media {
	position: absolute;
	inset: 0;
}

.blog-detail-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.02);
	animation: blogHeroZoom 12s var(--gm-ease) forwards;
}

.blog-detail-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 22, 14, 0.28) 0%, rgba(8, 22, 14, 0.58) 45%, rgba(8, 22, 14, 0.94) 100%);
}

.blog-detail-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding: 7rem 1.5rem 2.75rem;
	color: #f4f7f4;
}

.blog-detail-hero .blog-kicker {
	color: rgba(190, 220, 200, 0.95);
	animation: blogFadeUp 0.8s var(--gm-ease) 0.1s forwards;
	animation-play-state: running;
}

.blog-detail-hero .blog-kicker a {
	color: inherit;
	text-decoration: none;
}

.blog-detail-hero h1 {
	margin: 0 0 1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #ffffff;
	text-align: left;
	opacity: 0;
	animation: blogFadeUp 0.9s var(--gm-ease) 0.2s forwards;
}

.blog-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: "Lato", sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(244, 247, 244, 0.82);
	opacity: 0;
	animation: blogFadeUp 0.9s var(--gm-ease) 0.35s forwards;
}

.blog-detail-body-wrap {
	padding: 2.75rem 0 5rem;
}

.blog-detail-body {
	max-width: 720px;
	margin: 0 auto;
	font-family: "Lato", sans-serif;
	font-size: 1.08rem;
	line-height: 1.85;
	color: rgba(8, 22, 14, 0.9);
}

.blog-detail-body p {
	margin: 0 0 1.25rem;
	color: rgba(8, 22, 14, 0.9);
}

.blog-detail-body p:last-child {
	margin-bottom: 0;
}

.blog-detail-body a {
	color: var(--gm-leaf);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.blog-detail-body img {
	max-width: 100%;
	height: auto;
}

.blog-detail-body h2,
.blog-detail-body h3 {
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.03em;
	color: var(--gm-ink);
	text-align: left;
	margin: 2rem 0 0.85rem;
}

.blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.blog-tag {
	font-family: "Lato", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gm-leaf);
	border-bottom: 1px solid rgba(47, 106, 72, 0.4);
	padding-bottom: 0.1rem;
}

/* —— Engage: views, likes, share —— */
.blog-engage {
	max-width: 720px;
	margin: 2.75rem auto 0;
	padding: 1.25rem 1.35rem;
	border: 1px solid var(--gm-line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 244, 241, 0.95));
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1.25rem 2rem;
}

.blog-engage-row {
	display: flex;
	align-items: center;
	min-width: 0;
}

.blog-engage-metrics {
	gap: 0.75rem;
}

.blog-metric {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-height: 3rem;
	padding: 0.45rem 0.85rem 0.45rem 0.45rem;
	border: 1px solid transparent;
	background: transparent;
	font: inherit;
	color: var(--gm-ink-soft);
	text-align: left;
}

.blog-metric-icon {
	display: inline-grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(47, 106, 72, 0.12);
	color: var(--gm-leaf);
	font-size: 1rem;
	line-height: 1;
}

.blog-metric-icon .fa {
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	margin: 0;
}

.blog-metric-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.1rem;
	line-height: 1.15;
}

.blog-metric-text strong {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--gm-ink);
}

.blog-metric-text span {
	font-family: "Lato", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(8, 22, 14, 0.5);
}

.blog-like-btn,
button.blog-like-btn {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	border-color: var(--gm-line);
	background: rgba(255, 255, 255, 0.65);
	color: var(--gm-ink-soft);
	width: auto;
	transition: background 0.3s var(--gm-ease), border-color 0.3s var(--gm-ease), color 0.3s var(--gm-ease), transform 0.25s var(--gm-ease);
}

.blog-like-btn:hover,
button.blog-like-btn:hover,
.blog-like-btn:focus,
button.blog-like-btn:focus {
	background: rgba(47, 106, 72, 0.14) !important;
	border-color: rgba(47, 106, 72, 0.45);
	color: var(--gm-ink) !important;
	transform: translateY(-1px);
}

.blog-like-btn:hover .blog-metric-icon,
button.blog-like-btn:hover .blog-metric-icon {
	background: rgba(47, 106, 72, 0.22);
	color: var(--gm-leaf);
}

.blog-like-btn:disabled,
button.blog-like-btn:disabled {
	opacity: 0.65;
	cursor: wait;
	transform: none;
}

.blog-like-btn.is-liked,
button.blog-like-btn.is-liked {
	border-color: rgba(196, 92, 92, 0.35);
	background: rgba(196, 92, 92, 0.08);
}

.blog-like-btn.is-liked:hover,
button.blog-like-btn.is-liked:hover,
.blog-like-btn.is-liked:focus,
button.blog-like-btn.is-liked:focus {
	background: rgba(196, 92, 92, 0.16) !important;
	border-color: rgba(196, 92, 92, 0.5);
	color: var(--gm-ink) !important;
}

.blog-like-btn.is-liked .blog-metric-icon,
button.blog-like-btn.is-liked .blog-metric-icon {
	background: rgba(196, 92, 92, 0.14);
	color: #c45c5c;
}

.blog-like-btn.is-liked:hover .blog-metric-icon,
button.blog-like-btn.is-liked:hover .blog-metric-icon {
	background: rgba(196, 92, 92, 0.22);
	color: #c45c5c;
}

.blog-share {
	justify-content: flex-end;
	align-items: center;
	gap: 0.85rem;
	position: relative;
}

.blog-share-label {
	font-family: "Lato", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(8, 22, 14, 0.5);
	flex-shrink: 0;
	line-height: 1;
}

.blog-share-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-share-links > * {
	display: block;
	flex: 0 0 2.35rem;
	width: 2.35rem;
	height: 2.35rem;
	margin: 0;
}

.blog-share-btn,
a.blog-share-btn,
button.blog-share-btn {
	box-sizing: border-box;
	display: inline-grid !important;
	place-items: center;
	width: 2.35rem !important;
	height: 2.35rem !important;
	min-width: 2.35rem;
	min-height: 2.35rem;
	max-width: 2.35rem;
	max-height: 2.35rem;
	margin: 0;
	padding: 0 !important;
	border: 1px solid var(--gm-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	color: var(--gm-ink-soft);
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	overflow: hidden;
	transition: background 0.3s var(--gm-ease), color 0.3s var(--gm-ease), border-color 0.3s var(--gm-ease), transform 0.25s var(--gm-ease);
}

.blog-share-btn .fa,
a.blog-share-btn .fa,
button.blog-share-btn .fa {
	display: block !important;
	width: 1em;
	height: 1em;
	margin: 0 auto !important;
	padding: 0;
	float: none !important;
	line-height: 1 !important;
	text-align: center;
}

.blog-share-btn:hover,
.blog-share-btn:focus,
a.blog-share-btn:hover,
a.blog-share-btn:focus,
button.blog-share-btn:hover,
button.blog-share-btn:focus {
	color: #fff;
	border-color: transparent;
	transform: translateY(-2px);
	text-decoration: none;
	outline: none;
}

.blog-share-btn:focus-visible {
	outline: 2px solid var(--gm-leaf);
	outline-offset: 2px;
}

.blog-share-facebook:hover,
.blog-share-facebook:focus { background: #1877f2; }
.blog-share-twitter:hover,
.blog-share-twitter:focus { background: #111; }
.blog-share-linkedin:hover,
.blog-share-linkedin:focus { background: #0a66c2; }
.blog-share-whatsapp:hover,
.blog-share-whatsapp:focus { background: #25d366; }
.blog-share-copy:hover,
.blog-share-copy:focus { background: var(--gm-ink); }

.blog-copy-toast {
	position: absolute;
	right: 0;
	top: calc(100% + 0.45rem);
	font-family: "Lato", sans-serif;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gm-ink);
	background: #fff;
	border: 1px solid var(--gm-line);
	padding: 0.4rem 0.7rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s var(--gm-ease);
	white-space: nowrap;
	z-index: 2;
}

.blog-copy-toast.is-visible {
	opacity: 1;
}

/* —— Comments (approved only) —— */
.blog-comments {
	max-width: 720px;
	margin: 2.75rem auto 0;
	padding-top: 2.25rem;
	border-top: 1px solid var(--gm-line);
}

.blog-comments-head {
	margin-bottom: 1.5rem;
}

.blog-comments-head .blog-kicker {
	opacity: 1;
	animation: none;
}

.blog-comments-head h2 {
	margin: 0 0 0.55rem;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.35rem, 2.5vw, 1.7rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gm-ink);
	text-align: left;
}

.blog-comments-lede {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(8, 22, 14, 0.62);
}

.blog-comment-alert {
	margin: 0 0 1.15rem;
	padding: 0.85rem 1rem;
	font-family: "Lato", sans-serif;
	font-size: 0.92rem;
	line-height: 1.5;
	border: 1px solid transparent;
}

.blog-comment-alert-success {
	background: rgba(47, 106, 72, 0.1);
	border-color: rgba(47, 106, 72, 0.22);
	color: #1d4630;
}

.blog-comment-alert-error {
	background: rgba(140, 40, 40, 0.08);
	border-color: rgba(140, 40, 40, 0.22);
	color: #6e1f1f;
}

.blog-comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	gap: 0;
}

.blog-comment-item {
	display: grid;
	grid-template-columns: 2.6rem 1fr;
	gap: 0.9rem;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--gm-line);
}

.blog-comment-item:first-child {
	border-top: 1px solid var(--gm-line);
}

.blog-comment-avatar {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(47, 106, 72, 0.12);
	color: var(--gm-leaf);
	font-family: "Playball", Georgia, serif;
	font-size: 1.25rem;
}

.blog-comment-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem 0.85rem;
	margin-bottom: 0.4rem;
}

.blog-comment-meta strong {
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gm-ink);
}

.blog-comment-meta span {
	font-family: "Lato", sans-serif;
	font-size: 0.8rem;
	color: rgba(8, 22, 14, 0.48);
}

.blog-comment-body p {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(8, 22, 14, 0.8);
}

.blog-comment-form {
	padding-top: 0.35rem;
}

.blog-comment-form-title {
	margin: 0 0 1rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gm-ink-soft);
}

.blog-comment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem 1rem;
	margin-bottom: 0.9rem;
}

.blog-comment-field {
	margin-bottom: 0.9rem;
}

.blog-comment-field label {
	display: block;
	margin-bottom: 0.35rem;
	font-family: "Lato", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(8, 22, 14, 0.65);
}

.blog-comment-field .req {
	color: #8b2e2e;
}

.blog-comment-field input,
.blog-comment-field textarea {
	width: 100%;
	appearance: none;
	border: 1px solid var(--gm-line);
	background: rgba(255, 255, 255, 0.78);
	color: var(--gm-ink);
	font-family: "Lato", sans-serif;
	font-size: 0.98rem;
	padding: 0.8rem 0.9rem;
	outline: none;
	transition: border-color 0.25s var(--gm-ease), box-shadow 0.25s var(--gm-ease);
}

.blog-comment-field input:focus,
.blog-comment-field textarea:focus {
	border-color: rgba(47, 106, 72, 0.55);
	box-shadow: 0 0 0 3px rgba(47, 106, 72, 0.1);
}

.blog-comment-field textarea {
	resize: vertical;
	min-height: 8rem;
	line-height: 1.6;
}

.blog-comment-note {
	margin: 0 0 1rem;
	font-family: "Lato", sans-serif;
	font-size: 0.84rem;
	color: rgba(8, 22, 14, 0.5);
}

.blog-comment-submit {
	appearance: none;
	border: 1px solid var(--gm-ink);
	background: var(--gm-ink);
	color: #f4f7f4;
	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.9rem 1.25rem;
	cursor: pointer;
	transition: background 0.3s var(--gm-ease), border-color 0.3s var(--gm-ease);
}

.blog-comment-submit:hover,
.blog-comment-submit:focus {
	background: var(--gm-leaf);
	border-color: var(--gm-leaf);
	color: #fff;
}

.blog-comment-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
}

.blog-detail-nav {
	max-width: 720px;
	margin: 1.75rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gm-line);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
}

@media (max-width: 720px) {
	.blog-comment-grid {
		grid-template-columns: 1fr;
	}

	.blog-engage {
		grid-template-columns: 1fr;
		padding: 1.1rem 1rem;
		gap: 1rem;
	}

	.blog-engage-metrics {
		justify-content: space-between;
	}

	.blog-metric {
		flex: 1 1 0;
		min-width: 0;
	}

	.blog-share {
		justify-content: space-between;
		padding-top: 0.85rem;
		border-top: 1px solid var(--gm-line);
	}
}

.blog-back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-ink-soft);
	transition: color 0.3s var(--gm-ease);
}

.blog-back:hover {
	color: var(--gm-leaf);
	text-decoration: none;
}

@keyframes blogFadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes blogReveal {
	from {
		opacity: 0;
		transform: translateY(18px);
		filter: blur(2px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes blogHeroZoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

@keyframes blogLoaderSpin {
	to { transform: rotate(360deg); }
}

@keyframes blogLoaderPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.85;
	}
	50% {
		transform: scale(1.35);
		opacity: 1;
	}
}

@keyframes blogLoaderFade {
	0%, 100% { opacity: 0.45; }
	50% { opacity: 0.9; }
}

@media (max-width: 900px) {
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blog-sidebar {
		order: -1;
	}

	.blog-sidebar-inner {
		position: static;
		padding-top: 0;
		border-top: none;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid var(--gm-line);
	}

	.blog-cat-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.45rem;
	}

	.blog-cat-link {
		border: 1px solid var(--gm-line);
		border-left-width: 1px;
		border-radius: 999px;
		padding: 0.5rem 0.85rem;
		background: rgba(255, 255, 255, 0.55);
		font-size: 0.62rem;
	}

	.blog-cat-link.is-active {
		background: var(--gm-ink);
		border-color: var(--gm-ink);
		color: #f4f7f4;
	}

	.blog-cat-link.is-active .blog-cat-count {
		color: rgba(244, 247, 244, 0.75);
	}
}

@media (max-width: 640px) {
	.blog-intro {
		padding: 6.5rem 0 2rem;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-detail-hero__content {
		padding-top: 6.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.blog-loader__orbit,
	.blog-loader__dot,
	.blog-loader__hint {
		animation: none;
	}

	.blog-kicker,
	.blog-intro h1,
	.blog-lede,
	.blog-card,
	.blog-detail-hero h1,
	.blog-detail-meta,
	.blog-detail-hero__media img {
		animation: none !important;
		opacity: 1;
		transform: none;
		filter: none;
	}

	.blog-listing:not(.blog-is-ready) .blog-intro,
	.blog-listing:not(.blog-is-ready) .blog-section {
		opacity: 1;
	}
}
