: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: #c5ced9; font-size: .84rem; font-weight: 400; }
.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: 32px; height: 32px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: #000; color: #fff; cursor: pointer; font-weight: 900; padding: 0; }
.dark-mode-icon { width: 18px; height: 18px; display: block; color: currentColor; }
.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; line-height: 1.45; }
.bhp-logo-link {
	display: inline-flex;
	align-items: center;
}
.bhp-logo {
	display: block;
}
.bhp-logo-dark {
	display: none;
}
.bhp-dark .bhp-logo-light {
	display: none;
}
.bhp-dark .bhp-logo-dark {
	display: block;
}
.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: 14px;
	font-weight: 700;
	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;
}
.bhp-dark .primary-nav a:hover,
.bhp-dark .primary-nav .current-menu-item > a {
	background: var(--brand);
	color: #07110e;
}
.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; }
.home-magazine { 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: var(--button-text, #ffffff);
	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; }
.magazine-frame {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, .9fr) minmax(240px, .82fr);
	gap: 18px;
	align-items: start;
}
.magazine-lead,
.magazine-mini,
.magazine-briefs {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}
.magazine-lead {
	overflow: hidden;
}
.magazine-lead-media,
.magazine-mini-media,
.news-river-media {
	display: block;
	background: var(--nav);
	overflow: hidden;
}
.magazine-lead-media {
	aspect-ratio: 16 / 10;
}
.magazine-mini-media {
	aspect-ratio: 16 / 10;
}
.magazine-lead-media img,
.magazine-mini-media img,
.news-river-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.magazine-lead:hover .magazine-lead-media img,
.magazine-mini:hover .magazine-mini-media img,
.news-river-card:hover .news-river-media img {
	transform: scale(1.05);
}
.magazine-lead-body,
.magazine-mini-body,
.news-river-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.magazine-lead-body {
	padding: 20px 22px 22px;
}
.magazine-lead h2,
.news-river-card h2 {
	margin: 0;
	color: var(--ink);
	letter-spacing: 0;
}
.magazine-lead h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 950;
	line-height: 1.08;
}
.magazine-lead h2 a,
.magazine-mini h3 a,
.news-river-card h2 a {
	color: var(--ink);
}
.magazine-lead h2 a:hover,
.magazine-mini h3 a:hover,
.news-river-card h2 a:hover {
	color: var(--brand-dark);
}
.magazine-lead p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}
.magazine-stack {
	display: grid;
	gap: 18px;
}
.magazine-mini {
	overflow: hidden;
}
.magazine-mini-body {
	padding: 14px 16px 16px;
}
.magazine-mini h3 {
	margin: 0;
	color: var(--ink);
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: 0;
}
.magazine-briefs {
	padding: 18px;
}
.magazine-briefs-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--ink);
}
.magazine-briefs-head h2 {
	margin: 0;
	color: var(--ink);
	font-size: 1rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.magazine-briefs-head span {
	color: var(--muted);
	font-size: .78rem;
	font-weight: 800;
	text-align: right;
}
.magazine-brief-list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	counter-reset: magazine-brief;
}
.magazine-brief-item {
	counter-increment: magazine-brief;
	position: relative;
	padding: 0 0 14px 34px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.magazine-brief-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.magazine-brief-item::before {
	content: counter(magazine-brief, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	color: var(--brand-dark);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .06em;
}
.magazine-brief-item a {
	display: block;
	color: var(--ink);
	font-size: .98rem;
	font-weight: 850;
	line-height: 1.35;
}
.magazine-brief-item time {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: .8rem;
	font-weight: 700;
}
.home-focus,
.home-category-band,
.home-category-dossier {
	margin-bottom: 34px;
}
.home-focus-grid {
	display: grid;
	gap: 18px;
	align-items: start;
}
.recipes-focus-grid {
	grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr) 300px;
}
.health-focus-grid {
	grid-template-columns: minmax(0, 1.2fr) 300px;
}
.stories-focus-grid {
	grid-template-columns: minmax(0, 1.28fr) minmax(0, .82fr) 290px;
}
.focus-lead-card {
	display: grid;
	grid-template-rows: auto 1fr;
	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;
}
.focus-lead-card:hover,
.focus-compact-card:hover,
.headline-stack:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
	box-shadow: var(--shadow);
}
.focus-lead-media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--nav);
	overflow: hidden;
}
.focus-lead-media img,
.focus-compact-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.focus-lead-card:hover .focus-lead-media img,
.focus-compact-card:hover .focus-compact-media img {
	transform: scale(1.05);
}
.focus-lead-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px 22px 22px;
}
.focus-lead-body h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.75rem, 3vw, 2.55rem);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: 0;
}
.focus-lead-body h2 a,
.focus-compact-body h3 a,
.headline-item h3 a,
.section-heading h2 a {
	color: var(--ink);
}
.focus-lead-body h2 a:hover,
.focus-compact-body h3 a:hover,
.headline-item h3 a:hover,
.section-heading h2 a:hover {
	color: var(--brand-dark);
}
.focus-lead-body p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}
.focus-compact-rail,
.health-main-column,
.stories-deck {
	display: grid;
	gap: 16px;
}
.focus-compact-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	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;
}
.focus-compact-media {
	display: block;
	min-height: 100%;
	background: var(--nav);
	overflow: hidden;
}
.focus-compact-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px 16px;
}
.focus-compact-body h3,
.headline-item h3 {
	margin: 0;
	color: var(--ink);
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: 0;
}
.focus-compact-body h3 {
	font-size: 1.06rem;
}
.focus-compact-body p,
.headline-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.55;
}
.home-trending-panel {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 18px;
	box-shadow: var(--soft-shadow);
}
.home-trending-list {
	margin-top: 16px;
}
.home-trending-list .magazine-brief-item a {
	font-size: 1rem;
	font-weight: 850;
	line-height: 1.35;
	color: var(--ink);
}
.home-trending-list .magazine-brief-item a:hover {
	color: var(--brand-dark);
}
.category-band-heading h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	font-weight: 950;
	line-height: 1.08;
}
.category-card-grid-recipes {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-dossier-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
	gap: 18px;
	align-items: start;
}
.headline-stack {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.headline-item {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.headline-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.headline-item .card-topline {
	justify-content: flex-start;
	gap: 12px;
}
.health-support-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stories-headline-stack {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}
.stories-headline {
	padding-bottom: 18px;
}
.stories-headline h3 {
	font-size: 1.18rem;
}
.magazine-frame > .focus-lead-card,
.magazine-stack .focus-compact-card {
	height: 100%;
}

.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;
}
.news-river {
	display: grid;
	gap: 18px;
}
.news-river-card {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	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;
}
.news-river-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
	box-shadow: var(--shadow);
}
.news-river-media {
	min-height: 100%;
}
.news-river-body {
	padding: 18px 20px 20px;
}
.news-river-card h2 {
	font-size: 1.55rem;
	font-weight: 920;
	line-height: 1.15;
}
.news-river-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}
.news-river .card-footer {
	margin-top: auto;
	justify-content: flex-start;
}
.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 figure,
.entry-content .wp-caption {
	max-width: 100% !important;
	box-sizing: border-box;
}
.entry-content .wp-caption {
	width: 100% !important;
	margin-left: auto;
	margin-right: auto;
}
.entry-content .wp-caption.alignleft,
.entry-content .wp-caption.alignright {
	float: none;
}
.entry-content img,
.entry-content video {
	max-width: 100%;
	height: auto;
}
.entry-content iframe,
.entry-content embed,
.entry-content object {
	max-width: 100%;
}
.entry-content .wp-caption p {
	margin-bottom: 0;
}
.entry-content .wp-caption img {
	display: block;
	max-width: 100% !important;
	height: auto !important;
	margin-left: auto;
	margin-right: auto;
}
.entry-content .wp-caption-text {
	max-width: 100%;
	margin-top: .7rem;
	color: var(--muted);
	font-size: .84rem;
	line-height: 1.55;
}
.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;
	width: 100%;
	max-width: 100%;
	overflow: visible;
	margin: 0 0 20px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	text-align: center;
	min-height: 0;
}
.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: 0 auto; width: 100%; max-width: 100%; }
.bhp-ad-stable {
	position: relative;
	min-height: clamp(120px, 24vw, 280px);
}
.bhp-ad-stable.bhp-ad-sidebar,
.sidebar .bhp-ad-stable {
	min-height: clamp(120px, 22vw, 250px);
}
.bhp-ad-stable.bhp-ad-sticky_mobile {
	min-height: 60px;
}
.bhp-ad-stable ins {
	min-height: inherit;
}
.content-area .bhp-ad,
.single-article .bhp-ad,
.sidebar .bhp-ad {
	box-sizing: border-box;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
.entry-content .bhp-ad,
.content-area .bhp-ad,
.single-article .bhp-ad {
	min-width: 0;
}
.entry-content .bhp-ad > div,
.entry-content .bhp-ad ins,
.content-area .bhp-ad > div,
.content-area .bhp-ad ins,
.single-article .bhp-ad > div,
.single-article .bhp-ad ins {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}
.entry-content .bhp-ad iframe,
.content-area .bhp-ad iframe,
.single-article .bhp-ad iframe {
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: 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 {
	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,
.sidebar .widget a {
	color: var(--ink);
	font-weight: 400;
	font-size: 18px;
	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(2,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-transform: uppercase;
	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-continue-reading-btn {
	background: linear-gradient(135deg, var(--bhp-continue-start, #ff6b00), var(--bhp-continue-end, #ff8f00));
	color: var(--bhp-continue-text, #ffffff) !important;
	font-weight: 700;
	border-radius: 12px;
	padding: 16px 28px;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
	border: 0;
	min-height: 0;
	text-transform: none;
	line-height: 1.25;
}
.bhp-continue-reading-btn:hover {
	filter: brightness(.98);
	color: var(--bhp-continue-text, #ffffff) !important;
}
.bhp-continue-reading-hidden[hidden] {
	display: none !important;
}
.bhp-continue-reading-hidden {
	margin-top: 14px;
}
.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; }
.contact-form-panel {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px;
	box-shadow: var(--soft-shadow);
}
.contact-form-head {
	margin-bottom: 18px;
}
.contact-form-head h2 {
	margin: 0 0 8px;
	color: var(--ink);
	font-size: clamp(1.45rem, 2vw, 1.9rem);
	font-weight: 950;
	line-height: 1.08;
}
.contact-form-head p,
.contact-form-privacy {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}
.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.contact-form p {
	margin: 0;
}
.contact-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.contact-form-mailto {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--bg);
	color: var(--ink);
	font-weight: 850;
}
.contact-form-mailto:hover {
	color: var(--brand-dark);
	border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
}
.contact-captcha-block,
.contact-captcha-math {
	display: grid;
	gap: 10px;
}
.bhp-contact-page {
	display: grid;
	gap: 26px;
}
.bhp-contact-page-head {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	gap: 20px;
	align-items: end;
}
.bhp-contact-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	color: var(--brand-dark);
	font-size: .8rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.bhp-contact-page-head h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(2.2rem, 4.2vw, 4rem);
	line-height: 1.02;
	font-weight: 980;
}
.bhp-contact-lead {
	margin: 14px 0 0;
	max-width: 720px;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.7;
}
.bhp-contact-meta-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.bhp-contact-meta-item {
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--bg) 45%, #fff) 100%);
}
.bhp-contact-meta-item span {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: .76rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.bhp-contact-meta-item strong,
.bhp-contact-meta-item strong a {
	display: block;
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 900;
	word-break: break-word;
}
.bhp-contact-hero {
	display: grid;
	gap: 18px;
}
.bhp-contact-hero--editorial {
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
	align-items: stretch;
}
.bhp-contact-hero--minimal {
	grid-template-columns: 1fr;
}
.bhp-contact-visual,
.bhp-contact-sidecard,
.bhp-contact-story-block,
.bhp-contact-faq-item {
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--paper);
	box-shadow: var(--soft-shadow);
}
.bhp-contact-visual {
	overflow: hidden;
	min-height: 100%;
}
.bhp-contact-visual-image,
.bhp-contact-visual-image img {
	display: block;
	width: 100%;
	height: 100%;
}
.bhp-contact-visual-image img {
	aspect-ratio: 16 / 11;
	object-fit: cover;
}
.bhp-contact-visual-fallback {
	display: grid;
	gap: 12px;
	align-content: end;
	min-height: 100%;
	padding: 28px;
	background:
		linear-gradient(145deg, color-mix(in srgb, var(--brand) 18%, #fff) 0%, color-mix(in srgb, var(--hot) 12%, #fff) 100%);
}
.bhp-contact-visual-fallback span {
	color: var(--brand-dark);
	font-size: .8rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.bhp-contact-visual-fallback strong {
	color: var(--ink);
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	line-height: 1.04;
	font-weight: 980;
}
.bhp-contact-visual-fallback p {
	margin: 0;
	max-width: 30rem;
	color: var(--muted);
	line-height: 1.7;
}
.bhp-contact-side-stack {
	display: grid;
	gap: 18px;
}
.bhp-contact-sidecard,
.bhp-contact-story-block {
	padding: 22px;
}
.bhp-contact-sidecard h3,
.bhp-contact-story-block h2,
.bhp-contact-faq-item h3 {
	margin: 0 0 10px;
	color: var(--ink);
	font-size: 1.16rem;
	font-weight: 950;
	line-height: 1.18;
}
.bhp-contact-sidecard p,
.bhp-contact-faq-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}
.bhp-contact-inline-link {
	display: inline-flex;
	margin-top: 14px;
	color: var(--brand-dark);
	font-weight: 900;
	word-break: break-word;
}
.bhp-contact-reasons-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}
.bhp-contact-reasons-list li {
	position: relative;
	padding-left: 18px;
	color: var(--text);
	line-height: 1.55;
}
.bhp-contact-reasons-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .78em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand);
}
.bhp-contact-main-grid {
	display: grid;
	gap: 18px;
	align-items: start;
}
.bhp-contact-main-grid--editorial,
.bhp-contact-main-grid--minimal {
	grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
}
.bhp-contact-main-grid--support {
	grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
}
.bhp-contact-main-grid > :only-child {
	grid-column: 1 / -1;
}
.bhp-contact-form-column {
	display: grid;
	gap: 18px;
}
.bhp-contact-support-rail,
.bhp-contact-dual-grid {
	display: grid;
	gap: 18px;
}
.bhp-contact-dual-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bhp-contact-faq-block {
	display: grid;
	gap: 14px;
}
.bhp-contact-faq-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.bhp-contact-page--minimal .bhp-contact-page-head {
	grid-template-columns: 1fr;
	text-align: center;
}
.bhp-contact-page--minimal .bhp-contact-lead {
	margin-left: auto;
	margin-right: auto;
}
.bhp-contact-page--minimal .bhp-contact-meta-strip {
	max-width: 880px;
	margin: 0 auto;
}
.bhp-dark .contact-form-panel,
.bhp-dark .bhp-contact-visual,
.bhp-dark .bhp-contact-sidecard,
.bhp-dark .bhp-contact-story-block,
.bhp-dark .bhp-contact-faq-item,
.bhp-dark .bhp-contact-meta-item {
	background: var(--paper);
	border-color: var(--line);
}
.bhp-dark .contact-form-mailto {
	background: #0f1620;
	border-color: var(--line);
	color: #fff;
}
.bhp-dark .bhp-contact-meta-item strong,
.bhp-dark .bhp-contact-meta-item strong a,
.bhp-dark .bhp-contact-sidecard h3,
.bhp-dark .bhp-contact-story-block h2,
.bhp-dark .bhp-contact-faq-item h3 {
	color: #fff;
}
.bhp-dark .bhp-contact-reasons-list li,
.bhp-dark .bhp-contact-sidecard p,
.bhp-dark .bhp-contact-faq-item p,
.bhp-dark .contact-form-head p,
.bhp-dark .contact-form-privacy,
.bhp-dark .bhp-contact-lead {
	color: var(--muted);
}

.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;
}
.topbar-custom-menu a {
	border-radius: 0;
	font-size: .84rem;
	font-weight: 400;
	background: transparent !important;
	color: #c5ced9 !important;
	padding: 0;
}
.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;
}
.bhp-follow-link svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}
.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: .84rem;
	font-weight: 400;
	text-transform: none;
}
.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; }
body.bhp-exit-open { overflow: hidden; }
.bhp-exit-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 20px;
}
.bhp-exit-popup[hidden] { display: none; }
.bhp-exit-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 18, .72);
	backdrop-filter: blur(7px);
}
.bhp-exit-dialog {
	position: relative;
	z-index: 1;
	width: min(860px, 100%);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--paper);
	box-shadow: 0 32px 70px rgba(8, 12, 18, .32);
	overflow: hidden;
}
.bhp-exit-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--bg);
	color: var(--ink);
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
}
.bhp-exit-shell {
	display: grid;
	gap: 20px;
	padding: 28px;
}
.bhp-exit-head {
	display: grid;
	gap: 8px;
	max-width: 560px;
}
.bhp-exit-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--brand-dark);
	font-size: .8rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.bhp-exit-kicker::before {
	content: "";
	width: 30px;
	height: 4px;
	border-radius: 999px;
	background: var(--brand);
}
.bhp-exit-head h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 950;
	line-height: 1.06;
}
.bhp-exit-head p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.65;
}
.bhp-exit-story {
	display: grid;
	grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 96%, var(--bg)), var(--paper));
}
.bhp-exit-story-media {
	display: block;
	min-height: 100%;
	background: var(--nav);
}
.bhp-exit-story-media img,
.bhp-exit-story-media .image-fallback {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.bhp-exit-story-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 24px 26px;
}
.bhp-exit-story .card-topline {
	margin: 0;
}
.bhp-exit-story h3 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	font-weight: 950;
	line-height: 1.16;
}
.bhp-exit-story h3 a {
	color: var(--ink);
}
.bhp-exit-story h3 a:hover {
	color: var(--brand-dark);
}
.bhp-exit-story p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}
.bhp-exit-story .card-footer {
	margin-top: auto;
}
.bhp-exit-story-link {
	min-width: 132px;
	justify-content: center;
}
.bhp-dark .bhp-exit-dialog {
	background: var(--paper);
	border-color: var(--line);
}
.bhp-dark .bhp-exit-close {
	background: #0f1620;
	color: #fff;
	border-color: var(--line);
}
.bhp-dark .bhp-exit-story {
	background: linear-gradient(180deg, rgba(15,22,32,.92), rgba(15,22,32,.98));
}
.bhp-dark .bhp-exit-head p,
.bhp-dark .bhp-exit-story p {
	color: var(--muted);
}
.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 .bhp-exit-close {
	right: auto;
	left: 18px;
}
.bhp-rtl .bhp-exit-head,
.bhp-rtl .bhp-exit-story-body {
	text-align: right;
}
.bhp-rtl .bhp-exit-kicker {
	justify-content: flex-end;
}
.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 .magazine-brief-item {
	padding: 0 34px 14px 0;
}
.bhp-rtl .magazine-brief-item::before {
	left: auto;
	right: 0;
}
.bhp-rtl .magazine-briefs-head span {
	text-align: left;
}
.bhp-rtl .news-river .card-footer {
	justify-content: flex-end;
}
.bhp-rtl .site-footer a {
	margin-left: 0;
	margin-right: 14px;
}
.bhp-rtl .bhp-contact-reasons-list li {
	padding-left: 0;
	padding-right: 18px;
}
.bhp-rtl .bhp-contact-reasons-list li::before {
	left: auto;
	right: 0;
}
.bhp-rtl .bhp-contact-page-head,
.bhp-rtl .bhp-contact-meta-strip,
.bhp-rtl .contact-form-grid,
.bhp-rtl .contact-form-actions,
.bhp-rtl .bhp-contact-main-grid,
.bhp-rtl .bhp-contact-dual-grid,
.bhp-rtl .bhp-contact-faq-grid {
	direction: rtl;
}

