:root {
	--bg: #f6f8fb;
	--surface: #ffffff;
	--surface-soft: #edf7f8;
	--text: #101828;
	--muted: #667085;
	--line: #d9e3ea;
	--accent: #14a46c;
	--accent-strong: #08764c;
	--accent-soft: #e7f8ef;
	--cyan: #0ea5b7;
	--lime: #b7e445;
	--ink: #0b1220;
	--nav-h: 72px;
	--r: 8px;
	--container: 1200px;
	--shadow: 0 18px 48px rgba(16, 24, 40, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.72;
	text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

h1, h2, h3 {
	margin: 0;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: 0;
}
h1 { font-size: clamp(46px, 6.2vw, 86px); }
h2 { font-size: clamp(28px, 3.3vw, 46px); }
h3 { font-size: 22px; }
p { margin: 0; }

.eyebrow, .post-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.eyebrow::before, .post-kicker::before {
	content: "";
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}
.post-kicker:hover, .text-link:hover { color: var(--accent-strong); }
.text-link {
	color: var(--accent);
	font-weight: 800;
}

.btn-primary, .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 20px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 14px;
	transition: background .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn-primary {
	background: var(--ink);
	border: 1px solid var(--ink);
	color: #fff;
	box-shadow: 0 12px 24px rgba(11, 18, 32, .18);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn-outline {
	background: rgba(255,255,255,.78);
	border: 1px solid var(--line);
	color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-strong); box-shadow: 0 10px 22px rgba(16,24,40,.08); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--nav-h);
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(16, 24, 40, .08);
	box-shadow: 0 10px 34px rgba(16, 24, 40, .05);
}
.admin-bar .site-header { top: 32px; }
.header-inner {
	max-width: var(--container);
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
}
.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	font-size: 22px;
	white-space: nowrap;
	color: var(--ink);
}
.site-logo-mark {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--ink), #1d4730);
	color: #a7f3d0;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	box-shadow: 0 12px 24px rgba(16,24,40,.14);
}
.site-logo-text { display: inline-flex; align-items: baseline; gap: 6px; }
.site-logo strong {
	display: inline-flex;
	padding: 3px 7px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 13px;
	letter-spacing: 0;
}
.primary-nav {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px;
	border: 1px solid rgba(16,24,40,.08);
	border-radius: 999px;
	background: rgba(248,250,252,.86);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.primary-nav a {
	padding: 9px 13px;
	border-radius: 999px;
	color: #344054;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition: background .18s, color .18s, box-shadow .18s;
}
.primary-nav a:hover, .primary-nav a.active {
	background: #fff;
	color: var(--accent-strong);
	box-shadow: 0 8px 18px rgba(16,24,40,.08);
}
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.icon-btn, .hamburger {
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(16,24,40,.06);
}
.icon-btn:hover, .hamburger:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn svg { width: 19px; height: 19px; }
.hamburger { display: none; flex-direction: column; gap: 4px; }
.hamburger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.mobile-nav, .search-panel {
	position: fixed;
	top: var(--nav-h);
	left: 0;
	right: 0;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
}
.admin-bar .mobile-nav, .admin-bar .search-panel { top: calc(var(--nav-h) + 32px); }
.mobile-nav { display: none; padding: 18px 24px; }
.mobile-nav.is-open { display: grid; gap: 4px; }
.mobile-nav a { padding: 12px 0; font-weight: 800; border-bottom: 1px solid var(--line); }
.search-panel { padding: 16px 0; }

.search-form-wrap { display: flex; gap: 10px; }
.search-field {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 12px 16px;
	background: #fff;
	color: var(--text);
	outline: none;
}
.search-field:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.site-main { min-height: 60vh; }
.home-hero {
	position: relative;
	padding: 88px 0 76px;
	background:
		linear-gradient(90deg, rgba(47,125,50,.08) 0 1px, transparent 1px 100%),
		linear-gradient(180deg, rgba(15,143,150,.06) 0 1px, transparent 1px 100%),
		linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
	background-size: 64px 64px, 64px 64px, auto;
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}
.home-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 14px;
	background: linear-gradient(90deg, var(--accent), var(--cyan), #c7e76b);
	opacity: .95;
}
.home-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(390px, .78fr);
	gap: 58px;
	align-items: center;
}
.home-hero-copy h1 { max-width: 780px; }
.hero-lead {
	margin-top: 22px;
	max-width: 680px;
	color: #475467;
	font-size: 20px;
	line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-proof {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 26px;
}
.hero-proof span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid rgba(47,125,50,.22);
	border-radius: 999px;
	background: rgba(255,255,255,.78);
	color: #344054;
	font-size: 13px;
	font-weight: 800;
}

