/* =========================================================
   Premium Offers Hub — dark glassmorphism UI
   Tokens are overridden from the Customizer (inline style).
   ========================================================= */

:root {
	--poh-bg: #070b16;
	--poh-bg-soft: #0c1324;
	--poh-surface: rgba(255, 255, 255, .055);
	--poh-surface-2: rgba(255, 255, 255, .09);
	--poh-border: rgba(255, 255, 255, .12);
	--poh-border-strong: rgba(255, 255, 255, .22);
	--poh-text: #eaf0fb;
	--poh-muted: #9dafcc;
	--poh-accent: #6d5efc;
	--poh-accent-2: #19d3a2;
	--poh-radius: 22px;
	--poh-radius-sm: 14px;
	--poh-blur: 18px;
	--poh-shadow: 0 24px 60px rgba(3, 6, 16, .55);
	--poh-shadow-lift: 0 34px 80px rgba(3, 6, 16, .7);
	--poh-glow: 0 0 0 1px rgba(255, 255, 255, .06), 0 18px 50px -24px var(--poh-accent);
	--poh-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--poh-display: "Sora", var(--poh-font);
	--poh-max: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body.poh {
	margin: 0;
	background: var(--poh-bg);
	color: var(--poh-text);
	font-family: var(--poh-font);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.poh .container { max-width: var(--poh-max); }

h1, h2, h3, h4 {
	font-family: var(--poh-display);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.15;
	color: #fff;
}

a { color: var(--poh-text); text-decoration: none; }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; }

:focus-visible {
	outline: 2px solid var(--poh-accent-2);
	outline-offset: 3px;
	border-radius: 6px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.poh-skip {
	position: absolute;
	left: -9999px;
	top: 12px;
	z-index: 1200;
	padding: 10px 16px;
	background: var(--poh-accent);
	border-radius: 999px;
	color: #fff;
}
.poh-skip:focus { left: 16px; }

/* Ambient background glow ------------------------------------------------ */
.poh-aurora {
	position: fixed;
	inset: -20% -10% auto -10%;
	height: 90vh;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(48% 42% at 18% 12%, color-mix(in srgb, var(--poh-accent) 34%, transparent) 0%, transparent 70%),
		radial-gradient(44% 40% at 84% 4%, color-mix(in srgb, var(--poh-accent-2) 26%, transparent) 0%, transparent 72%);
	filter: blur(30px);
	opacity: .75;
}

.poh-main { position: relative; z-index: 1; }

/* Glass surface ---------------------------------------------------------- */
.poh-glass {
	background: linear-gradient(160deg, var(--poh-surface-2), var(--poh-surface));
	border: 1px solid var(--poh-border);
	border-radius: var(--poh-radius);
	-webkit-backdrop-filter: blur(var(--poh-blur)) saturate(140%);
	backdrop-filter: blur(var(--poh-blur)) saturate(140%);
	box-shadow: var(--poh-shadow);
}

/* Buttons ---------------------------------------------------------------- */
.poh-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0 0;
	align-items: center;
}

.poh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: .97rem;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.poh-btn-primary {
	background: linear-gradient(135deg, var(--poh-accent), color-mix(in srgb, var(--poh-accent-2) 70%, var(--poh-accent)));
	color: #fff;
	box-shadow: 0 14px 34px -14px var(--poh-accent);
}
.poh-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 42px -14px var(--poh-accent); }