@media (max-width: 980px) {
	.layout { grid-template-columns: 1fr; }
	.sidebar { position: static; order: 2; }
	.contact-form-grid,
	.bhp-contact-page-head,
	.bhp-contact-hero--editorial,
	.bhp-contact-main-grid--editorial,
	.bhp-contact-main-grid--support,
	.bhp-contact-main-grid--minimal,
	.bhp-contact-dual-grid,
	.bhp-contact-faq-grid,
	.bhp-contact-meta-strip {
		grid-template-columns: 1fr;
	}
	.hero-grid { grid-template-columns: 1fr 1fr; }
	.hero-card-1 { grid-column: span 2; }
	.magazine-frame {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
	}
	.magazine-briefs {
		grid-column: 1 / -1;
	}
	.recipes-focus-grid,
	.stories-focus-grid {
		grid-template-columns: 1fr 1fr;
	}
	.health-focus-grid,
	.category-dossier-grid {
		grid-template-columns: 1fr;
	}
	.home-trending-panel,
	.recipes-focus-grid .home-trending-panel,
	.stories-focus-grid .home-trending-panel {
		grid-column: 1 / -1;
	}
	.category-card-grid-recipes,
	.health-support-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.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 > 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: #10151d;
		color: #fff;
		border-radius: 999px;
		padding: 10px 14px;
		font-weight: 900;
	}
	.bhp-dark .menu-toggle {
		background: #10151d;
		color: #fff;
		border-color: #2b3542;
	}
	.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; }
	.content-area .bhp-ad-stable,
	.single-article .bhp-ad-stable,
	.sidebar .bhp-ad-stable {
		min-height: 120px;
	}
	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; }
	.contact-form-panel,
	.bhp-contact-sidecard,
	.bhp-contact-story-block,
	.bhp-contact-faq-item {
		padding: 18px;
	}
	.bhp-contact-page-head h1 {
		font-size: clamp(1.95rem, 9vw, 2.85rem);
	}
	.bhp-contact-visual-fallback {
		padding: 20px;
	}
	.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; }
	.magazine-frame,
	.news-river-card,
	.recipes-focus-grid,
	.stories-focus-grid,
	.health-focus-grid,
	.category-dossier-grid,
	.category-card-grid-recipes,
	.health-support-grid {
		grid-template-columns: 1fr;
	}
	.magazine-lead h2,
	.news-river-card h2,
	.focus-lead-body h2 {
		font-size: 1.55rem;
	}
	body.home .post-card h2 a,
	body.blog .post-card h2 a,
	body.home .focus-lead-body h2 a,
	body.blog .focus-lead-body h2 a,
	body.home .focus-compact-body h3 a,
	body.blog .focus-compact-body h3 a,
	body.home .headline-item h3 a,
	body.blog .headline-item h3 a,
	body.home .magazine-lead h2 a,
	body.blog .magazine-lead h2 a,
	body.home .magazine-mini h3 a,
	body.blog .magazine-mini h3 a,
	body.home .news-river-card h2 a,
	body.blog .news-river-card h2 a,
	body.home .home-trending-list .magazine-brief-item a,
	body.blog .home-trending-list .magazine-brief-item a {
		color: var(--ink);
	}
	.focus-compact-card {
		grid-template-columns: 1fr;
	}
	.focus-compact-media {
		aspect-ratio: 16 / 10;
	}
	.post-grid,
	.related-grid { grid-template-columns: 1fr; }
	.section-heading,
	.archive-header { display: block; }
	.section-heading span { display: block; margin-top: 6px; }
	.magazine-briefs-head { display: block; }
	.magazine-briefs-head span { display: block; margin-top: 6px; text-align: left; }
	.single-article { padding: 18px; }
	.article-header h1 { font-size: 2.05rem; }
	.entry-content .wp-caption,
	.entry-content figure.wp-caption {
		width: 100% !important;
		max-width: 100% !important;
	}
	.entry-content .wp-caption img {
		width: auto !important;
		max-width: 100% !important;
	}
	.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-exit-popup {
		place-items: center;
		padding: 14px;
	}
	.bhp-exit-dialog {
		width: min(100%, 720px);
		height: 50vh;
		max-height: 50vh;
		border-radius: 24px;
	}
	.bhp-exit-shell {
		height: 100%;
		overflow-y: auto;
		padding: 18px 18px 22px;
		gap: 14px;
	}
	.bhp-exit-head h2 {
		font-size: clamp(1.35rem, 6vw, 1.8rem);
	}
	.bhp-exit-story {
		grid-template-columns: minmax(132px, 42%) minmax(0, 1fr);
		align-items: stretch;
	}
	.bhp-exit-story-media {
		aspect-ratio: auto;
		min-height: 100%;
	}
	.bhp-exit-story-body {
		padding: 14px 14px 16px;
		gap: 10px;
	}
	.bhp-exit-story h3 {
		font-size: clamp(1.05rem, 4.4vw, 1.28rem);
	}
	.bhp-exit-story p {
		font-size: .9rem;
		line-height: 1.45;
	}
	.bhp-push-prompt {
		left: 14px;
		right: 14px;
		bottom: 14px;
		width: auto;
	}
}