.featured-card, .post-card, .hub-card, .trust-card, .author-box, .sidebar-widget, .newsletter-box {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
}
.featured-card {
	position: relative;
	overflow: hidden;
	border-color: rgba(47,125,50,.25);
	box-shadow: var(--shadow);
}
.featured-card::before {
	content: "Nổi bật";
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(11,18,32,.86);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}
.featured-media, .post-card-media { display: block; background: var(--surface-soft); overflow: hidden; }
.featured-media { aspect-ratio: 16/10; }
.post-card-media { aspect-ratio: 16/10; }
.featured-media img, .post-card-media img, .post-thumb { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 28px; }
.featured-body h2 { font-size: clamp(28px, 3vw, 40px); }
.featured-body h2 a:hover { color: var(--accent); }
.featured-body p { margin-top: 13px; color: var(--muted); }
.post-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}
.post-meta span + span::before {
	content: "";
	display: inline-flex;
	width: 4px;
	height: 4px;
	margin-right: 12px;
	border-radius: 999px;
	background: #98a2b3;
	vertical-align: middle;
}
.thumb-placeholder {
	width: 100%;
	height: 100%;
	min-height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(15,143,150,.16), rgba(47,125,50,.13)),
		linear-gradient(180deg, #f8fbfa, #eaf3ef);
	color: rgba(16,24,40,.12);
	font-weight: 900;
	font-size: clamp(58px, 8vw, 96px);
}

.hub-section, .content-section, .newsletter-section { padding: 72px 0; }
.section-heading { margin-bottom: 28px; }
.section-heading p:not(.eyebrow) { color: var(--muted); }
.row-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
}
.hub-section { background: #fff; }
.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.hub-card {
	position: relative;
	min-height: 210px;
	padding: 24px;
	overflow: hidden;
	transition: transform .18s, border-color .18s, box-shadow .18s;
}
.hub-card::after {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--cyan));
}
.hub-card strong {
	display: inline-flex;
	margin-bottom: 38px;
	color: #f97316;
	text-shadow: 0 10px 26px rgba(249,115,22,.18);
	font-size: 44px;
	line-height: 1;
	font-weight: 900;
}
.hub-card span { display: block; margin-bottom: 10px; font-size: 24px; line-height: 1.15; font-weight: 900; color: var(--ink); }
.hub-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.hub-card:hover { transform: translateY(-3px); border-color: rgba(47,125,50,.38); box-shadow: var(--shadow); }

.content-section { background: var(--bg); }
.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 30px;
	align-items: start;
}
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.post-card {
	overflow: hidden;
	transition: transform .18s, box-shadow .18s, border-color .18s;
}
.post-card:hover { transform: translateY(-3px); border-color: rgba(15,143,150,.25); box-shadow: var(--shadow); }
.post-card-body { padding: 20px; }
.post-card-title {
	margin-bottom: 10px;
	font-size: 23px;
	line-height: 1.18;
}
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { color: var(--muted); font-size: 15px; line-height: 1.65; }
.home-sidebar, .single-sidebar { display: grid; gap: 18px; position: sticky; top: calc(var(--nav-h) + 20px); }
.trust-card, .sidebar-widget { padding: 20px; }
.trust-card p, .sidebar-widget p { color: var(--muted); font-size: 15px; }

