:root {
	--bg: #f2f4f7;
	--paper: #ffffff;
	--ink: #111418;
	--text: #252b33;
	--muted: #687280;
	--line: #e2e7ee;
	--brand: #0fbc8e;
	--brand-dark: #06946f;
	--hot: #ff3d57;
	--nav: #12161d;
	--nav-soft: #1c222c;
	--ad: #f7fafc;
	--max: 1200px;
	--radius: 8px;
	--shadow: 0 16px 44px rgba(18, 25, 38, .10);
	--soft-shadow: 0 8px 24px rgba(18, 25, 38, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background:
		radial-gradient(circle at 12% -10%, color-mix(in srgb, var(--brand) 13%, transparent), transparent 30%),
		linear-gradient(180deg, color-mix(in srgb, var(--paper) 92%, var(--bg)) 0, var(--bg) 360px);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: none; color: var(--brand); }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }
.narrow { max-width: 840px; }

.site-topbar {
	background: var(--nav);
	color: #c5ced9;
	font-size: .84rem;
}
.topbar-wrap {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-left a { color: #fff; font-weight: 750; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-right .search-form { display: flex; align-items: center; gap: 0; }
.dark-mode-toggle { display: inline-grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: var(--nav-soft); color: #fff; cursor: pointer; font-weight: 900; }
.dark-mode-toggle span { display: block; width: auto; height: auto; border: 0; color: currentColor; font-size: 15px; line-height: 1; }
.dark-mode-toggle:hover { background: var(--brand); color: #07110e; }
.topbar-right .search-field {
	width: 210px;
	height: 30px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px 0 0 999px;
	background: var(--nav-soft);
	color: #fff;
	padding: 0 12px;
}
.topbar-right .search-submit {
	height: 30px;
	border-radius: 0 999px 999px 0;
	padding: 0 12px;
	background: var(--brand);
	color: #08120f;
}

.site-header {
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid var(--line);
	z-index: 300;
}
.has-sticky-header .site-header {
	position: sticky;
	top: 0;
	backdrop-filter: saturate(180%) blur(14px);
}
.header-wrap {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.site-branding { min-width: 190px; }
.site-title {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}
.site-title::before {
	content: "";
	width: 12px;
	height: 34px;
	margin-right: 10px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--brand), var(--hot));
}
.site-description { margin: 6px 0 0; color: var(--muted); font-size: .84rem; }
.custom-logo { max-height: 62px; width: auto; }

.primary-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-nav a {
	display: block;
	color: var(--ink);
	font-size: 12px;
	font-weight: 400;
	padding: 10px 12px;
	border-radius: 999px;
	letter-spacing: 0;
}
.primary-nav li { position: relative; }
.primary-nav .sub-menu,
.primary-nav .children {
	display: none;
	list-style: none;
	margin: 0;
	padding: 8px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
}
.primary-nav > ul > li.submenu-open > .sub-menu,
.primary-nav > ul > li.submenu-open > .children {
	display: block;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	z-index: 70;
}
.submenu-toggle {
	display: none;
	border: 1px solid var(--line);
	background: var(--paper);
	color: var(--ink);
	border-radius: 999px;
	font-weight: 900;
	width: 28px;
	height: 28px;
	line-height: 1;
	align-items: center;
	justify-content: center;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	background: #10151d;
	color: #fff;
}
.menu-toggle { display: none; }

.category-strip {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.category-strip-wrap {
	min-height: 46px;
	display: flex;
	align-items: center;
	gap: 10px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}
.category-strip-wrap::-webkit-scrollbar { display: none; }
.category-strip span {
	flex: 0 0 auto;
	background: var(--hot);
	color: #fff;
	border-radius: 999px;
	padding: 5px 10px;
	font-size: .72rem;
	font-weight: 900;
	text-transform: uppercase;
}
.category-strip a {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: .86rem;
	font-weight: 800;
	padding: 5px 9px;
}
.category-strip a:hover { color: var(--ink); }

.breadcrumbs { font-size: .88rem; color: var(--muted); padding: 14px 0 0; }
.breadcrumbs a { color: var(--muted); }
.site-main { padding: 26px 0 52px; }

.home-hero { margin-bottom: 32px; }
.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--ink);
	font-size: .82rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.hero-kicker::before {
	content: "";
	width: 28px;
	height: 4px;
	border-radius: 999px;
	background: var(--brand);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.35fr .82fr .82fr;
	grid-auto-rows: 212px;
	gap: 14px;
}
.hero-card {
	position: relative;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	background: var(--nav);
	box-shadow: var(--shadow);
}
.hero-card-1 { grid-row: span 2; }
.hero-link,
.hero-link img,
.hero-image-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.hero-link img { object-fit: cover; transform: scale(1.02); transition: transform .45s ease; }
.hero-link:hover img { transform: scale(1.08); }
.hero-image-fallback,
.image-fallback {
	display: block;
	background:
		linear-gradient(135deg, var(--brand), var(--hot)),
		linear-gradient(45deg, #111827, #293241);
}
.hero-overlay {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 22px;
	color: #fff;
	background: linear-gradient(180deg, transparent 0, rgba(0,0,0,.78) 78%);
}
.hero-category {
	align-self: flex-start;
	background: var(--brand);
	color: #06110e;
	border-radius: 999px;
	padding: 3px 9px;
	font-size: .72rem;
	font-weight: 950;
	text-transform: uppercase;
}
.hero-title {
	color: #fff;
	font-size: 1.16rem;
	font-weight: 950;
	line-height: 1.12;
}
.hero-card-1 .hero-title { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: 0; }
.hero-meta { color: rgba(255,255,255,.78); font-size: .84rem; font-weight: 700; }

.layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) 332px;
	gap: 28px;
	align-items: start;
}
.content-area { min-width: 0; }
.section-heading,
.archive-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--ink);
}
.section-heading h1,
.archive-header h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.55rem, 2.7vw, 2.25rem);
	font-weight: 950;
	line-height: 1.05;
}
.section-heading span { color: var(--muted); font-weight: 750; font-size: .9rem; }

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.post-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--soft-shadow);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.post-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
	box-shadow: var(--shadow);
}
.post-card-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--nav);
	overflow: hidden;
}
.post-card-image::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 38%;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}
.post-card-image img,
.image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.06); }
.post-card-body {
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 17px 18px 18px;
}
.card-topline,
.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: var(--muted);
	font-size: .78rem;
	font-weight: 800;
}
.card-topline span {
	color: var(--brand-dark);
	text-transform: uppercase;
	letter-spacing: .06em;
}
.post-card h2 {
	margin: 0;
	color: var(--ink);
	font-size: 1.25rem;
	font-weight: 920;
	line-height: 1.2;
	letter-spacing: 0;
}
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--brand-dark); }
.post-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-weight: 900;
}
.read-more:hover { background: var(--brand); color: #07110e; }

.archive-description { color: var(--muted); }
.feed-link {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--brand);
	color: #06110e;
	padding: 6px 12px;
	font-weight: 900;
}