/* Viva theme overrides */
body {
	background:
		radial-gradient(circle at 18% -5%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 28%),
		radial-gradient(circle at 82% 0, color-mix(in srgb, var(--hot) 9%, transparent), transparent 32%),
		linear-gradient(180deg, #fffafc 0, var(--bg) 420px);
}
.wrap { width: min(var(--max), calc(100% - 34px)); }
.viva-topbar {
	background: #0f1520;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.viva-topbar .topbar-wrap {
	min-height: 40px;
}
.viva-topbar .topbar-left,
.viva-topbar .topbar-right {
	gap: 12px;
}
.viva-header {
	background: rgba(255,255,255,.98);
	border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, #fff);
}
.viva-brand-row {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 22px 0 18px;
}
.viva-branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}
.viva-branding .site-title {
	font-size: clamp(1.9rem, 3.2vw, 2.9rem);
	font-weight: 950;
}
.viva-branding .site-title::before {
	display: none;
}
.viva-branding .site-description {
	max-width: 44ch;
	margin: 0;
}
.viva-branding .custom-logo {
	max-height: 78px;
}
.viva-nav-row {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 14px;
}
.viva-nav ul {
	justify-content: center;
	gap: 6px;
}
.viva-nav a {
	padding: 10px 14px;
	border-radius: 999px;
	font-size: .95rem;
	font-weight: 800;
}
.viva-nav a:hover,
.viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
.bhp-dark .viva-nav a:hover,
.bhp-dark .viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
.viva-category-strip {
	background: transparent;
	border-bottom: 0;
}
.viva-category-strip-wrap {
	min-height: auto;
	padding: 12px 0 18px;
	gap: 8px;
}
.viva-category-strip-wrap span {
	background: #111827;
}
.viva-category-strip-wrap a {
	padding: 6px 12px;
	background: rgba(255,255,255,.9);
	border: 1px solid var(--line);
	border-radius: 999px;
}
.site-main {
	padding-top: 18px;
}
.viva-front {
	margin-bottom: 36px;
}
.viva-newsline {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	margin-bottom: 20px;
	padding: 12px 16px;
	background: rgba(255,255,255,.9);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--soft-shadow);
}
.viva-newsline-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--hot) 24%, var(--brand)));
	color: #07110e;
	font-size: .8rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: 12px 16px;
}
.viva-newsline-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.viva-newsline-item {
	display: grid;
	gap: 6px;
	align-content: start;
	padding: 8px 2px;
	color: var(--ink);
}
.viva-newsline-item span {
	font-size: .94rem;
	font-weight: 820;
	line-height: 1.32;
}
.viva-newsline-item time {
	color: var(--muted);
	font-size: .78rem;
	font-weight: 700;
}
.viva-front-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .84fr);
	gap: 20px;
	align-items: start;
}
.viva-front-main,
.viva-front-side {
	display: grid;
	gap: 16px;
}
.viva-front-main .hero-kicker {
	margin-bottom: 0;
}
.viva-front .focus-lead-card,
.viva-front .focus-compact-card,
.viva-front .home-trending-panel,
.viva-post-card,
.viva-story-card,
.viva-single-article,
.viva-sidebar .widget,
.viva-sidebar .trending-posts {
	border-radius: 18px;
	border-color: color-mix(in srgb, var(--line) 86%, #fff);
	box-shadow: 0 18px 46px rgba(27, 33, 48, .08);
}
.viva-front .focus-lead-card {
	overflow: hidden;
}
.viva-front .focus-lead-media {
	aspect-ratio: 16 / 10;
}
.viva-front .focus-lead-body {
	padding: 22px 24px 24px;
	gap: 14px;
}
.viva-front .focus-lead-body h2 {
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.04;
}
.viva-front .focus-compact-card {
	grid-template-columns: 132px minmax(0, 1fr);
	overflow: hidden;
}
.viva-front .focus-compact-media {
	min-height: 100%;
}
.viva-front .focus-compact-body {
	padding: 14px 16px;
}
.viva-front .focus-compact-body h3 {
	font-size: 1.02rem;
	line-height: 1.26;
}
.viva-front-trending {
	padding: 18px;
}
.layout {
	grid-template-columns: minmax(0, 1fr) 318px;
	gap: 28px;
}
.viva-section-heading {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom-width: 2px;
	border-bottom-color: color-mix(in srgb, var(--brand) 24%, var(--ink));
}
.viva-story-river {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.viva-story-card {
	display: grid;
	grid-template-columns: 1fr;
	background: rgba(255,255,255,.95);
	border: 1px solid var(--line);
	overflow: hidden;
}
.viva-story-media {
	display: block;
	background: var(--nav);
	aspect-ratio: 16 / 10;
	min-height: auto;
}
.viva-story-media img,
.viva-story-media .image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.viva-story-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 22px 24px;
}
.viva-story-card h2 {
	margin: 0;
	font-size: clamp(1.15rem, 1.6vw, 1.55rem);
	font-weight: 930;
	line-height: 1.2;
}
.viva-story-card h2 a {
	color: var(--ink);
}
.viva-story-card h2 a:hover {
	color: var(--brand-dark);
}
.viva-story-card p {
	margin: 0;
	color: var(--muted);
	font-size: .98rem;
	line-height: 1.66;
}
.viva-story-card .card-footer {
	margin-top: auto;
	justify-content: flex-start;
}
.viva-post-card {
	background: rgba(255,255,255,.95);
}
.viva-post-card .post-card-image::after {
	height: 34%;
	background: linear-gradient(180deg, transparent, rgba(16, 21, 29, .32));
}
.viva-post-card .post-card-body {
	padding: 18px 18px 20px;
}
.viva-post-card h2 {
	font-size: 1.22rem;
}
.viva-sidebar .widget,
.viva-sidebar .trending-posts {
	background: rgba(255,255,255,.95);
	padding: 20px;
}
.viva-sidebar .widget-title,
.viva-sidebar .trending-posts h2 {
	border-bottom-width: 2px;
}
.viva-single-article {
	background: rgba(255,255,255,.96);
	padding: clamp(22px, 4vw, 44px);
}
.viva-article-header {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}
.viva-single-article .article-header h1 {
	margin: 0;
	font-size: clamp(2.35rem, 4.6vw, 4.25rem);
	line-height: 1.02;
}
.viva-single-article .featured-image img {
	border-radius: 16px;
}
.viva-single-article .entry-content {
	max-width: 760px;
	margin-inline: auto;
}
.viva-single-article .post-nav {
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}
.viva-footer {
	margin-top: 56px;
	background: #10151d;
}
@media (max-width: 980px) {
	.wrap { width: min(var(--max), calc(100% - 26px)); }
	.viva-newsline {
		grid-template-columns: 1fr;
	}
	.viva-newsline-list,
	.viva-front-grid {
		grid-template-columns: 1fr;
	}
	.viva-nav {
		top: 164px;
	}
	.no-header-topbar .viva-nav {
		top: 126px;
	}
	.viva-story-card {
		grid-template-columns: 220px minmax(0, 1fr);
	}
}
@media (max-width: 720px) {
	.wrap { width: min(var(--max), calc(100% - 22px)); }
	.viva-brand-row {
		padding: 18px 0 12px;
	}
	.viva-branding .site-title {
		font-size: clamp(1.6rem, 8vw, 2.3rem);
	}
	.viva-branding .custom-logo {
		max-height: 66px;
	}
	.viva-nav-row {
		justify-content: flex-end;
		padding-bottom: 12px;
	}
	.viva-newsline {
		padding: 14px;
		border-radius: 16px;
	}
	.viva-newsline-list {
		grid-template-columns: 1fr;
	}
	.viva-front .focus-compact-card {
		grid-template-columns: 1fr;
	}
	.viva-front .focus-compact-media {
		min-height: auto;
		aspect-ratio: 4 / 3;
	}
	.viva-story-card {
		grid-template-columns: 1fr;
	}
	.viva-story-media {
		aspect-ratio: 16 / 10;
		min-height: auto;
	}
	.viva-story-card h2 {
		font-size: 1.55rem;
	}
	.viva-single-article {
		padding: 18px;
	}
	.viva-single-article .entry-content {
		max-width: none;
	}
}

/* Viva reference-style redesign */
.viva-topbar {
	background: var(--topbar-bg, #21b18f);
	color: #fff;
}
.viva-topbar .topbar-left,
.viva-topbar .topbar-right {
	gap: 16px;
}
.viva-topbar .topbar-left a,
.viva-topbar .topbar-right a,
.viva-topbar span {
	color: #fff;
}
.viva-topbar .bhp-follow-topbar span {
	display: none;
}
.viva-topbar .bhp-follow-topbar {
	gap: 10px;
}
.viva-topbar .bhp-follow-topbar .bhp-follow-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border-radius: 0;
	background: transparent !important;
	color: #fff !important;
	font-size: 0;
}
.viva-topbar .bhp-follow-topbar .bhp-follow-link svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: currentColor;
}
.viva-topbar .topbar-custom-menu a {
	color: #fff !important;
	font-size: .84rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}