.archive-hero, .single-hero {
	padding: 48px 0 38px;
	background:
		radial-gradient(circle at 18% 0%, rgba(20,164,108,.08), transparent 34%),
		linear-gradient(180deg, #fff 0%, #f7fafb 100%);
	border-bottom: 1px solid var(--line);
}
.single-hero .narrow { max-width: 940px; }
.archive-hero h1, .single-hero h1 { margin-top: 6px; }
.single-hero h1 {
	max-width: 920px;
	font-size: clamp(38px, 4.8vw, 62px);
	line-height: 1.08;
	letter-spacing: 0;
}
.archive-hero p:not(.eyebrow), .single-hero p:not(.eyebrow) { max-width: 760px; margin-top: 12px; color: var(--muted); }
.single-hero .breadcrumb {
	margin-bottom: 20px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255,255,255,.78);
	width: fit-content;
}
.single-hero .post-kicker { margin-top: 4px; }
.single-hero .post-meta {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}
.archive-wrap { padding: 46px 24px 80px; }
.category-strip {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.category-strip a {
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	font-size: 14px;
	font-weight: 800;
	color: var(--muted);
}
.category-strip a.active, .category-strip a:hover { background: var(--accent-soft); color: var(--accent-strong); border-color: transparent; }

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	padding-top: 34px;
	padding-bottom: 84px;
}
.article-main { min-width: 0; }
.single-featured {
	margin: 0 0 28px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 18px 42px rgba(16,24,40,.10);
}
.single-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: clamp(26px, 4vw, 48px);
	font-size: 18px;
	line-height: 1.85;
}
.article-content p, .article-content ul, .article-content ol { margin: 0 0 1.2em; }
.article-content h2 { margin: 1.8em 0 .6em; font-size: 32px; }
.article-content h3 { margin: 1.6em 0 .5em; font-size: 24px; }
.article-content a { color: var(--accent); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-content img { border-radius: var(--r); margin: 24px 0; }
.tag-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 22px 0;
}
.tag-list a {
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 13px;
	font-weight: 800;
}
.author-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px;
}
.author-avatar img { border-radius: 999px; }
.author-label { margin-bottom: 4px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.author-box h2 { font-size: 22px; margin-bottom: 6px; }
.author-box p { color: var(--muted); font-size: 15px; }
.related-list { display: grid; gap: 14px; }
.related-list a { display: grid; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.related-list span { color: var(--muted); font-size: 13px; }

.comments-area {
	margin-top: 24px;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
}
.comment-list { padding-left: 22px; }
.comment-form { display: grid; gap: 14px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 6px; font-weight: 800; }
.comment-form input:not([type="checkbox"]), .comment-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 11px 13px;
}

.breadcrumb {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 13px;
}
.breadcrumb a:hover { color: var(--accent); }
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 38px;
}
.pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	font-weight: 800;
}
.pagination .current, .pagination a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}
.load-more-btn {
	min-width: 156px;
	height: 52px;
	background: #fff;
	box-shadow: 0 18px 34px rgba(16,24,40,.08);
}
.load-more-btn.is-loading {
	opacity: .72;
	cursor: wait;
	transform: none;
}

.newsletter-section { background: #fff; }
.newsletter-box {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 28px;
	align-items: center;
	padding: 30px;
	background:
		radial-gradient(circle at 88% 24%, rgba(183,228,69,.18), transparent 32%),
		radial-gradient(circle at 16% 88%, rgba(14,165,183,.14), transparent 34%),
		linear-gradient(135deg, #ffffff 0%, #eefaf7 58%, #eef7ff 100%);
	border-color: rgba(14,165,183,.22);
	box-shadow: 0 22px 58px rgba(14, 50, 65, .10);
}
.newsletter-box p { color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
	width: 100%;
	border: 1px solid rgba(14,165,183,.22);
	border-radius: 999px;
	padding: 13px 18px;
	background: rgba(255,255,255,.92);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.newsletter-form .btn-primary {
	background: linear-gradient(135deg, var(--accent), var(--cyan));
	border-color: transparent;
	box-shadow: 0 16px 30px rgba(20,164,108,.25);
}
.newsletter-form .btn-primary:hover {
	background: linear-gradient(135deg, var(--accent-strong), #087f8d);
}

.not-found-page {
	min-height: calc(100vh - var(--nav-h));
	display: flex;
	align-items: center;
	padding: 70px 0;
	text-align: center;
}
.not-found-page p { color: var(--muted); margin: 14px auto 24px; max-width: 620px; }
.not-found-page .search-form { margin: 24px auto; max-width: 620px; }

.page-content { padding: 46px 24px 80px; }
.static-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}
.static-page-content {
	box-shadow: 0 16px 42px rgba(16,24,40,.07);
}
.static-page-content > *:first-child { margin-top: 0; }
.static-page-content .wp-block-list,
.static-page-content ul,
.static-page-content ol {
	padding-left: 1.25em;
}
.static-page-content li { margin-bottom: .55em; }
.static-page-content .wp-block-separator {
	margin: 30px 0;
	border: 0;
	border-top: 1px solid var(--line);
}
.static-page-sidebar {
	position: sticky;
	top: calc(var(--nav-h) + 18px);
	display: grid;
	gap: 16px;
}
.admin-bar .static-page-sidebar { top: calc(var(--nav-h) + 50px); }
.static-link-panel {
	display: grid;
	gap: 10px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 12px 30px rgba(16,24,40,.06);
}
.static-link-panel h2 {
	margin: 0 0 4px;
	font-size: 18px;
}
.static-link-panel a {
	display: grid;
	gap: 3px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #f8fafc;
	transition: border-color .18s, background .18s, transform .18s;
}
.static-link-panel a:hover {
	background: var(--accent-soft);
	border-color: rgba(20,164,108,.24);
	transform: translateY(-1px);
}
.static-link-panel span {
	font-size: 14px;
	font-weight: 900;
	color: var(--ink);
}
.static-link-panel small {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}
.static-link-panel.quiet a { background: #fff; }
.empty-state {
	padding: 54px 24px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
}
.empty-state p { max-width: 560px; margin: 10px auto 22px; color: var(--muted); }
.empty-state .search-form { max-width: 620px; margin: 0 auto; }
.contact-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 26px;
	align-items: start;
	padding-top: 46px;
	padding-bottom: 80px;
}
.contact-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 22px;
}
.contact-quick-links a {
	padding: 8px 11px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 13px;
	font-weight: 900;
}
.contact-form-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 26px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
}
.contact-form-card form { display: grid; gap: 16px; }
.contact-form-card label {
	display: grid;
	gap: 7px;
	font-weight: 800;
	font-size: 14px;
}
.contact-form-card input,
.contact-form-card textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 11px 14px;
	background: #fff;
	color: var(--text);
}
.contact-form-card textarea {
	min-height: 160px;
	resize: vertical;
}
.notice-success {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: var(--r);
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-weight: 800;
}
.site-footer {
	position: relative;
	background: #fff;
	color: #475467;
	padding: 58px 0 0;
	border-top: 1px solid var(--line);
}
.footer-top {
	display: grid;
	grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
	gap: 54px;
	align-items: start;
}
.footer-brand-panel {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 14px;
}
.footer-brand strong {
	display: inline-flex;
	padding: 3px 7px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 13px;
}
.footer-brand-panel p {
	max-width: 420px;
	color: #667085;
	font-size: 15px;
	line-height: 1.75;
}
.footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}
.footer-badges span {
	display: inline-flex;
	padding: 6px 10px;
	border: 1px solid rgba(47,125,50,.18);
	border-radius: 999px;
	background: #f7fbf8;
	color: var(--accent-strong);
	font-size: 12px;
	font-weight: 800;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}