.poh-btn-ghost {
	background: rgba(255, 255, 255, .07);
	border-color: var(--poh-border-strong);
	color: var(--poh-text);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.poh-btn-ghost:hover { background: rgba(255, 255, 255, .13); transform: translateY(-2px); color: #fff; }

.poh-btn-sm { padding: 9px 18px; font-size: .88rem; }
.poh-btn-lg { padding: 16px 30px; font-size: 1.03rem; }
.poh-btn-block { width: 100%; }

/* Header ----------------------------------------------------------------- */
.poh-header {
	position: relative;
	z-index: 100;
	padding: 14px 0;
	padding-top: calc(14px + env(safe-area-inset-top, 0px));
}
.poh-header.is-sticky { position: sticky; top: 0; }

.poh-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid var(--poh-border);
	background: rgba(10, 15, 28, .55);
	-webkit-backdrop-filter: blur(var(--poh-blur)) saturate(150%);
	backdrop-filter: blur(var(--poh-blur)) saturate(150%);
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.poh-header.is-stuck .poh-navbar {
	background: rgba(8, 12, 24, .82);
	box-shadow: 0 16px 40px rgba(2, 5, 14, .5);
	border-color: var(--poh-border-strong);
}

.poh-brand { display: flex; align-items: center; min-width: 0; }
.poh-brand img, .custom-logo { max-height: 46px; width: auto; }
.poh-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.poh-brand__name { font-family: var(--poh-display); font-weight: 800; font-size: 1.12rem; color: #fff; }
.poh-brand__tag { font-size: .74rem; color: var(--poh-muted); }

.poh-nav-wrap { align-items: center; gap: 10px; flex: 1; justify-content: flex-end; }
.poh-nav-wrap .poh-btn-row { margin: 0; }

.poh-nav {
	display: flex;
	list-style: none;
	margin: 0 auto 0 24px;
	padding: 0;
	gap: 4px;
	align-items: center;
}
.poh-nav .nav-link {
	position: relative;
	padding: 8px 14px;
	border-radius: 999px;
	color: var(--poh-muted);
	font-weight: 500;
	font-size: .95rem;
	transition: color .2s ease, background .2s ease;
}
.poh-nav .nav-link:hover,
.poh-nav .nav-link.active { color: #fff; background: rgba(255, 255, 255, .08); }

.poh-dropdown {
	background: rgba(12, 18, 34, .95);
	border: 1px solid var(--poh-border);
	border-radius: var(--poh-radius-sm);
	-webkit-backdrop-filter: blur(var(--poh-blur));
	backdrop-filter: blur(var(--poh-blur));
	padding: 8px;
	box-shadow: var(--poh-shadow);
}
.poh-dropdown .dropdown-item {
	color: var(--poh-muted);
	border-radius: 10px;
	padding: 8px 12px;
	font-size: .92rem;
}
.poh-dropdown .dropdown-item:hover { background: rgba(255, 255, 255, .08); color: #fff; }

/* Mobile toggler */
.poh-toggler {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 42px;
	padding: 0 11px;
	border-radius: 14px;
	border: 1px solid var(--poh-border-strong);
	background: rgba(255, 255, 255, .07);
	cursor: pointer;
}
.poh-toggler span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform .2s ease;
}
.poh-toggler span:nth-child(2) { width: 70%; }
@media (min-width: 992px) { .poh-toggler { display: none; } }

.poh-offcanvas {
	background: rgba(8, 12, 24, .96);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	color: var(--poh-text);
	border-left: 1px solid var(--poh-border);
	width: min(360px, 88vw);
	padding-top: env(safe-area-inset-top, 0px);
}
.poh-offcanvas__title { font-family: var(--poh-display); font-weight: 700; font-size: 1.05rem; }
.poh-nav--mobile { flex-direction: column; align-items: stretch; margin: 0 0 18px; gap: 2px; }
.poh-nav--mobile .nav-link { padding: 12px 14px; font-size: 1.02rem; border-radius: var(--poh-radius-sm); }
.poh-nav--mobile .poh-dropdown { position: static !important; transform: none !important; background: transparent; border: none; box-shadow: none; padding-left: 10px; }
.poh-offcanvas__search { margin-bottom: 18px; }

/* Search ----------------------------------------------------------------- */
.poh-search { display: flex; gap: 8px; }
.poh-search__input {
	flex: 1;
	min-width: 0;
	padding: 11px 16px;
	border-radius: 999px;
	border: 1px solid var(--poh-border-strong);
	background: rgba(255, 255, 255, .06);
	color: var(--poh-text);
}
.poh-search__input::placeholder { color: var(--poh-muted); }

/* Hero ------------------------------------------------------------------- */
.poh-hero { padding: 48px 0 26px; position: relative; }

.poh-hero__grid {
	display: grid;
	grid-template-columns: 30% 40% 30%;
	gap: 22px;
	align-items: center;
}

.poh-hero__frame {
	padding: 10px;
	overflow: hidden;
	position: relative;
}
.poh-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 18, .55));
	pointer-events: none;
}
.poh-hero__img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: calc(var(--poh-radius) - 8px);
	display: block;
}
.poh-hero__caption {
	margin: 12px 4px 0;
	font-size: .84rem;
	color: var(--poh-muted);
	text-align: center;
}