.viva-header {
	background: var(--menu-header-bg, #353535);
	border-bottom: 0;
}
.viva-header-wrap {
	min-height: 62px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
}
.viva-branding {
	padding: 0;
	align-items: flex-start;
	text-align: left;
}
.viva-branding .bhp-logo-link,
.viva-branding .custom-logo-link,
.viva-branding .site-title {
	display: inline-flex;
	align-items: center;
	min-height: 62px;
	padding: 0 22px;
	background: var(--logo-panel-bg, #090909);
}
.viva-branding .custom-logo {
	max-height: 44px;
}
.viva-branding .site-title {
	color: #fff;
	font-size: 2rem;
}
.viva-branding .site-title::before,
.viva-branding .site-description {
	display: none;
}
.viva-nav {
	min-width: 0;
}
.viva-nav ul {
	justify-content: flex-start;
	gap: 8px;
}
.viva-nav a {
	padding: 20px 12px;
	border-radius: 0;
	color: #fff;
	font-size: .95rem;
	font-weight: 900;
	text-transform: uppercase;
}
.viva-nav a:hover,
.viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
.bhp-dark .viva-nav a:hover,
.bhp-dark .viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
.menu-style-block .viva-nav ul {
	gap: 8px;
}
.menu-style-block .viva-nav a {
	padding: 20px 12px;
	border-radius: 0;
}
.menu-style-pill .viva-nav ul {
	gap: 10px;
}
.menu-style-pill .viva-nav a {
	margin: 10px 0;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: .92rem;
}
.menu-style-pill .viva-nav a:hover,
.menu-style-pill .viva-nav .current-menu-item > a,
.bhp-dark.menu-style-pill .viva-nav a:hover,
.bhp-dark.menu-style-pill .viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
.menu-style-underline .viva-nav ul {
	gap: 14px;
}
.menu-style-underline .viva-nav a {
	position: relative;
	padding: 20px 0 18px;
	background: transparent !important;
}
.menu-style-underline .viva-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	height: 3px;
	border-radius: 999px;
	background: var(--menu-hover-bg, #21b18f);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .18s ease;
}
.menu-style-underline .viva-nav a:hover::after,
.menu-style-underline .viva-nav .current-menu-item > a::after {
	transform: scaleX(1);
}
.menu-style-underline .viva-nav a:hover,
.menu-style-underline .viva-nav .current-menu-item > a,
.bhp-dark.menu-style-underline .viva-nav a:hover,
.bhp-dark.menu-style-underline .viva-nav .current-menu-item > a {
	color: #fff;
}
.menu-style-boxed .viva-nav ul {
	gap: 10px;
}
.menu-style-boxed .viva-nav a {
	margin: 9px 0;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	font-size: .92rem;
}
.menu-style-boxed .viva-nav a:hover,
.menu-style-boxed .viva-nav .current-menu-item > a,
.bhp-dark.menu-style-boxed .viva-nav a:hover,
.bhp-dark.menu-style-boxed .viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	border-color: transparent;
	color: #fff;
}
.menu-style-pro_light .viva-header {
	background: #fff;
	border-bottom: 1px solid var(--line);
}
.menu-style-pro_light .viva-branding .bhp-logo-link,
.menu-style-pro_light .viva-branding .custom-logo-link,
.menu-style-pro_light .viva-branding .site-title {
	background: #fff;
	color: var(--ink);
}
.menu-style-pro_light .viva-nav a,
.menu-style-pro_light .viva-account-toggle,
.menu-style-pro_light .viva-search-toggle,
.menu-style-pro_light .viva-site-chip {
	color: var(--ink);
}
.menu-style-pro_light .viva-account-toggle,
.menu-style-pro_light .viva-search-toggle,
.menu-style-pro_light .viva-site-chip {
	border-color: rgba(15,20,29,.12);
}
.menu-style-pro_light .viva-site-chip:hover {
	color: var(--ink);
}
.menu-style-pro_light .viva-header-tools .search-submit {
	color: var(--ink);
	border-left-color: rgba(15,20,29,.12);
}
.menu-style-pro_light .viva-nav a:hover,
.menu-style-pro_light .viva-nav .current-menu-item > a,
.bhp-dark.menu-style-pro_light .viva-nav a:hover,
.bhp-dark.menu-style-pro_light .viva-nav .current-menu-item > a {
	background: var(--menu-hover-bg, #21b18f);
	color: #fff;
}
@media (min-width: 981px) {
	.menu-style-center_logo .viva-header-wrap {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		align-items: center;
	}
	.menu-style-center_logo .viva-nav {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}
	.menu-style-center_logo .viva-nav ul {
		justify-content: flex-start;
		gap: 10px;
	}
	.menu-style-center_logo .viva-nav a {
		padding: 18px 10px;
		font-size: .92rem;
	}
	.menu-style-center_logo .viva-branding {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		align-items: center;
		text-align: center;
	}
	.menu-style-center_logo .viva-header-tools {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}
	.menu-style-center_logo .viva-branding .bhp-logo-link,
	.menu-style-center_logo .viva-branding .custom-logo-link,
	.menu-style-center_logo .viva-branding .site-title {
		min-height: 68px;
	}
	.menu-style-stacked .viva-header-wrap {
		position: relative;
		grid-template-columns: 1fr;
		justify-items: center;
		row-gap: 0;
		padding: 12px 0 0;
	}
	.menu-style-stacked .viva-branding {
		grid-column: 1;
		grid-row: 1;
		align-items: center;
		text-align: center;
	}
	.menu-style-stacked .viva-header-tools {
		position: absolute;
		top: 14px;
		right: 0;
	}
	.menu-style-stacked .viva-nav {
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		margin-top: 12px;
		border-top: 1px solid rgba(255,255,255,.08);
	}
	.menu-style-stacked .viva-nav ul {
		justify-content: center;
		gap: 14px;
	}
	.menu-style-stacked .viva-nav a {
		padding: 16px 10px;
		font-size: .92rem;
	}
	.menu-style-stacked .viva-branding .bhp-logo-link,
	.menu-style-stacked .viva-branding .custom-logo-link,
	.menu-style-stacked .viva-branding .site-title {
		min-height: 72px;
	}
}
.viva-header-tools {
	display: flex;
	align-items: center;
	gap: 12px;
}
.viva-header-tools .dark-mode-toggle {
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: #6a6a6a;
	border: 0;
	color: #fff;
}
.viva-header-tools .dark-mode-icon {
	width: 16px;
	height: 16px;
}
.viva-site-chip {
	display: inline-flex;
	align-items: center;
	padding-left: 12px;
	border-left: 1px solid rgba(255,255,255,.18);
	color: #fff;
	font-size: .95rem;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}
.viva-site-chip:hover {
	color: #fff;
}
.viva-header-tools .search-form {
	display: flex;
	align-items: center;
}
.viva-header-tools .search-field {
	display: none;
}
.viva-header-tools .search-submit {
	height: 36px;
	padding: 0 10px;
	border-radius: 0;
	background: transparent;
	color: #fff;
	border-left: 1px solid rgba(255,255,255,.16);
}
.viva-category-strip {
	display: none;
}
.viva-front {
	margin-bottom: 36px;
}
.viva-newsline {
	grid-template-columns: 220px minmax(0, 1fr) 96px;
	align-items: center;
	padding: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	box-shadow: none;
}
.viva-newsline-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 46px;
	padding: 0 18px;
	background: #fff;
	color: #111;
	font-size: .92rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.viva-newsline-label::before {
	content: "\26A1";
	font-size: .82rem;
}
.viva-newsline-item-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 18px;
	min-height: 46px;
	color: var(--ink);
}
.viva-newsline-item-main span {
	font-size: 1rem;
	font-weight: 500;
}
.viva-newsline-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-self: stretch;
}
.viva-newsline-nav span {
	display: grid;
	place-items: center;
	border-left: 1px solid var(--line);
	font-size: 1.35rem;
	color: var(--ink);
}
.viva-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 18px;
	margin-top: 14px;
}
.viva-hero-lead,
.viva-hero-mini {
	position: relative;
	background: #111;
	overflow: hidden;
}
.viva-hero-lead {
	min-height: 470px;
}
.viva-hero-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.viva-hero-mini {
	min-height: 226px;
}
.viva-hero-link,
.viva-hero-link img {
	display: block;
	width: 100%;
	height: 100%;
}
.viva-hero-link img {
	object-fit: cover;
}
.viva-hero-overlay {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	gap: 10px;
	padding: 28px 26px 24px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.68));
}
.viva-hero-overlay-small {
	padding: 18px 18px 16px;
}
.viva-hero-overlay .hero-category {
	align-self: start;
	width: fit-content;
}
.viva-hero-overlay .hero-title {
	font-size: 1.15rem;
	line-height: 1.24;
}
.viva-hero-lead .hero-title {
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.18;
}
.viva-portal-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, .52fr) minmax(0, .52fr);
	gap: 18px;
	margin-top: 12px;
}
.viva-portal-feature,
.viva-portal-column {
	display: grid;
	gap: 14px;
}
.viva-portal-grid .hero-kicker {
	margin-bottom: 0;
}
.viva-portal-lead {
	border-radius: 0 !important;
	box-shadow: none !important;
	border: 0 !important;
}
.viva-portal-lead .focus-lead-body {
	padding: 0;
}
.viva-portal-lead .focus-lead-body h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}
.viva-portal-lead .focus-lead-media {
	border-radius: 0;
}
.viva-portal-column .focus-compact-card {
	grid-template-columns: 1fr;
	border-radius: 0;
	box-shadow: none;
}
.viva-portal-column .focus-compact-media {
	aspect-ratio: 16 / 10;
	min-height: auto;
}
.viva-portal-column .focus-compact-body {
	padding: 0;
}
.viva-portal-column .focus-compact-body p {
	display: none;
}
.viva-section-heading {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 18px;
}
.viva-story-river {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.viva-story-card {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
}
.viva-story-media {
	aspect-ratio: 16 / 10;
	min-height: auto;
}
.viva-story-body {
	padding: 0;
}
.viva-story-card h2 {
	font-size: 1.6rem;
}
.viva-story-card .card-topline,
.viva-post-card .card-topline,
.viva-sidebar .trending-posts time {
	font-size: .8rem;
}
.viva-post-card,
.viva-sidebar .widget,
.viva-sidebar .trending-posts {
	border-radius: 0;
	box-shadow: none;
}
.viva-sidebar .trending-posts,
.viva-sidebar .widget {
	padding: 0;
	border: 0;
	background: transparent;
}
.viva-sidebar .trending-posts h2,
.viva-sidebar .widget-title {
	padding-bottom: 10px;
	border-bottom: 2px solid var(--line);
}
.viva-sidebar .trending-posts li {
	padding-left: 0;
}
.viva-sidebar .trending-posts li::before {
	display: none;
}
.viva-single-article {
	border-radius: 0;
	box-shadow: none;
	border: 0;
	padding: 0;
	background: transparent;
}
.viva-single-article .article-header h1 {
	font-size: clamp(2.4rem, 4.4vw, 4rem);
}
.viva-single-article .featured-image img {
	border-radius: 0;
	box-shadow: none;
}
.viva-single-article .entry-content {
	max-width: none;
	margin-inline: 0;
}
.viva-single-article .bhp-share-main {
	background: #4367b1;
}
.viva-single-article .bhp-share-pinterest {
	background: #d52f35;
}
.viva-single-article .bhp-share-x {
	background: #5d96c9;
}
.viva-footer {
	margin-top: 48px;
}
@media (max-width: 980px) {
	.viva-header-wrap {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"brand tools"
			"nav nav";
		gap: 10px 14px;
		padding: 12px 0;
	}
	.viva-branding { grid-area: brand; }
	.viva-nav { grid-area: nav; }
	.viva-header-tools { grid-area: tools; justify-content: flex-end; }
	.viva-nav {
		top: 116px;
		left: 0;
		right: 0;
	}
	.no-header-topbar .viva-nav {
		top: 78px;
	}
	.viva-nav ul {
		justify-content: flex-start;
	}
	.viva-newsline {
		grid-template-columns: 1fr;
	}
	.viva-newsline-nav {
		grid-template-columns: repeat(2, 48px);
		justify-content: end;
	}
	.viva-hero-grid,
	.viva-portal-grid,
	.viva-story-river {
		grid-template-columns: 1fr;
	}
	.viva-story-card {
		grid-template-columns: 1fr;
	}
	.viva-hero-lead {
		min-height: 360px;
	}
	.viva-hero-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 720px) {
	.viva-newsline {
		display: none;
	}
	.viva-topbar-wrap {
		align-items: center;
	}
	.viva-topbar-right {
		display: none;
	}
	.viva-branding .bhp-logo-link,
	.viva-branding .custom-logo-link,
	.viva-branding .site-title {
		min-height: 54px;
		padding: 0 16px;
		background: var(--logo-panel-bg, #090909);
	}
	.viva-branding .custom-logo {
		max-height: 36px;
	}
	.viva-site-chip {
		display: none;
	}
	.viva-header-tools .search-submit {
		border-left: 0;
		padding-right: 0;
	}
	.viva-hero-stack {
		grid-template-columns: 1fr;
	}
	.viva-hero-lead,
	.viva-hero-mini {
		min-height: 240px;
	}
	.viva-story-card h2 {
		font-size: 1.4rem;
	}
}

/* Portal refinement pass */
.viva-header-tools {
	position: relative;
	gap: 10px;
}
.viva-theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #6d6d6d;
	cursor: pointer;
}
.viva-theme-toggle-track {
	position: relative;
	display: block;
	width: 48px;
	height: 28px;
}
.viva-theme-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #fff;
	color: #757575;
	box-shadow: 0 4px 10px rgba(0,0,0,.24);
	transition: transform .22s ease, color .22s ease;
}
.viva-theme-icon {
	position: absolute;
	width: 14px;
	height: 14px;
	transition: opacity .2s ease;
}
.viva-theme-icon-moon {
	opacity: 1;
}
.viva-theme-icon-sun {
	opacity: 0;
}
.bhp-dark .viva-theme-toggle-thumb {
	transform: translateX(20px);
	color: #d1a440;
}
.bhp-dark .viva-theme-icon-moon {
	opacity: 0;
}
.bhp-dark .viva-theme-icon-sun {
	opacity: 1;
}
.viva-account,
.viva-search {
	position: relative;
}
.viva-account-toggle,
.viva-search-toggle {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}
.viva-account-toggle {
	width: 38px;
	justify-content: center;
	border-left: 1px solid rgba(255,255,255,.18);
}
.viva-account-badge {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	flex: 0 0 22px;
	overflow: hidden;
}
.viva-account-badge svg {
	display: block;
	width: 100%;
	height: 100%;
}
.viva-account-menu,
.viva-search-box {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 50;
	background: #fff;
	border: 1px solid rgba(15, 20, 29, .08);
	box-shadow: 0 18px 40px rgba(15, 20, 29, .18);
}
.viva-account-menu[hidden],
.viva-search-box[hidden],
.viva-newsline-item-main[hidden] {
	display: none !important;
}
.viva-account-menu {
	display: grid;
	gap: 0;
	min-width: 220px;
	padding: 8px 0;
	border-radius: 14px;
}
.viva-account-menu-head {
	display: grid;
	gap: 2px;
	padding: 10px 16px 12px;
	border-bottom: 1px solid rgba(15, 20, 29, .08);
}
.viva-account-menu-head strong {
	color: var(--ink);
	font-size: .95rem;
	font-weight: 800;
}
.viva-account-menu-head span {
	color: var(--muted);
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.viva-account-menu a {
	display: block;
	padding: 12px 16px;
	color: var(--ink);
	font-size: .96rem;
	font-weight: 700;
}
.viva-account-menu a:hover {
	background: #f5f7fb;
	color: var(--brand-dark);
}
.bhp-dark .viva-account-menu,
.bhp-dark .viva-search-box {
	background: #151b23;
	border-color: var(--line);
	color: #fff;
}
.bhp-dark .viva-account-menu-head {
	border-bottom-color: var(--line);
}
.bhp-dark .viva-account-menu-head strong,
.bhp-dark .viva-account-menu a {
	color: #fff;
}
.bhp-dark .viva-account-menu-head span {
	color: #cdd5e1;
}
.bhp-dark .viva-account-menu a:hover {
	background: #0f1620;
	color: #fff;
}
.bhp-dark .viva-search-box .search-field {
	background: #0f1620;
	color: #fff;
	border-color: var(--line);
}
.bhp-dark .viva-search-box .search-submit {
	color: #fff;
}
.viva-search-toggle {
	width: 38px;
	justify-content: center;
	padding: 0;
	border-left: 1px solid rgba(255,255,255,.16);
}
.viva-search-toggle svg {
	width: 18px;
	height: 18px;
}
.viva-search-box {
	width: min(350px, calc(100vw - 28px));
	padding: 14px;
	border-radius: 16px;
}
.viva-search-box .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}
.viva-search-box label {
	display: block;
}
.viva-search-box .search-field {
	display: block;
	height: 44px;
	border-radius: 12px;
}
.viva-search-box .search-submit {
	height: 44px;
	padding: 0 16px;
	border-radius: 12px;
	background: #21b18f;
	color: #fff;
	border-left: 0;
}
.viva-account.is-open .viva-account-toggle,
.viva-search.is-open .viva-search-toggle {
	color: #21b18f;
}
.viva-newsline {
	grid-template-columns: 220px minmax(0, 1fr) 110px;
}
.viva-newsline-track {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 46px;
}
.viva-newsline-item-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	width: 100%;
	height: 100%;
	min-width: 0;
}
.viva-newsline-item-main span {
	display: block;
	min-width: 0;
	line-height: 1.25;
	padding-top: 10px;
	overflow-wrap: anywhere;
}
.viva-newsline-item-main time {
	display: none;
}
.viva-newsline-nav {
	grid-template-columns: repeat(2, 1fr);
}
.viva-newsline-arrow {
	display: grid;
	place-items: center;
	border: 0;
	border-left: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	font-size: 1.35rem;
	cursor: pointer;
	transition: color .18s ease, background-color .18s ease;
}
.viva-newsline-arrow:hover {
	background: #f3faf8;
	color: var(--brand-dark);
}
.bhp-dark .viva-newsline {
	background: #111821;
	border-color: var(--line);
}
.bhp-dark .viva-newsline-label {
	background: #111821;
	color: #f8fbff;
	border-color: var(--line);
}
.bhp-dark .viva-newsline-item-main {
	color: #f8fbff;
}
.bhp-dark .viva-newsline-item-main span {
	color: #f8fbff;
}
.bhp-dark .viva-newsline-nav {
	border-color: var(--line);
}
.bhp-dark .viva-newsline-arrow {
	background: #111821;
	color: #f8fbff;
	border-color: var(--line);
}
.bhp-dark .viva-newsline-arrow:hover {
	background: color-mix(in srgb, var(--brand) 18%, #111821);
	color: #ffffff;
}
.viva-story-card,
.viva-post-card,
.focus-lead-card,
.focus-compact-card,
.viva-portal-column .focus-compact-card {
	min-width: 0;
}
.post-card-body,
.viva-story-body,
.focus-lead-body,
.focus-compact-body,
.trending-card-body {
	min-width: 0;
}
.card-topline,
.card-footer,
.viva-story-card .card-topline,
.viva-post-card .card-topline {
	flex-wrap: wrap;
	row-gap: 6px;
}
.post-card h2,
.viva-post-card h2,
.viva-story-card h2,
.focus-lead-card h2,
.focus-compact-card h3 {
	overflow-wrap: anywhere;
}
.post-card p,
.viva-post-card p,
.viva-story-card p,
.focus-lead-card p,
.focus-compact-card p {
	overflow-wrap: anywhere;
}
.viva-post-card .post-card-body,
.viva-story-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.viva-post-card .post-card-body {
	padding: 22px 22px 24px;
}
.viva-post-card .card-topline {
	font-size: .74rem;
	column-gap: 10px;
	row-gap: 8px;
}
.viva-post-card .card-topline time {
	font-size: .72rem;
}
.viva-post-card h2 {
	font-size: clamp(1.12rem, 1.55vw, 1.5rem);
	line-height: 1.22;
}
.viva-post-card p {
	font-size: .98rem;
	line-height: 1.66;
}
.viva-post-card .card-footer,
.viva-story-card .card-footer {
	margin-top: auto;
	justify-content: flex-start;
}
.read-more {
	min-width: 74px;
	height: 36px;
	padding: 0 18px;
}
.viva-sidebar .trending-posts {
	padding: 0;
	background: transparent;
}
.viva-sidebar .trending-style-picture {
	padding: 0;
	background: transparent;
	color: var(--ink);
}
.viva-sidebar .trending-style-picture h2 {
	color: var(--ink);
	border-bottom: 1px solid rgba(15,20,29,.12);
	position: relative;
	padding-bottom: 12px;
}
.viva-sidebar .trending-style-picture h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 32px;
	height: 2px;
	background: #11b48b;
}
.viva-sidebar .trending-style-picture ol {
	display: grid;
	gap: 22px;
}
.viva-sidebar .trending-style-picture li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 0 0 4px;
	border-bottom: 0;
}
.viva-sidebar .trending-style-picture li:last-child {
	padding-bottom: 0;
}
.viva-sidebar .trending-style-picture .trending-thumb {
	width: 100%;
	height: auto;
	border-radius: 0;
	background: #eef3f8;
}
.viva-sidebar .trending-style-picture .trending-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.trending-card-body {
	display: grid;
	gap: 10px;
}
.trending-card-category {
	display: inline-flex;
	width: fit-content;
	margin-top: -22px;
	margin-left: 12px;
	padding: 4px 8px;
	background: var(--brand);
	color: var(--button-text, #ffffff);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.trending-card-title {
	display: block;
	color: var(--ink) !important;
	font-size: 1rem !important;
	font-weight: 800 !important;
	line-height: 1.4 !important;
}
.trending-card-title:hover {
	color: var(--brand-dark) !important;
}
.trending-card-excerpt {
	margin: 0;
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.58;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.trending-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--muted);
	font-size: .78rem;
}
.trending-card-views::before {
	content: "\2022";
	margin-right: 6px;
}
.viva-sidebar .trending-style-picture .trending-card-meta time,
.viva-sidebar .trending-style-picture .trending-card-views {
	color: var(--muted);
}
.bhp-dark .viva-account-menu,
.bhp-dark .viva-search-box {
	background: #151b23;
}
@media (max-width: 980px) {
	.viva-header-tools {
		gap: 6px;
	}
	.viva-account-name {
		max-width: 96px;
	}
	.viva-newsline {
		grid-template-columns: 1fr;
	}
	.viva-newsline-label {
		border-bottom: 1px solid var(--line);
	}
	.viva-newsline-track {
		display: block;
		min-height: auto;
		padding: 8px 0;
	}
	.viva-newsline-item-main {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 0 16px;
		height: auto;
	}
	.viva-newsline-nav {
		grid-template-columns: repeat(2, 52px);
		justify-content: end;
	}
	.viva-search-box,
	.viva-account-menu {
		right: 0;
	}
}
@media (max-width: 720px) {
	.viva-search-box,
	.viva-account-menu {
		position: fixed;
		top: 92px;
		right: 14px;
		left: 14px;
		width: auto;
	}
	.viva-post-card .post-card-body,
	.viva-story-body {
		padding: 18px 18px 20px;
	}
.viva-post-card h2,
.viva-story-card h2 {
	font-size: 1.28rem;
}
.viva-post-card p,
.viva-story-card p {
	font-size: .98rem;
	line-height: 1.62;
}
}
.sidebar .search-form,
.viva-sidebar .search-form,
.widget_search .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	gap: 10px;
	align-items: center;
}
.sidebar .search-form label,
.viva-sidebar .search-form label,
.widget_search .search-form label {
	display: block;
	margin: 0;
}
.sidebar .search-form .search-submit,
.viva-sidebar .search-form .search-submit,
.widget_search .search-form .search-submit {
	width: 44px;
	height: 44px;
	min-width: 44px;
	padding: 0;
	font-size: 0;
	color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='6.5' fill='none' stroke='white' stroke-width='2.3'/%3E%3Cline x1='16' y1='16' x2='21' y2='21' stroke='white' stroke-width='2.3' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
}