.single-article {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: clamp(18px, 4vw, 42px);
	box-shadow: var(--soft-shadow);
}
.article-header { margin-bottom: 22px; }
.article-header h1 {
	margin: 12px 0 12px;
	color: var(--ink);
	font-size: clamp(2.1rem, 4.5vw, 4.25rem);
	font-weight: 950;
	line-height: 1.02;
	letter-spacing: 0;
}
.post-categories { display: flex; flex-wrap: wrap; gap: 7px; }
.cat-links a,
.post-card .post-categories a,
.article-header .post-categories a {
	display: inline-block;
	background: var(--brand);
	color: #06110e;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: .72rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .94rem; font-weight: 700; }
.featured-image { margin: 24px 0; }
.featured-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }
.entry-content {
	color: #232932;
	font-size: 1.08rem;
	line-height: 1.82;
}
.entry-content h2 {
	color: var(--ink);
	font-size: 1.8rem;
	font-weight: 950;
	line-height: 1.18;
	margin: 2rem 0 .8rem;
}
.entry-content h3 { color: var(--ink); font-size: 1.38rem; font-weight: 900; }
.entry-content p,
.entry-content ul,
.entry-content ol { margin-bottom: 1.25rem; }
.entry-content blockquote {
	margin: 28px 0;
	border-left: 5px solid var(--brand);
	background: #f7faf9;
	border-radius: 0 8px 8px 0;
	padding: 18px 20px;
	color: #3b4651;
	font-size: 1.2rem;
	font-weight: 750;
}