.site-footer h2 {
	color: var(--ink);
	font-size: 13px;
	margin-bottom: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.site-footer p, .site-footer a { font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer li a {
	display: inline-flex;
	color: #475467;
	transition: color .18s, transform .18s;
}
.site-footer li a:hover { color: var(--accent-strong); transform: translateX(3px); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 46px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
	color: #667085;
}

@media (max-width: 1100px) {
	.primary-nav { display: none; }
	.header-inner { grid-template-columns: auto auto; justify-content: space-between; }
	.hamburger { display: inline-flex; }
	.home-hero-grid, .content-layout, .single-layout, .newsletter-box, .static-page-layout { grid-template-columns: 1fr; }
	.static-page-sidebar { position: static; }
	.contact-layout { grid-template-columns: 1fr; }
	.home-sidebar, .single-sidebar { position: static; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-top { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .mobile-nav, .admin-bar .search-panel { top: calc(var(--nav-h) + 46px); }
}

@media (max-width: 700px) {
	:root { --nav-h: 64px; }
	body { font-size: 16px; }
	h1 { font-size: clamp(40px, 12vw, 58px); }
	.container { padding: 0 18px; }
	.header-inner { padding: 0 18px; }
	.site-logo-mark { width: 38px; height: 38px; border-radius: 10px; }
	.site-logo { font-size: 20px; }
	.site-logo strong { font-size: 12px; }
	.home-hero { padding: 56px 0 54px; }
	.home-hero-grid { gap: 34px; }
	.hero-lead { font-size: 18px; }
	.hub-section, .content-section, .newsletter-section { padding: 50px 0; }
	.post-grid, .hub-grid, .footer-grid { grid-template-columns: 1fr; }
	.row-heading, .footer-bottom, .newsletter-form, .search-form-wrap { flex-direction: column; align-items: flex-start; }
	.newsletter-form, .search-form-wrap { width: 100%; }
	.article-content { padding: 24px; }
	.single-hero { padding: 34px 0 28px; }
	.single-hero h1 { font-size: clamp(32px, 9vw, 44px); }
	.single-hero .breadcrumb { border-radius: 12px; width: auto; }
	.author-box { flex-direction: column; }
	.featured-body, .post-card-body, .hub-card, .newsletter-box { padding: 22px; }
	.hub-card { min-height: 190px; }
	.footer-brand-panel { padding: 22px; }
	.footer-top { gap: 28px; }
}