.poh-hero__content { text-align: center; padding: 8px 6px; }

.poh-hero__badge {
	display: inline-block;
	margin: 0 0 18px;
	padding: 7px 16px;
	border-radius: 999px;
	border: 1px solid var(--poh-border-strong);
	background: rgba(255, 255, 255, .07);
	font-size: .82rem;
	color: var(--poh-muted);
}

.poh-hero__title {
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	margin: 0 0 18px;
	text-wrap: balance;
}

.poh-hero__sub {
	margin: 0 auto;
	max-width: 46ch;
	color: var(--poh-muted);
	font-size: 1.06rem;
}

.poh-hero__content .poh-btn-row { justify-content: center; margin-top: 26px; }

.poh-hero__trust { margin: 16px 0 0; font-size: .85rem; color: var(--poh-muted); }

.poh-placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 5;
	border-radius: calc(var(--poh-radius) - 8px);
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--poh-accent) 45%, #0b1020), color-mix(in srgb, var(--poh-accent-2) 35%, #0b1020));
	color: rgba(255, 255, 255, .88);
	font-weight: 600;
	text-align: center;
	padding: 18px;
	font-size: .95rem;
}
.poh-card__img.poh-placeholder { aspect-ratio: 16 / 11; }

/* Sections --------------------------------------------------------------- */
.poh-section { padding: 56px 0; position: relative; }
.poh-section__head { max-width: 620px; margin: 0 auto 36px; text-align: center; }
.poh-section__title { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin: 0 0 12px; }
.poh-section__title--sm { font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 26px; }
.poh-section__sub { color: var(--poh-muted); margin: 0; }
.poh-section__more { text-align: center; margin: 38px 0 0; }

/* Offer cards ------------------------------------------------------------ */
.poh-grid { margin-top: 0; }

.poh-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.poh-card:hover {
	transform: translateY(-8px);
	border-color: var(--poh-border-strong);
	box-shadow: var(--poh-shadow-lift), var(--poh-glow);
}

.poh-card__media { position: relative; display: block; overflow: hidden; }
.poh-card__img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.poh-card:hover .poh-card__img { transform: scale(1.04); }

.poh-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: .74rem;
	font-weight: 600;
	color: #fff;
	background: rgba(8, 12, 24, .72);
	border: 1px solid var(--poh-border-strong);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.poh-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.poh-card__title { font-size: 1.16rem; margin: 0 0 8px; }