.bhp-ad {
	clear: both;
	margin: 26px 0;
	padding: 16px;
	background: var(--ad);
	border: 1px solid var(--line);
	border-radius: 10px;
	text-align: center;
	min-height: 90px;
}
.bhp-ad-label {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.bhp-ad ins { display: block; margin: auto; }
.bhp-sticky-mobile-ad { display: none; }

.sidebar {
	position: sticky;
	top: 112px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.widget,
.trending-posts {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 18px;
	box-shadow: var(--soft-shadow);
}
.widget-title,
.trending-posts h2,
.related-posts h2 {
	position: relative;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--ink);
	color: var(--ink);
	font-size: .94rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.trending-posts ol { margin: 0; padding: 0; list-style: none; counter-reset: trend; }
.trending-posts li {
	counter-increment: trend;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.trending-posts li:last-child { border-bottom: 0; padding-bottom: 0; }
.trending-posts li::before {
	content: counter(trend);
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: .8rem;
	font-weight: 950;
}
.trending-posts a { color: var(--ink); font-weight: 850; line-height: 1.35; }
.trending-style-picture li {
	grid-template-columns: 74px 1fr;
	align-items: center;
}
.trending-style-picture li::before {
	display: none;
}
.trending-thumb {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--nav-soft);
}
.trending-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bhp-dark .trending-posts li::before {
	background: var(--brand);
	color: var(--button-text);
}

.related-posts { margin: 34px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.related-card {
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	background: var(--paper);
	box-shadow: var(--soft-shadow);
}
.related-card h3 { margin: 12px; color: var(--ink); font-size: 1rem; line-height: 1.25; }
.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid var(--line);
	padding-top: 22px;
	margin-top: 28px;
	font-weight: 850;
}
.bhp-share {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
}
.bhp-share-main,
.bhp-share-small a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: #fff;
	font-weight: 950;
	text-align: center;
}
.bhp-share-main {
	min-height: 56px;
	background: #1877f2;
	font-size: 1.05rem;
}
.bhp-share-small {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}
.bhp-share-small a {
	min-height: 42px;
	font-size: .88rem;
}
.bhp-share-whatsapp { background: #25d366; }
.bhp-share-pinterest { background: #bd081c; }
.bhp-share-x { background: #111; }
.bhp-share-main:hover,
.bhp-share-small a:hover {
	color: #fff;
	filter: brightness(.94);
}
.bhp-nextpage-nav {
	display: grid;
	gap: 10px;
	margin: 28px 0;
}
.bhp-nextpage-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 58px;
	border-radius: 10px;
	color: #06110e;
	font-size: 1.05rem;
	font-weight: 950;
	text-align: center;
	box-shadow: var(--soft-shadow);
}
.bhp-nextpage-button:hover {
	filter: brightness(.96);
	color: #06110e;
}
.bhp-nextpage-button i {
	margin-inline-start: 8px;
}
.bhp-nextpage-icon {
	display: inline-block;
	margin-inline-start: 8px;
	font-weight: 900;
}
.bhp-page-count {
	color: var(--muted);
	font-size: .88rem;
	font-weight: 800;
	text-align: center;
}
#bhp-legacy-loader {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	border-radius: 999px;
	color: #06110e;
	font-weight: 950;
	padding: 12px 18px;
	box-shadow: var(--shadow);
}
.comments-area {
	margin-top: 28px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 22px;
	box-shadow: var(--soft-shadow);
}
.comment-list { padding-left: 20px; }

.contact-form { display: grid; gap: 14px; }
.contact-form label { color: var(--ink); font-weight: 850; }
.contact-form input,
.contact-form textarea,
.contact-form select,
.search-field {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 11px 12px;
	font: inherit;
	background: #fff;
	color: var(--text);
}
.contact-form button,
.search-submit {
	border: 0;
	border-radius: 8px;
	background: var(--brand);
	color: #07110e;
	font-weight: 950;
	padding: 12px 18px;
	cursor: pointer;
}
.notice { border-radius: 8px; padding: 12px 14px; margin: 12px 0; }
.notice-success { background: #e9f8ef; color: #176b36; }
.notice-error { background: #fff0f0; color: #9e1b1b; }
.honeypot { position: absolute; left: -9999px; }

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--paper);
	border: 1px solid var(--line);
	color: var(--ink);
	font-weight: 850;
}
.page-numbers.current,
.page-numbers:hover { background: var(--ink); color: #fff; }

.empty-state {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 28px;
	box-shadow: var(--soft-shadow);
}
.site-footer {
	border-top: 1px solid rgba(255,255,255,.08);
	background: var(--nav);
	color: #b9c3cf;
}
.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
}
.site-footer a { color: #fff; margin-left: 14px; font-weight: 750; }
.footer-actions,
.bhp-follow,
.topbar-custom-menu-list,
.footer-custom-menu-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.topbar-custom-menu,
.footer-custom-menu { display: inline-flex; }
.topbar-custom-menu ul,
.footer-custom-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar-custom-menu a,
.footer-custom-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 850;
	white-space: nowrap;
}
.bhp-follow-link {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #fff;
	font-size: .72rem;
	font-weight: 950;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}
.topbar-custom-menu a,
.bhp-follow-header .bhp-follow-link {
	background: var(--nav-soft);
	color: #fff;
}
.footer-custom-menu a,
.bhp-follow-footer .bhp-follow-link {
	background: rgba(255,255,255,.08);
	color: #fff;
}
.bhp-follow span {
	color: inherit;
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
}
.bhp-follow-facebook { background: #1877f2 !important; }
.bhp-follow-whatsapp { background: #25d366 !important; color: #06110e !important; }
.bhp-follow-pinterest { background: #bd081c !important; }
.bhp-follow-x { background: #000 !important; }
.bhp-push-prompt {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9998;
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px;
	width: min(392px, calc(100% - 28px));
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--paper);
	color: var(--text);
	box-shadow: var(--shadow);
}
.bhp-push-prompt[hidden] { display: none; }
.bhp-push-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--brand);
	color: var(--button-text);
	font-weight: 950;
}
.bhp-push-content strong {
	display: block;
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.25;
}
.bhp-push-content p {
	margin: 4px 0 12px;
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.45;
}
.bhp-push-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.bhp-push-actions button {
	border: 0;
	border-radius: 999px;
	padding: 9px 13px;
	font-weight: 900;
	cursor: pointer;
}
.bhp-push-allow {
	background: var(--button-bg);
	color: var(--button-text);
}
.bhp-push-later {
	background: var(--bg);
	color: var(--ink);
}
.bhp-dark .bhp-push-later {
	background: #0f1620;
	color: var(--ink);
}
.screen-reader-text {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

.bhp-rtl {
	direction: rtl;
	text-align: right;
}
.bhp-rtl .site-title::before {
	margin-right: 0;
	margin-left: 10px;
}
.bhp-rtl .primary-nav ul,
.bhp-rtl .topbar-wrap,
.bhp-rtl .header-wrap,
.bhp-rtl .footer-wrap,
.bhp-rtl .category-strip-wrap,
.bhp-rtl .post-meta,
.bhp-rtl .card-topline,
.bhp-rtl .card-footer,
.bhp-rtl .post-nav,
.bhp-rtl .bhp-follow,
.bhp-rtl .footer-actions {
	direction: rtl;
}
.bhp-rtl .entry-content blockquote {
	border-left: 0;
	border-right: 5px solid var(--brand);
	border-radius: 8px 0 0 8px;
}
.bhp-rtl .site-footer a {
	margin-left: 0;
	margin-right: 14px;
}

@media (max-width: 980px) {
	.layout { grid-template-columns: 1fr; }
	.sidebar { position: static; order: 2; }
	.hero-grid { grid-template-columns: 1fr 1fr; }
	.hero-card-1 { grid-column: span 2; }
	.primary-nav {
		display: none;
		position: absolute;
		left: 14px;
		right: 14px;
		top: 122px;
		max-height: calc(100vh - 138px);
		overflow-y: auto;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: 10px;
		padding: 10px;
		box-shadow: var(--shadow);
		z-index: 9999;
	}
	.no-header-topbar .primary-nav {
		top: 84px;
	}
	.primary-nav.is-open { display: block; }
	.primary-nav ul { display: block; max-height: none; overflow: visible; }
	.primary-nav li { display: block; }
	.primary-nav a { border-radius: 8px; }
	.primary-nav .menu-item-has-children,
	.primary-nav .page_item_has_children {
		display: grid;
		grid-template-columns: 1fr 34px;
		gap: 6px;
		align-items: center;
	}
	.primary-nav .submenu-toggle {
		display: none;
		justify-self: end;
	}
	.primary-nav > ul > li > .sub-menu,
	.primary-nav > ul > li > .children {
		display: none;
		position: static;
		grid-column: 1 / -1;
		margin-top: 6px;
	}
	.primary-nav.all-submenus-open > ul > li > .sub-menu,
	.primary-nav.all-submenus-open > ul > li > .children {
		display: block;
	}
	.primary-nav > ul > li.submenu-open > .sub-menu,
	.primary-nav > ul > li.submenu-open > .children {
		display: block;
	}
	.menu-toggle {
		display: inline-flex;
		position: relative;
		z-index: 10000;
		border: 1px solid var(--line);
		background: var(--ink);
		color: #fff;
		border-radius: 999px;
		padding: 10px 14px;
		font-weight: 900;
	}
	.menu-toggle.is-active {
		background: var(--brand);
		color: #07110e;
	}
	.bhp-sticky-mobile-ad {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		background: var(--paper);
		border-top: 1px solid var(--line);
		padding: 8px 12px;
	}
	.bhp-sticky-mobile-ad .bhp-ad { margin: 0; min-height: 64px; padding: 8px; }
	body:has(.bhp-sticky-mobile-ad) { padding-bottom: 94px; }
}

@media (max-width: 720px) {
	.topbar-wrap { align-items: center; flex-direction: row; padding: 8px 0; gap: 8px; }
	.topbar-left { min-width: 0; }
	.topbar-left > a,
	.topbar-custom-menu,
	.topbar-right .search-form { display: none !important; }
	.topbar-right { flex: 0 0 auto; flex-wrap: nowrap; justify-content: flex-end; }
	.bhp-follow span { display: none; }
	.bhp-follow-link,
	.dark-mode-toggle { flex: 0 0 auto; }
	.header-wrap { min-height: 72px; }
	.hero-grid { grid-template-columns: 1fr; grid-auto-rows: 236px; }
	.hero-card-1 { grid-column: auto; grid-row: span 1; }
	.hero-card-1 .hero-title { font-size: 1.45rem; }
	.post-grid,
	.related-grid { grid-template-columns: 1fr; }
	.section-heading,
	.archive-header { display: block; }
	.section-heading span { display: block; margin-top: 6px; }
	.single-article { padding: 18px; }
	.article-header h1 { font-size: 2.05rem; }
	.footer-wrap { display: block; }
	.site-footer a { margin: 0 14px 0 0; }
	.footer-actions { margin-top: 12px; }
	.bhp-share-small { grid-template-columns: 1fr; }
	.bhp-push-prompt {
		left: 14px;
		right: 14px;
		bottom: 14px;
		width: auto;
	}
}