@media (max-width: 720px) {
	.layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.content-area,
	.sidebar,
	.viva-sidebar {
		width: 100%;
		min-width: 0;
	}
	.viva-header-wrap {
		position: relative;
		grid-template-columns: minmax(0, 1fr) auto auto;
		grid-template-areas: "brand tools menu";
		align-items: center;
		gap: 10px;
		padding: 10px 0;
	}
	.viva-topbar .topbar-left,
	.viva-topbar .topbar-right {
		gap: 12px;
	}
	.viva-branding {
		grid-area: brand;
		align-items: flex-start;
		text-align: left;
	}
	.viva-branding .bhp-logo-link,
	.viva-branding .custom-logo-link,
	.viva-branding .site-title {
		min-height: 0;
		padding: 8px 14px;
		background: var(--logo-panel-bg, #090909);
	}
	.viva-branding .custom-logo {
		max-height: 54px;
	}
	.viva-header-tools {
		grid-area: tools;
		justify-self: end;
		align-items: center;
		gap: 4px;
	}
	.viva-theme-toggle {
		width: 40px;
		height: 26px;
	}
	.viva-theme-toggle-track {
		width: 40px;
		height: 26px;
	}
	.viva-theme-toggle-thumb {
		width: 20px;
		height: 20px;
	}
	.bhp-dark .viva-theme-toggle-thumb {
		transform: translateX(14px);
	}
	.viva-account-toggle,
	.viva-search-toggle {
		height: 30px;
		padding: 0 6px;
	}
	.viva-account-toggle {
		width: 30px;
		border-left: 0;
	}
	.viva-search-toggle {
		width: 30px;
		border-left: 0;
	}
	.viva-nav {
		grid-area: nav;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		z-index: 10020;
	}
	.viva-nav.primary-nav {
		left: 0;
		right: 0;
		top: calc(100% + 8px);
		max-height: calc(100vh - 136px);
		padding: 12px;
		overflow-y: auto;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: 16px;
		box-shadow: 0 20px 44px rgba(17, 24, 39, .18);
	}
	.viva-nav.primary-nav ul {
		display: grid;
		gap: 8px;
	}
	.viva-nav.primary-nav li {
		display: block;
	}
	.viva-nav.primary-nav a {
		color: var(--ink);
		background: transparent;
		font-size: .94rem;
		font-weight: 800;
		letter-spacing: 0;
		padding: 12px 14px;
		border-radius: 10px;
	}
	.viva-nav.primary-nav .menu-item-has-children,
	.viva-nav.primary-nav .page_item_has_children {
		display: grid;
		grid-template-columns: 1fr 34px;
		gap: 8px;
		align-items: center;
	}
	.viva-nav.primary-nav .submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.viva-nav.primary-nav > ul > li > .sub-menu,
	.viva-nav.primary-nav > ul > li > .children {
		position: static;
		grid-column: 1 / -1;
		margin-top: 6px;
		padding: 4px 0 0 8px;
		background: transparent;
		border: 0;
		box-shadow: none;
	}
	.viva-nav.primary-nav > ul > li > .sub-menu a,
	.viva-nav.primary-nav > ul > li > .children a {
		font-size: .88rem;
		font-weight: 700;
		padding: 10px 12px;
	}
	.viva-menu-toggle.menu-toggle {
		grid-area: menu;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		min-height: 38px;
		padding: 0;
		font-size: 0;
		line-height: 1;
		box-shadow: none;
	}
	.viva-menu-toggle.menu-toggle::before {
		content: "\2630";
		font-size: 1.08rem;
		font-weight: 700;
	}
	.viva-menu-toggle.menu-toggle.is-active::before {
		content: "\2715";
		font-size: 1rem;
	}
	.viva-newsline {
		margin-top: 10px;
		grid-template-columns: minmax(0, 1fr) 88px;
		gap: 0;
		border-radius: 16px;
		padding: 0;
		overflow: hidden;
	}
	.viva-newsline-label {
		grid-column: 1 / -1;
		justify-content: center;
		height: 40px;
		padding: 0 14px;
		font-size: .84rem;
		border-bottom: 1px solid var(--line);
	}
	.viva-newsline-track {
		grid-column: 1 / 2;
		display: flex;
		align-items: center;
		min-height: 84px;
		padding: 12px 14px;
	}
	.viva-newsline-item-main {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 0;
		height: auto;
		min-height: 0;
	}
	.viva-newsline-item-main span {
		font-size: .98rem;
		line-height: 1.35;
	}
	.viva-newsline-nav {
		grid-column: 2 / 3;
		grid-row: 2;
		grid-template-columns: repeat(2, 1fr);
		justify-content: stretch;
		align-self: stretch;
		border-left: 1px solid var(--line);
	}
	.viva-newsline-arrow {
		min-height: 84px;
		font-size: 1.2rem;
	}
}