.poh-card__title a { color: #fff; }
.poh-card__desc { color: var(--poh-muted); font-size: .94rem; margin: 0; }
.poh-card__body .poh-btn-row { margin-top: auto; padding-top: 18px; }

/* Filters / chips -------------------------------------------------------- */
.poh-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	justify-content: center;
}
.poh-filter--sm { justify-content: flex-start; margin: 0 0 14px; }
.poh-chip {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 999px;
	font-size: .84rem;
	color: var(--poh-muted);
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .05);
}
.poh-chip:hover, .poh-chip.is-active { color: #fff; border-color: var(--poh-border-strong); background: rgba(255, 255, 255, .11); }

/* Single ----------------------------------------------------------------- */
.poh-single { padding: 34px 0 20px; }

.poh-breadcrumb { font-size: .84rem; color: var(--poh-muted); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.poh-breadcrumb a { color: var(--poh-muted); }
.poh-breadcrumb a:hover { color: #fff; }

.poh-single__head { max-width: 760px; margin-bottom: 26px; }
.poh-single__title { font-size: clamp(1.9rem, 3.4vw, 3rem); margin: 0 0 14px; text-wrap: balance; }
.poh-single__lead { color: var(--poh-muted); font-size: 1.08rem; margin: 0 0 10px; }
.poh-single__meta { color: var(--poh-muted); font-size: .85rem; display: flex; gap: 8px; flex-wrap: wrap; margin: 0; }

.poh-single__media { padding: 10px; margin-bottom: 30px; overflow: hidden; }
.poh-single__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: calc(var(--poh-radius) - 8px); display: block; }

.poh-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 26px;
	align-items: start;
}

.poh-prose { padding: 30px 32px; }
.poh-prose > *:first-child { margin-top: 0; }
.poh-prose p, .poh-prose li { color: #d7e1f3; max-width: 72ch; }
.poh-prose h2 { font-size: 1.6rem; margin: 34px 0 12px; }
.poh-prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.poh-prose a { color: var(--poh-accent-2); text-decoration: underline; text-underline-offset: 3px; }
.poh-prose img { border-radius: var(--poh-radius-sm); }
.poh-prose blockquote {
	margin: 24px 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--poh-accent);
	color: var(--poh-muted);
}
.poh-prose table { width: 100%; border-collapse: collapse; }
.poh-prose th, .poh-prose td { border: 1px solid var(--poh-border); padding: 10px 12px; }
.poh-prose--wide p, .poh-prose--wide li { max-width: 78ch; }

.poh-single__cta { padding: 24px; position: sticky; top: 104px; }
.poh-single__cta-title { font-size: 1.1rem; margin: 0 0 6px; }
.poh-single__cta .poh-btn-row { flex-direction: column; align-items: stretch; margin-top: 16px; }
.poh-single__disclosure { font-size: .78rem; color: var(--poh-muted); margin: 16px 0 0; }
.poh-single__widgets { margin-top: 22px; border-top: 1px solid var(--poh-border); padding-top: 18px; }

/* Share ------------------------------------------------------------------ */
.poh-share { margin-top: 22px; border-top: 1px solid var(--poh-border); padding-top: 18px; }
.poh-share__label { font-size: .78rem; color: var(--poh-muted); display: block; margin-bottom: 10px; }
.poh-share__list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.poh-share__btn {
	display: inline-block;
	padding: 7px 13px;
	border-radius: 999px;
	font-size: .8rem;
	color: var(--poh-muted);
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .05);
	cursor: pointer;
}
.poh-share__btn:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.poh-share__btn.is-copied { color: #fff; border-color: var(--poh-accent-2); }

/* Post navigation, pagination, empty ------------------------------------- */
.poh-postnav { margin: 40px 0 0; display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.poh-postnav a {
	display: block;
	padding: 18px 20px;
	border-radius: var(--poh-radius-sm);
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .05);
	font-weight: 600;
}
.poh-postnav__label { display: block; font-size: .76rem; color: var(--poh-muted); font-weight: 500; }

.poh-pagination { margin-top: 40px; }
.poh-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	margin: 0 4px;
	border-radius: 999px;
	border: 1px solid var(--poh-border);
	color: var(--poh-muted);
}
.poh-pagination .page-numbers.current,
.poh-pagination .page-numbers:hover { background: rgba(255, 255, 255, .11); color: #fff; }
.poh-pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; }
.poh-pagination .screen-reader-text { display: none; }

.poh-empty { padding: 40px 32px; text-align: center; }
.poh-empty .poh-btn-row { justify-content: center; }
.poh-empty .poh-search { max-width: 420px; margin: 18px auto 0; }

/* Footer ----------------------------------------------------------------- */
.poh-footer {
	position: relative;
	z-index: 1;
	margin-top: 60px;
	padding: 54px 0 24px;
	padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(180deg, transparent, var(--poh-bg-soft));
	border-top: 1px solid var(--poh-border);
}

.poh-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 34px;
}
.poh-footer__name { font-family: var(--poh-display); font-weight: 800; font-size: 1.2rem; color: #fff; }
.poh-footer__about { color: var(--poh-muted); margin: 12px 0 18px; max-width: 46ch; font-size: .95rem; }
.poh-footer__heading { font-size: 1rem; margin: 0 0 14px; }

.poh-footer__menu, .poh-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.poh-footer__menu a, .poh-contact-list a, .poh-contact-list li { color: var(--poh-muted); font-size: .94rem; }
.poh-footer__menu a:hover, .poh-contact-list a:hover { color: #fff; }

.poh-social { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.poh-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .06);
	font-size: .76rem;
	font-weight: 600;
	color: var(--poh-muted);
}
.poh-social__link:hover { color: #fff; background: rgba(255, 255, 255, .14); transform: translateY(-2px); }

.poh-footer__widgets { margin-top: 34px; }
.poh-footer__disclaimer {
	margin: 34px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--poh-border);
	color: var(--poh-muted);
	font-size: .8rem;
	max-width: 90ch;
}
.poh-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--poh-border);
}
.poh-footer__copy { margin: 0; color: var(--poh-muted); font-size: .85rem; }
.poh-to-top {
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .06);
	color: var(--poh-muted);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: .82rem;
	cursor: pointer;
}
.poh-to-top:hover { color: #fff; background: rgba(255, 255, 255, .12); }

/* Widgets & comments ----------------------------------------------------- */
.widget { padding: 20px 22px; margin-bottom: 18px; }
.widget-title { font-size: 1.02rem; margin: 0 0 12px; }
.widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.widget a { color: var(--poh-muted); }
.widget a:hover { color: #fff; }

.poh-comments { padding: 20px 0 50px; }
.poh-comments input, .poh-comments textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: var(--poh-radius-sm);
	border: 1px solid var(--poh-border);
	background: rgba(255, 255, 255, .05);
	color: var(--poh-text);
	margin-bottom: 12px;
}
.poh-comments .submit {
	width: auto;
	padding: 12px 26px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, var(--poh-accent), var(--poh-accent-2));
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1199.98px) {
	.poh-hero__grid { grid-template-columns: 28% 44% 28%; gap: 16px; }
	.poh-nav .nav-link { padding: 8px 10px; font-size: .9rem; }
}

@media (max-width: 991.98px) {
	.poh-hero { padding-top: 30px; }
	.poh-hero__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"content content"
			"left right";
		gap: 18px;
	}
	.poh-hero__content { grid-area: content; }
	.poh-hero__media--left { grid-area: left; }
	.poh-hero__media--right { grid-area: right; }
	.poh-hero__img, .poh-placeholder { aspect-ratio: 1 / 1; }
	.poh-single__layout { grid-template-columns: minmax(0, 1fr); }
	.poh-single__cta { position: static; }
	.poh-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
	.poh-section { padding: 40px 0; }
	.poh-navbar { padding: 8px 12px; border-radius: 20px; }
	.poh-hero__grid { grid-template-columns: 1fr; grid-template-areas: "content" "left" "right"; }
	.poh-hero__content .poh-btn-row { flex-direction: column; align-items: stretch; }
	.poh-hero__content .poh-btn { width: 100%; }
	.poh-prose { padding: 24px 20px; }
	.poh-postnav { grid-template-columns: 1fr; }
	.poh-footer__top { grid-template-columns: 1fr; }
	.poh-footer__bottom { justify-content: center; text-align: center; }
}

/* Motion & contrast preferences ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
	.poh-card:hover { transform: none; }
}

@supports not (backdrop-filter: blur(4px)) {
	.poh-glass, .poh-navbar, .poh-offcanvas { background: rgba(13, 19, 36, .92); }
}

/* Editor / admin bar spacing */
.admin-bar .poh-header.is-sticky { top: 32px; }
@media (max-width: 782px) { .admin-bar .poh-header.is-sticky { top: 46px; } }
