/* ==========================================================================
   Srasta — main stylesheet
   Palette: forest ink #17302B · terracotta #D0643B · sand #F5EFE6 · brass #C9A15A
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--bg: #FBF8F3;
	--surface: #FFFFFF;
	--surface-2: #F4EEE5;
	--surface-3: #EDE4D7;
	--ink: #17302B;
	--text: #2A3531;
	--muted: #5E6F6A;
	--line: #E7DED2;
	--accent: #C85A31;
	--accent-strong: #A9471F;
	--accent-soft: #F8E6DC;
	--brass: #C9A15A;
	--wa: #25D366;
	--wa-ink: #0B3B20;
	--wa-strong: #128C4A;
	--footer-bg: #10211D;

	--font-serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--radius: 20px;
	--radius-sm: 12px;
	--radius-lg: 28px;
	--shadow-sm: 0 1px 2px rgba(23, 48, 43, .06);
	--shadow: 0 1px 2px rgba(23, 48, 43, .05), 0 12px 32px -16px rgba(23, 48, 43, .22);
	--shadow-lg: 0 2px 4px rgba(23, 48, 43, .05), 0 24px 60px -24px rgba(23, 48, 43, .35);
	--header-h: 76px;
	--gutter: 24px;
	--container: 1240px;

	--logo-mark: #17302B;
	--logo-roof: #D0643B;
	--logo-planks: #F5EFE6;
	--logo-word: #17302B;
	--logo-tag: #5E6F6A;

	color-scheme: light;
}

:root[data-theme="dark"] {
	--bg: #0E1816;
	--surface: #15211E;
	--surface-2: #1A2925;
	--surface-3: #22342F;
	--ink: #F3EDE4;
	--text: #D8D2C8;
	--muted: #9DABA5;
	--line: #263832;
	--accent: #E27A52;
	--accent-strong: #F08F68;
	--accent-soft: #3A2419;
	--wa-strong: #3DDC7E;
	--footer-bg: #0A1311;
	--shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -16px rgba(0, 0, 0, .6);
	--shadow-lg: 0 2px 4px rgba(0, 0, 0, .3), 0 24px 60px -24px rgba(0, 0, 0, .7);
	--logo-mark: #D0643B;
	--logo-roof: #F5EFE6;
	--logo-planks: #17302B;
	--logo-word: #F3EDE4;
	--logo-tag: #9DABA5;
	color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg: #0E1816;
		--surface: #15211E;
		--surface-2: #1A2925;
		--surface-3: #22342F;
		--ink: #F3EDE4;
		--text: #D8D2C8;
		--muted: #9DABA5;
		--line: #263832;
		--accent: #E27A52;
		--accent-strong: #F08F68;
		--accent-soft: #3A2419;
		--wa-strong: #3DDC7E;
		--footer-bg: #0A1311;
		--shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -16px rgba(0, 0, 0, .6);
		--shadow-lg: 0 2px 4px rgba(0, 0, 0, .3), 0 24px 60px -24px rgba(0, 0, 0, .7);
		--logo-mark: #D0643B;
		--logo-roof: #F5EFE6;
		--logo-planks: #17302B;
		--logo-word: #F3EDE4;
		--logo-tag: #9DABA5;
		color-scheme: dark;
	}
}

/* Smooth cross-page transitions in supporting browsers. */
@media (prefers-reduced-motion: no-preference) {
	@view-transition { navigation: auto; }
	html { scroll-behavior: smooth; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html.is-locked { overflow: hidden; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
svg.icon { flex: none; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute !important; word-wrap: normal !important;
}
.skip-link:focus {
	clip: auto; clip-path: none; height: auto; width: auto; margin: 0;
	left: 12px; top: 12px; z-index: 1000; padding: 12px 18px;
	background: var(--ink); color: var(--bg); border-radius: 10px;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(800px + var(--gutter) * 2); }
.container--mid { max-width: calc(980px + var(--gutter) * 2); }
.flip { transform: scaleX(-1); }

.only-dark { display: none; }
:root[data-theme="dark"] .only-dark { display: block; }
:root[data-theme="dark"] .only-light { display: none; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .only-dark { display: block; }
	:root:not([data-theme="light"]) .only-light { display: none; }
}

/* ---------- Type helpers ---------- */
.kicker {
	display: inline-flex; align-items: center; gap: 8px;
	margin: 0 0 12px;
	font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	color: var(--c, var(--accent));
}
.kicker--pill {
	padding: 7px 14px 7px 12px; border-radius: 999px;
	background: var(--surface); border: 1px solid var(--line); color: var(--ink);
	letter-spacing: .1em;
}
.kicker--pill .icon { color: var(--accent); }
.section-title {
	font-family: var(--font-serif); font-weight: 400;
	font-size: clamp(30px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -.01em; margin: 0;
}
.section-title--sm { font-size: 30px; margin-bottom: 18px; }

/* ---------- Buttons ---------- */
.btn {
	--btn-h: 48px;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: var(--btn-h); padding: 0 22px;
	border-radius: 999px; border: 1.5px solid transparent;
	font-weight: 700; font-size: 15px; line-height: 1.1; white-space: nowrap;
	transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
	text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { --btn-h: 40px; padding: 0 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -10px var(--accent); }
.btn--primary:hover { background: var(--accent-strong); color: #fff; }
.btn--light { background: #F5EFE6; color: #17302B; }
.btn--light:hover { background: #fff; color: #17302B; }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--wa { background: var(--wa); color: var(--wa-ink); }
.btn--wa:hover { background: #3AE07A; color: var(--wa-ink); }
.btn--wa-ghost { background: transparent; border-color: color-mix(in srgb, var(--wa) 70%, transparent); color: var(--wa-strong); }
.btn--wa-ghost:hover { background: color-mix(in srgb, var(--wa) 12%, transparent); color: var(--wa-strong); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.icon-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	height: 42px; min-width: 42px; padding: 0 10px;
	border: 1px solid var(--line); border-radius: 999px;
	background: var(--surface); color: var(--ink);
	transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--ink); color: var(--ink); }
kbd {
	font-family: var(--font-sans); font-size: 11px; font-weight: 700;
	padding: 2px 6px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); background: var(--surface-2);
}

/* ---------- Chips & tags ---------- */
.chip {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 5px 11px; border-radius: 999px;
	font-size: 12px; font-weight: 700; letter-spacing: .02em; line-height: 1.3;
	background: color-mix(in srgb, var(--c, var(--accent)) 12%, transparent);
	color: color-mix(in srgb, var(--c, var(--accent)) 78%, var(--ink));
	transition: background .2s;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--accent)); }
a.chip:hover { background: color-mix(in srgb, var(--c, var(--accent)) 22%, transparent); color: color-mix(in srgb, var(--c, var(--accent)) 78%, var(--ink)); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chips--center { justify-content: center; }
.badge-sponsored {
	display: inline-flex; padding: 4px 10px; border-radius: 999px;
	font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
	background: var(--surface-2); color: var(--muted); border: 1px dashed var(--line);
}
.tags { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tags li, .tags a { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--surface-2); color: var(--muted); }
.tags a:hover { color: var(--accent); }
.tags--article { margin: 32px 0 0; }
.tags--article li { padding: 0; background: none; }

/* ---------- Progress ---------- */
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 120; pointer-events: none; }
.progress__bar { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--brass)); transform: scaleX(0); transform-origin: 0 50%; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 80;
	background: color-mix(in srgb, var(--bg) 88%, transparent);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0, 0, 0, .35); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.site-logo { display: inline-flex; align-items: center; flex: none; }
.site-logo .srasta-logo-svg { height: 44px; width: auto; }
.site-logo .custom-logo { max-height: 48px; width: auto; }
.site-logo--drawer .srasta-logo-svg { height: 38px; }

.primary-nav { margin-left: auto; }
.primary-nav .menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav .menu > li { position: relative; }
.primary-nav .menu > li > a {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 9px 11px; border-radius: 999px;
	font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
	transition: background .2s, color .2s;
}
.primary-nav .menu > li > a:hover,
.primary-nav .menu > li:focus-within > a { background: var(--surface-2); color: var(--ink); }
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current-category-ancestor > a { color: var(--accent) !important; }
.primary-nav .menu-chevron { transition: transform .2s; }
.primary-nav li:hover > a .menu-chevron,
.primary-nav li:focus-within > a .menu-chevron { transform: rotate(180deg); }
.primary-nav .sub-menu {
	position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
	list-style: none; margin: 0; padding: 8px;
	background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .18s, transform .18s, visibility .18s;
}
.primary-nav .sub-menu::before { content: ""; position: absolute; inset: -10px 0 auto; height: 10px; }
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav .sub-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.primary-nav .sub-menu a:hover { background: var(--surface-2); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.search-trigger { padding: 0 12px; }
.search-trigger__kbd { font-size: 10.5px; }
.menu-toggle { display: none; }
@media (max-width: 1400px) { .search-trigger__kbd { display: none; } .site-header__inner { gap: 18px; } }

@media (max-width: 1240px) {
	.primary-nav { display: none; }
	.header-actions { margin-left: auto; }
	.menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
	:root { --header-h: 64px; --gutter: 16px; }
	.site-logo .srasta-logo-svg { height: 36px; }
	.header-cta, .search-trigger__kbd { display: none; }
	.header-actions { gap: 6px; }
	.icon-btn { height: 40px; min-width: 40px; padding: 0 9px; }
}

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 200; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(8, 16, 14, .5); opacity: 0; transition: opacity .22s; }
.drawer__panel {
	position: absolute; top: 0; right: 0; bottom: 0; width: min(390px, 90vw);
	display: flex; flex-direction: column;
	background: var(--surface); box-shadow: var(--shadow-lg);
	transform: translateX(100%); transition: transform .26s cubic-bezier(.2, .8, .2, 1);
}
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.drawer__nav { flex: 1; overflow-y: auto; padding: 10px 12px; }
.drawer__nav .menu, .drawer__nav .sub-menu { list-style: none; margin: 0; padding: 0; }
.drawer__nav li { position: relative; }
.drawer__nav a { display: flex; align-items: center; padding: 13px 12px; border-radius: 12px; font-size: 17px; font-weight: 700; color: var(--ink); }
.drawer__nav a .menu-chevron { display: none; }
.drawer__nav a:hover { background: var(--surface-2); }
.drawer__nav .sub-menu { display: none; padding: 0 0 6px 12px; }
.drawer__nav .sub-menu a { font-size: 15.5px; font-weight: 600; padding: 10px 12px; color: var(--muted); }
.drawer__nav .is-open > .sub-menu { display: block; }
.submenu-toggle {
	position: absolute; right: 4px; top: 6px; width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 0; border-radius: 10px; background: var(--surface-2); color: var(--ink);
}
.submenu-toggle svg { transition: transform .2s; }
.is-open > .submenu-toggle svg { transform: rotate(180deg); }
.drawer__foot { display: grid; gap: 10px; padding: 16px 18px 22px; border-top: 1px solid var(--line); }

/* ---------- Search modal ---------- */
.search-modal { position: fixed; inset: 0; z-index: 210; display: flex; justify-content: center; align-items: flex-start; padding: 12vh 16px 16px; }
.search-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 16, 14, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s; }
.search-modal__box {
	position: relative; width: 100%; max-width: 660px; max-height: 76vh; overflow: auto;
	background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg);
	opacity: 0; transform: translateY(-10px) scale(.98); transition: opacity .2s, transform .2s;
}
.search-modal.is-open .search-modal__backdrop { opacity: 1; }
.search-modal.is-open .search-modal__box { opacity: 1; transform: none; }
.search-modal__form { display: flex; align-items: center; gap: 12px; padding: 14px 16px 14px 20px; border-bottom: 1px solid var(--line); color: var(--muted); }
.search-modal__form input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 19px; font-weight: 600; color: var(--ink); padding: 8px 0; }
.search-modal__form input::-webkit-search-cancel-button { display: none; }
.search-modal__suggest { padding: 18px 20px 22px; }
.search-modal__suggest .chips { margin-top: 0; }
.search-modal.has-results .search-modal__suggest { display: none; }
.search-status { padding: 18px 20px; margin: 0; color: var(--muted); }
.search-list { list-style: none; margin: 0; padding: 8px; }
.search-list a { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 14px; }
.search-list a:hover, .search-list a:focus { background: var(--surface-2); color: var(--ink); }
.search-list img, .search-list__ph { width: 64px; height: 48px; border-radius: 10px; object-fit: cover; flex: none; }
.search-list__ph { background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, #000)); }
.search-list strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.35; }
.search-list small { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.search-list small i { width: 7px; height: 7px; border-radius: 50%; background: var(--c); }
.search-all { display: block; padding: 14px 20px; border-top: 1px solid var(--line); font-weight: 700; color: var(--accent); }

/* ---------- Thumbs ---------- */
.thumb { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--surface-2); }
.thumb__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.thumb--fallback {
	display: grid; place-items: center;
	background:
		radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--c) 60%, #fff 0%) 0%, transparent 60%),
		linear-gradient(145deg, color-mix(in srgb, var(--c) 92%, #fff), color-mix(in srgb, var(--c) 70%, #000));
	color: rgba(255, 255, 255, .92);
}
.thumb__pattern {
	position: absolute; inset: 0; opacity: .18;
	background-image:
		repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, .7) 38px 39.5px),
		repeating-linear-gradient(90deg, transparent 0 118px, rgba(255, 255, 255, .5) 118px 119.5px);
	transition: transform .6s;
}
.thumb__icon { position: relative; width: 48px; height: 48px; padding: 12px; box-sizing: content-box; border-radius: 20px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); }

/* ---------- Cards ---------- */
.card {
	position: relative; display: flex; flex-direction: column;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
	container-type: inline-size;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--c, var(--accent)) 35%, var(--line)); }
.card:hover .thumb__img, .card:hover .thumb__pattern { transform: scale(1.05); }
.card__media { display: block; }
.card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px 20px; flex: 1; }
.card__top { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.card__title { margin: 0; font-size: 18.5px; line-height: 1.32; font-weight: 750; letter-spacing: -.01em; }
.card__title a { color: var(--ink); background-image: linear-gradient(currentColor, currentColor); background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s; }
.card:hover .card__title a { background-size: 100% 1.5px; }
.card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card .chip, .card .badge-sponsored { position: relative; z-index: 2; }
.card__excerpt { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin-top: auto; font-size: 13px; color: var(--muted); font-weight: 500; }
.meta > * + *::before { content: "·"; margin-right: 12px; opacity: .7; }
.meta__author { color: var(--ink); font-weight: 700; }

/* feature card = large overlay */
.card--feature { border: 0; color: #fff; min-height: 460px; justify-content: flex-end; background: #17302B; }
.card--feature .card__media { position: absolute; inset: 0; }
.card--feature .thumb { height: 100%; aspect-ratio: auto; }
.card--feature .card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 18, 16, 0) 25%, rgba(8, 18, 16, .55) 55%, rgba(8, 18, 16, .92) 100%); }
.card--feature .card__body { position: relative; z-index: 1; padding: 30px; gap: 14px; flex: none; }
.card--feature .card__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.06; letter-spacing: -.01em; }
.card--feature .card__title a { color: #fff; }
.card--feature .card__excerpt { color: rgba(255, 255, 255, .82); font-size: 16px; max-width: 60ch; }
.card--feature .meta, .card--feature .meta__author { color: rgba(255, 255, 255, .85); }
.card--feature .chip { background: rgba(255, 255, 255, .16); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.card--feature .chip::before { background: var(--c); box-shadow: 0 0 0 2px rgba(255, 255, 255, .6); }
.card--feature:hover { transform: none; }
.card--feature .thumb--fallback { place-items: start end; padding: 26px; }
.card--feature .card__excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* row card = horizontal */
.card--row { flex-direction: row; align-items: stretch; background: transparent; border: 0; border-radius: 0; overflow: visible; gap: 18px; padding: 0 0 20px; border-bottom: 1px solid var(--line); }
.card--row:last-child { border-bottom: 0; padding-bottom: 0; }
.card--row:hover { transform: none; box-shadow: none; }
.card--row .card__media { width: 38%; max-width: 220px; flex: none; }
.card--row .thumb { border-radius: 16px; aspect-ratio: 4 / 3; }
.card--row .card__body { padding: 2px 0 0; gap: 8px; }
.card--row .card__title { font-size: 17px; }
.card--row .card__excerpt { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card--row .thumb__icon { width: 30px; height: 30px; padding: 9px; border-radius: 14px; }

/* mini */
.card--mini { flex-direction: row; gap: 12px; border: 0; background: none; }
.card--mini .card__media { width: 88px; flex: none; }
.card--mini .thumb { border-radius: 12px; aspect-ratio: 1; }
.card--mini .card__body { padding: 0; gap: 6px; }
.card--mini .card__title { font-size: 15px; }

@container (max-width: 300px) {
	.card__body { padding: 16px; }
	.card__title { font-size: 17px; }
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section--flush { padding-top: 12px; }
.section--tint { background: var(--surface-2); }
.section--topics { padding-top: 24px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.section-head .kicker { margin-bottom: 8px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14.5px; color: var(--ink); white-space: nowrap; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.link-arrow:hover { border-color: var(--c, var(--accent)); color: var(--c, var(--accent)); }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(3px); }
@media (max-width: 640px) { .section { padding: 40px 0; } }

/* ---------- Hero ---------- */
.hero { padding: 44px 0 24px; position: relative; }
.hero::before {
	content: ""; position: absolute; inset: -80px 0 auto; height: 520px; z-index: -1; pointer-events: none;
	background:
		radial-gradient(40% 60% at 85% 20%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
		radial-gradient(35% 55% at 10% 10%, color-mix(in srgb, var(--brass) 18%, transparent), transparent 70%);
}
.hero__intro { max-width: 880px; margin-bottom: 36px; }
.hero__title {
	font-family: var(--font-serif); font-weight: 400;
	font-size: clamp(44px, 6.6vw, 88px); line-height: .98; letter-spacing: -.025em;
	margin: 6px 0 18px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__text { font-size: clamp(17px, 1.6vw, 19.5px); color: var(--muted); max-width: 640px; margin-bottom: 24px; }
.hero__search {
	display: flex; align-items: center; gap: 10px; max-width: 560px;
	padding: 6px 6px 6px 18px; border-radius: 999px;
	background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
	color: var(--muted);
}
.hero__search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 16px; padding: 10px 0; color: var(--ink); }
.hero__search:focus-within { border-color: var(--accent); }

.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.bento > .card--feature { grid-column: span 2; grid-row: span 2; min-height: 520px; }
.bento > .card--default .card__excerpt { display: none; }
.bento > .card--default .card__title { font-size: 17px; }
@media (max-width: 1100px) {
	.bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bento > .card--feature { grid-column: 1 / -1; grid-row: auto; min-height: 460px; }
}
@media (max-width: 640px) {
	.hero { padding-top: 28px; }
	.bento { grid-template-columns: 1fr; gap: 14px; }
	.bento > .card--feature { min-height: 420px; }
	.bento > .card--feature .card__body { padding: 22px; }
	.bento > .card--default { flex-direction: row; align-items: stretch; }
	.bento > .card--default .card__media { width: 118px; flex: none; }
	.bento > .card--default .thumb { height: 100%; aspect-ratio: auto; min-height: 112px; }
	.bento > .card--default .thumb__icon { width: 26px; height: 26px; padding: 8px; border-radius: 12px; }
	.bento > .card--default .card__body { padding: 14px 16px; gap: 8px; }
	.bento > .card--default .card__title { font-size: 15.5px; }
	.bento > .card--default .meta__read { display: none; }
}

/* ---------- Topics ---------- */
.topics { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1100px) { .topics { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.topic {
	position: relative; display: flex; flex-direction: column; gap: 4px;
	padding: 18px 18px 18px; border-radius: 18px;
	background: var(--surface); border: 1px solid var(--line);
	transition: border-color .2s, transform .2s, box-shadow .2s;
}
a.topic:hover { border-color: var(--c); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.topic__icon {
	display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 10px;
	border-radius: 15px; color: var(--c);
	background: color-mix(in srgb, var(--c) 13%, transparent);
}
.topic__name { font-weight: 800; color: var(--ink); font-size: 16px; line-height: 1.3; }
.topic__count { font-size: 13px; color: var(--muted); }
.topic__arrow { position: absolute; top: 18px; right: 16px; color: var(--muted); transition: transform .2s, color .2s; }
a.topic:hover .topic__arrow { transform: translateX(3px); color: var(--c); }
.topic--desc .topic__count { font-size: 14px; line-height: 1.5; margin-top: 4px; }
.topics--compact { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.topics--compact .topic { flex-direction: row; align-items: center; gap: 12px; padding: 14px; }
.topics--compact .topic__icon { width: 44px; height: 44px; margin: 0; flex: none; }
@media (max-width: 640px) {
	.topics { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.topic { padding: 14px; }
	.topic__icon { width: 42px; height: 42px; border-radius: 13px; }
	.topic__arrow { display: none; }
	.topics--compact .topic { flex-direction: column; align-items: flex-start; }
}

/* ---------- Split layout + panels ---------- */
.layout-split { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.side-stack { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 1024px) {
	.layout-split { grid-template-columns: 1fr; }
	.side-stack { position: static; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel__title { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.panel__title .icon { color: var(--accent); }
.ranked { list-style: none; counter-reset: rank; margin: 0; padding: 0; }
.ranked li { counter-increment: rank; position: relative; padding: 14px 0 14px 50px; border-top: 1px solid var(--line); }
.ranked li:first-child { border-top: 0; padding-top: 4px; }
.ranked li::before { content: counter(rank, decimal-leading-zero); position: absolute; left: 0; top: 8px; font-family: var(--font-serif); font-size: 34px; line-height: 1; color: color-mix(in srgb, var(--accent) 55%, var(--line)); }
.ranked li:first-child::before { top: -2px; }
.ranked a { display: block; font-weight: 700; color: var(--ink); line-height: 1.38; margin-bottom: 6px; font-size: 15px; }
.ranked a:hover { color: var(--accent); }
.ranked .meta { margin: 0; font-size: 12.5px; }

.tool-link { display: flex; align-items: center; gap: 12px; padding: 12px; margin: 0 -8px; border-radius: 14px; transition: background .2s; }
.tool-link:hover { background: var(--surface-2); color: inherit; }
.tool-link__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--c); background: color-mix(in srgb, var(--c) 13%, transparent); flex: none; }
.tool-link strong { display: block; color: var(--ink); font-size: 14.5px; }
.tool-link small { color: var(--muted); font-size: 12.5px; }

.panel--gp { background: var(--footer-bg); border-color: transparent; color: #D5DDD8; position: relative; overflow: hidden; }
.panel--gp::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(208, 100, 59, .55), transparent 70%); }
.panel--gp .kicker { color: #F0A27F; }
.panel__headline { font-family: var(--font-serif); font-size: 30px; line-height: 1.05; color: #F5EFE6; margin: 0 0 10px; }
.panel__text { font-size: 14.5px; color: #B7C3BD; }
.panel--gp .btn + .btn { margin-top: 10px; }
.panel--gp .btn--wa-ghost { color: #7FEBA8; border-color: rgba(37, 211, 102, .55); }

/* ---------- Category rows ---------- */
.cat-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 32px; align-items: start; }
.cat-row__lead .card__title { font-family: var(--font-serif); font-weight: 400; font-size: 30px; line-height: 1.1; }
.cat-row__list { display: grid; gap: 20px; }
.section--cat .section-title { position: relative; padding-left: 20px; }
.section--cat .section-title::before { content: ""; position: absolute; left: 0; top: .18em; bottom: .12em; width: 6px; border-radius: 3px; background: var(--c); }
@media (max-width: 900px) { .cat-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
	.card--row { gap: 14px; }
	.card--row .card__media { width: 112px; }
	.card--row .card__excerpt { display: none; }
	.card--row .card__title { font-size: 15.5px; }
}

/* ---------- Guest post CTA band ---------- */
.gp-cta {
	position: relative; overflow: hidden; isolation: isolate;
	display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 28px; align-items: center;
	padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-lg);
	background: var(--footer-bg); color: #C9D3CE;
}
.gp-cta::before { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; right: -120px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(208, 100, 59, .5), transparent 65%); }
.gp-cta::after { content: ""; position: absolute; z-index: -1; inset: auto auto -140px -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 161, 90, .25), transparent 65%); }
.gp-cta .kicker { color: #F0A27F; }
.gp-cta h2 { font-family: var(--font-serif); font-weight: 400; color: #F5EFE6; font-size: clamp(34px, 4.2vw, 56px); line-height: 1; margin-bottom: 14px; }
.gp-cta p { max-width: 60ch; margin: 0; }
.gp-cta__actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
@media (max-width: 860px) {
	.gp-cta { grid-template-columns: 1fr; }
	.gp-cta__actions { flex-direction: row; flex-wrap: wrap; min-width: 0; }
}

/* ---------- Page hero ---------- */
.page-hero { padding: 36px 0 36px; position: relative; }
.page-hero__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 72px); line-height: 1; letter-spacing: -.02em; margin: 0 0 14px; }
.page-hero__desc { font-size: 18px; color: var(--muted); max-width: 720px; }
.page-hero__desc p:last-child { margin: 0; }
.page-hero__row { display: flex; gap: 22px; align-items: flex-start; }
.page-hero__icon { display: grid; place-items: center; width: 76px; height: 76px; flex: none; border-radius: 22px; color: #fff; background: var(--c); box-shadow: 0 14px 30px -14px var(--c); margin-top: 6px; }
.page-hero--cat::before { content: ""; position: absolute; inset: -80px 0 0; z-index: -1; background: radial-gradient(50% 80% at 90% 0%, color-mix(in srgb, var(--c) 20%, transparent), transparent 70%); }
.page-hero--cat .kicker { color: var(--c); }
.page-hero__search { margin-top: 20px; max-width: 560px; }
.page-hero--about .hero__title { max-width: 16ch; }
@media (max-width: 640px) {
	.page-hero__row { flex-direction: column; gap: 14px; }
	.page-hero__icon { width: 60px; height: 60px; border-radius: 18px; }
}

.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0 0 18px; padding: 0; font-size: 13.5px; color: var(--muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; opacity: .5; }
.breadcrumbs a { color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] span { color: var(--ink); font-weight: 600; }

/* ---------- Search form ---------- */
.search-form { display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.search-form:focus-within { border-color: var(--accent); }
.search-form__input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 10px 0; font-size: 16px; color: var(--ink); }

/* ---------- Pagination ---------- */
.pagination { margin-top: 44px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-weight: 700; color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pagination a.page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.pagination .dots { border: 0; background: none; }

/* ---------- Empty / 404 ---------- */
.empty { text-align: center; padding: 60px 0; color: var(--muted); }
.empty__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 22px; background: var(--surface-2); color: var(--accent); margin-bottom: 12px; }
.empty h2 { font-family: var(--font-serif); font-weight: 400; font-size: 36px; }
.notfound { text-align: center; padding: 70px 0 90px; }
.notfound__code { font-family: var(--font-serif); font-size: clamp(110px, 20vw, 200px); line-height: .9; margin: 0; background: linear-gradient(135deg, var(--accent), var(--brass)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.notfound__text { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 24px; }
.notfound__search { max-width: 520px; margin: 0 auto 20px; }
.notfound .btn { margin-top: 28px; }

/* ---------- Article ---------- */
.article__header { padding-top: 28px; padding-bottom: 28px; text-align: left; }
.article__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.article__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(38px, 5.2vw, 64px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 18px; }
.article__dek { font-size: clamp(18px, 1.8vw, 21px); line-height: 1.55; color: var(--muted); margin-bottom: 24px; }
.byline { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.byline__avatar img, .avatar-img { border-radius: 50%; }
.byline__name { display: block; font-weight: 800; color: var(--ink); }
.byline__meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--muted); }
.article__hero { margin: 8px auto 44px; max-width: 1180px; }
.article__hero img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 16 / 9; object-fit: cover; }
.article__hero figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; text-align: center; }

.article__layout { display: grid; grid-template-columns: 230px minmax(0, 720px) 300px; gap: 48px; justify-content: center; align-items: start; }
.article__aside .aside-sticky, .article__side { position: sticky; top: calc(var(--header-h) + 24px); }
.article__side { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; min-width: 0; }
.article__side > *, .article__main { min-width: 0; }
.widget .wp-block-search__inside-wrapper { min-width: 0; }
.widget .wp-block-search__input { min-width: 0; width: 100%; }
.toc--inline { display: none; }
@media (max-width: 1240px) {
	.article__layout { grid-template-columns: minmax(0, 720px) 300px; gap: 40px; }
	.article__aside { display: none; }
	.toc--inline { display: block; }
}
@media (max-width: 980px) {
	.article__layout { grid-template-columns: minmax(0, 1fr); }
	.article__side { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

.toc__title { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.toc__list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc__item a { display: block; padding: 7px 0 7px 16px; margin-left: -2px; border-left: 2px solid transparent; font-size: 14px; line-height: 1.4; color: var(--muted); font-weight: 600; transition: color .2s, border-color .2s; }
.toc__item--h3 a { padding-left: 30px; font-size: 13.5px; font-weight: 500; }
.toc__item a:hover { color: var(--ink); }
.toc__item a.is-active { color: var(--accent); border-color: var(--accent); }
.toc--aside { margin-bottom: 28px; max-height: calc(100vh - var(--header-h) - 200px); overflow: auto; }
.toc--inline { margin: 0 0 32px; background: var(--surface-2); border-radius: 18px; }
.toc--inline summary { display: flex; align-items: center; gap: 10px; padding: 16px 20px; cursor: pointer; list-style: none; font-weight: 800; color: var(--ink); }
.toc--inline summary::-webkit-details-marker { display: none; }
.toc--inline .toc__chev { margin-left: auto; transition: transform .2s; }
.toc--inline[open] .toc__chev { transform: rotate(180deg); }
.toc--inline .toc__list { margin: 0 20px 18px; }

.share { display: flex; flex-wrap: wrap; gap: 8px; }
.share__btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.share__btn:hover { transform: translateY(-2px); color: #fff; border-color: transparent; }
.share__btn--whatsapp:hover { background: #25D366; color: #0B3B20; }
.share__btn--facebook:hover { background: #1877F2; }
.share__btn--x:hover { background: #111; }
.share__btn--linkedin:hover { background: #0A66C2; }
.share__btn--pinterest:hover { background: #E60023; }
.share__btn--copy:hover, .share__btn--native:hover { background: var(--accent); }
.share-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin: 36px 0; padding: 18px 20px; border-radius: 18px; background: var(--surface-2); font-weight: 700; color: var(--ink); }

/* ---------- Prose ---------- */
.prose { font-size: 18px; line-height: 1.8; color: var(--text); }
.prose > * { margin-top: 0; margin-bottom: 1.2em; }
.prose h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 3vw, 38px); line-height: 1.12; letter-spacing: -.01em; margin: 1.8em 0 .6em; scroll-margin-top: calc(var(--header-h) + 24px); }
.prose h3 { font-size: 22px; font-weight: 800; margin: 1.6em 0 .5em; scroll-margin-top: calc(var(--header-h) + 24px); }
.prose h4 { font-size: 19px; font-weight: 800; margin: 1.4em 0 .4em; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.prose a:hover { text-decoration-color: var(--accent); }
.prose a.btn { text-decoration: none; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .45em; padding-left: .2em; }
.prose ul li::marker { color: var(--accent); }
.prose ol li::marker { color: var(--accent); font-weight: 800; }
.prose blockquote, .prose .wp-block-quote { margin: 1.8em 0; padding: 6px 0 6px 26px; border-left: 4px solid var(--accent); font-family: var(--font-serif); font-size: 27px; line-height: 1.3; color: var(--ink); }
.prose blockquote p { margin-bottom: .4em; }
.prose blockquote cite { display: block; font-family: var(--font-sans); font-size: 14px; font-style: normal; font-weight: 700; color: var(--muted); }
.prose img { border-radius: 16px; }
.prose figure { margin: 2em 0; }
.prose figcaption, .prose .wp-caption-text { font-size: 14px; color: var(--muted); text-align: center; margin-top: 8px; }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2.5em 0; }
.prose table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15.5px; line-height: 1.5; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: block; overflow-x: auto; }
.prose thead th { background: var(--ink); color: var(--bg); text-align: left; font-weight: 700; }
.prose th, .prose td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose tbody tr:nth-child(even) td { background: var(--surface-2); }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose code { font-size: .88em; padding: 2px 6px; border-radius: 6px; background: var(--surface-2); }
.prose pre { overflow-x: auto; padding: 18px; border-radius: 14px; background: var(--surface-2); font-size: 14px; }
.prose .alignwide { margin-inline: calc(min(120px, 8vw) * -1); max-width: none; }
.prose .alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
.prose .alignleft { float: left; margin: .4em 1.4em 1em 0; max-width: 50%; }
.prose .alignright { float: right; margin: .4em 0 1em 1.4em; max-width: 50%; }
.prose .aligncenter { margin-inline: auto; }
.prose iframe { max-width: 100%; }
.prose--card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 40px); font-size: 17px; }
.prose--lead { font-size: 20px; }
.prose--lead > p:first-child::first-letter { float: left; font-family: var(--font-serif); font-size: 4.2em; line-height: .8; padding: .08em .1em 0 0; color: var(--accent); }
@media (max-width: 640px) {
	.prose { font-size: 17px; }
	.prose .alignleft, .prose .alignright { float: none; margin: 1em 0; max-width: 100%; }
	.prose .alignwide { margin-inline: 0; }
}

/* ---------- Author box ---------- */
.author-box { display: flex; gap: 22px; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); margin-top: 28px; }
.author-box__avatar img { border-radius: 50%; width: 88px; height: 88px; }
.author-box__body .kicker { margin-bottom: 4px; }
.author-box__name { font-family: var(--font-serif); font-weight: 400; font-size: 30px; margin: 0; }
.author-box__role { font-size: 14px; font-weight: 700; color: var(--muted); margin: 2px 0 10px; }
.author-box__bio { font-size: 15.5px; color: var(--text); margin-bottom: 10px; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.socials a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.socials--sm a { width: 34px; height: 34px; }
@media (max-width: 560px) { .author-box { flex-direction: column; } }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.post-nav__link { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: 18px; border: 1px solid var(--line); background: var(--surface); }
.post-nav__link small { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.post-nav__link span { font-weight: 700; color: var(--ink); line-height: 1.35; }
.post-nav__link--next { text-align: right; grid-column: 2; }
.post-nav__link:hover { border-color: var(--accent); }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } .post-nav__link--next { grid-column: auto; } }

.related { padding: 64px 0 24px; border-top: 1px solid var(--line); margin-top: 64px; }

/* ---------- Comments ---------- */
.comments { margin-top: 44px; }
.comments__title, .comment-reply-title { font-family: var(--font-serif); font-weight: 400; font-size: 32px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.comment-list .children { list-style: none; padding-left: 28px; }
.comment-body { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); margin-bottom: 14px; }
.comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.comment-author img { border-radius: 50%; }
.comment-metadata { font-size: 13px; margin: 4px 0 8px; }
.comment-metadata a { color: var(--muted); }
.reply a { font-size: 13px; font-weight: 700; color: var(--accent); }
.comment-form { display: grid; gap: 14px; }
.comment-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.comment-form-cookies-consent label { font-weight: 500; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
	width: 100%; min-height: 48px; padding: 12px 14px;
	border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface);
	color: var(--ink); font-size: 15.5px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235E6F6A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.form__or { color: var(--muted); font-size: 14px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; font-weight: 600; font-size: 15px; }
.notice .icon { margin-top: 2px; }
.notice--ok { background: color-mix(in srgb, #25D366 14%, var(--surface)); color: var(--ink); border: 1px solid color-mix(in srgb, #25D366 45%, transparent); }
.notice--err { background: var(--accent-soft); color: var(--ink); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); }
.card-surface { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--shadow); }
.check { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- Guest post page ---------- */
.gp-hero { position: relative; overflow: hidden; isolation: isolate; padding: 40px 0 56px; background: var(--footer-bg); color: #C9D3CE; }
.gp-hero::before { content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; right: -160px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(208, 100, 59, .45), transparent 65%); }
.gp-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .06; background-image: repeating-linear-gradient(0deg, transparent 0 46px, #fff 46px 47px), repeating-linear-gradient(90deg, transparent 0 140px, #fff 140px 141px); }
.gp-hero .breadcrumbs a, .gp-hero .breadcrumbs ol { color: #9FB0A9; }
.gp-hero .breadcrumbs [aria-current] span { color: #F5EFE6; }
.gp-hero .kicker--pill { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: #F5EFE6; }
.gp-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.gp-hero__title { font-family: var(--font-serif); font-weight: 400; color: #F5EFE6; font-size: clamp(42px, 5.6vw, 76px); line-height: .98; letter-spacing: -.02em; margin: 6px 0 18px; }
.gp-hero__title em { color: #F0A27F; }
.gp-hero__text { font-size: 18px; max-width: 58ch; margin-bottom: 26px; }
.gp-hero__points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gp-hero__points li { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.gp-hero__points li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(208, 100, 59, .2); color: #F0A27F; }
.gp-hero__points strong { display: block; color: #F5EFE6; font-size: 16px; }
.gp-hero__points small { color: #9FB0A9; font-size: 13px; line-height: 1.45; }
@media (max-width: 960px) { .gp-hero__grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .gp-hero__points { grid-template-columns: 1fr; } }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 36px 0 0; }
.metrics > div { padding: 18px 20px; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); }
.metrics dt { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #9FB0A9; }
.metrics dd { margin: 4px 0 0; font-family: var(--font-serif); font-size: 42px; line-height: 1; color: #F5EFE6; }
.metrics--light > div { background: var(--surface); border-color: var(--line); }
.metrics--light dt { color: var(--muted); }
.metrics--light dd { color: var(--ink); }

.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 26px 26px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.plan__name { font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.plan__price { font-family: var(--font-serif); font-size: 60px; line-height: 1; color: var(--ink); margin: 0 0 20px; }
.plan__features { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan__features li { display: flex; gap: 10px; font-size: 15px; line-height: 1.45; }
.plan__features .icon { color: var(--accent); margin-top: 3px; }
.plan--featured { background: var(--footer-bg); border-color: transparent; color: #C9D3CE; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan--featured .plan__name { color: #F0A27F; }
.plan--featured .plan__price { color: #F5EFE6; }
.plan--featured .plan__features .icon { color: #F0A27F; }
.plan__badge { position: absolute; top: -13px; left: 26px; padding: 5px 12px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.pricing__note { text-align: center; color: var(--muted); margin: 26px 0 0; font-weight: 600; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .plan--featured { transform: none; } }

.dos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dos__col { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.dos__col h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.dos__col--do h3 .icon { color: #1E9E57; }
.dos__col--dont h3 .icon { color: var(--accent); }
.dos__col ul { margin: 0; padding-left: 1.2em; display: grid; gap: 8px; }
@media (max-width: 720px) { .dos { grid-template-columns: 1fr; } }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: s; }
.steps li { position: relative; padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.steps__n { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; margin-bottom: 16px; }
.steps h3 { font-size: 18px; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.faq { display: grid; gap: 12px; }
.faq__item { border-radius: 18px; background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; list-style: none; font-weight: 700; font-size: 17px; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { transition: transform .2s; color: var(--accent); }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__item p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.section--pitch { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.pitch { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 48px; align-items: start; }
.pitch__intro p:not(.kicker) { color: var(--muted); font-size: 17px; margin-top: 14px; }
.checklist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: center; font-weight: 600; color: var(--ink); }
.checklist .icon { color: #1E9E57; }
@media (max-width: 900px) { .pitch { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 32px; }
.contact-card { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.contact-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--c); background: color-mix(in srgb, var(--c) 14%, transparent); margin-bottom: 14px; }
.contact-card h2 { font-size: 19px; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 15px; }
.contact-card .btn--outline { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-cards, .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Authors ---------- */
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.author-card { display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.author-card__avatar img { width: 84px; height: 84px; border-radius: 50%; margin-bottom: 14px; box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--line); }
.author-card__name { font-family: var(--font-serif); font-weight: 400; font-size: 28px; margin: 0; }
.author-card__role { font-size: 13.5px; font-weight: 700; color: var(--accent); margin: 2px 0 10px; }
.author-card__bio { color: var(--muted); font-size: 15px; }
.author-card__count { margin: 14px 0 0; font-size: 13px; font-weight: 700; color: var(--ink); }
.profile { display: flex; gap: 28px; align-items: flex-start; }
.profile__avatar img { width: 128px; height: 128px; border-radius: 50%; box-shadow: 0 0 0 6px var(--surface), 0 0 0 7px var(--line); }
.profile__bio { font-size: 17.5px; color: var(--muted); max-width: 70ch; }
.profile__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; font-weight: 700; color: var(--ink); }
.profile__facts li { display: inline-flex; align-items: center; gap: 7px; }
.profile__facts .icon { color: var(--accent); }
@media (max-width: 640px) { .profile { flex-direction: column; } .profile__avatar img { width: 96px; height: 96px; } }

/* ---------- Tools ---------- */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tools-grid > div { scroll-margin-top: calc(var(--header-h) + 20px); }
@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; } }
.tool { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow); margin: 1.5em 0; }
.tools-grid .tool { margin: 0; }
.tool__head { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.tool__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: var(--c); background: color-mix(in srgb, var(--c) 14%, transparent); flex: none; }
.tool__title { font-family: var(--font-serif); font-weight: 400; font-size: 28px; margin: 0; line-height: 1.1; }
.tool__sub { margin: 2px 0 0; color: var(--muted); font-size: 14.5px; }
.tool__body { display: grid; gap: 16px; }
.tool__checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.tool__result { margin-top: 22px; padding: 22px; border-radius: 18px; background: var(--footer-bg); color: #C9D3CE; }
.tool__label { margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #F0A27F; }
.tool__big { margin: 6px 0 4px; font-family: var(--font-serif); font-size: clamp(34px, 4vw, 46px); line-height: 1.05; color: #F5EFE6; }
.tool__note { margin: 0; font-size: 13.5px; color: #9FB0A9; }
.tool__disclaimer { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }
.tool__bar { height: 10px; border-radius: 999px; background: #D0643B; overflow: hidden; margin: 14px 0; }
.tool__bar span { display: block; height: 100%; background: #F5EFE6; border-radius: 999px; transition: width .3s; }
.tool__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; }
.tool__stats dt { font-size: 12px; color: #9FB0A9; font-weight: 700; }
.tool__stats dd { margin: 2px 0 0; font-weight: 800; color: #F5EFE6; font-size: 16px; }
.tool__stats div:first-child dt::before, .tool__stats div:nth-child(2) dt::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; background: #F5EFE6; }
.tool__stats div:nth-child(2) dt::before { background: #D0643B; }
.field--range > span { display: flex; justify-content: space-between; align-items: baseline; }
.field--range output { font-weight: 800; color: var(--accent); font-size: 16px; }
.field input[type="range"] { -webkit-appearance: none; appearance: none; min-height: 0; height: 8px; padding: 0; border: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent) var(--p, 50%), var(--surface-3) var(--p, 50%)); }
.field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 2px 8px rgba(0, 0, 0, .2); cursor: pointer; }
.field input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); cursor: pointer; }
.field input[type="range"]:focus { box-shadow: none; }
@media (max-width: 480px) { .tool__stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Widgets ---------- */
.widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.widget + .widget { margin-top: 20px; }
.widget-title { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 8px 0; border-top: 1px solid var(--line); }
.widget li:first-child { border-top: 0; }
.widget h2, .widget h3, .widget .wp-block-search__label { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; color: var(--ink); }
.widget a { color: var(--ink); font-weight: 600; font-size: 15px; }
.widget a:hover { color: var(--accent); }
.widget .wp-block-search__inside-wrapper { display: flex; gap: 8px; }
.widget .wp-block-search__input { min-height: 44px; padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); }
.widget .wp-block-search__button { min-height: 44px; margin: 0; padding: 0 16px; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; }
.widget .wp-block-latest-comments { padding: 0; }
.widget .wp-block-latest-comments__comment { font-size: 14.5px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
	--logo-mark: #D0643B; --logo-roof: #F5EFE6; --logo-planks: #17302B; --logo-word: #F5EFE6; --logo-tag: #9FB0A9;
	margin-top: 40px; padding: 64px 0 28px; background: var(--footer-bg); color: #AEBBB5;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-about { margin: 18px 0 0; max-width: 42ch; font-size: 15px; }
.site-footer .socials a { border-color: rgba(255, 255, 255, .14); color: #F5EFE6; }
.footer-title { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #F5EFE6; margin: 6px 0 16px; }
.footer-links { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.footer-links a { display: inline-flex; align-items: center; gap: 9px; color: #C9D3CE; word-break: break-word; }
.footer-links a:hover { color: #F0A27F; }
.footer-links .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.footer-widgets { margin-top: 18px; }
.footer-widgets .widget { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .08); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 13.5px; }
.footer-bottom p { margin: 0; }
.footer-bottom__links { display: flex; gap: 18px; }
.footer-bottom a { color: #C9D3CE; }
.footer-bottom a:hover { color: #F0A27F; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Floating WhatsApp (right side) ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; flex-direction: row-reverse; gap: 12px; }
.wa-float__btn {
	position: relative; display: grid; place-items: center;
	width: 62px; height: 62px; border-radius: 50%; border: 0;
	background: #25D366; color: #fff;
	box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .8), 0 2px 6px rgba(0, 0, 0, .18);
	transition: transform .2s;
}
.wa-float__btn:hover { transform: scale(1.07); }
.wa-float__btn .icon { position: relative; z-index: 1; }
.wa-float__halo { position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: 0; animation: wa-pulse 2.4s ease-out infinite; }
.wa-float__label {
	display: flex; flex-direction: column; padding: 10px 16px; border-radius: 16px;
	background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
	opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .2s, transform .2s; white-space: nowrap;
}
.wa-float__label strong { color: var(--ink); font-size: 14.5px; line-height: 1.2; }
.wa-float__label small { color: var(--muted); font-size: 12px; }
.wa-float:hover .wa-float__label, .wa-float__btn:focus-visible + .wa-float__label { opacity: 1; transform: none; }
@keyframes wa-pulse {
	0% { transform: scale(1); opacity: .55; }
	80%, 100% { transform: scale(1.65); opacity: 0; }
}
@media (max-width: 640px) {
	.wa-float { right: 16px; bottom: 16px; }
	.wa-float__btn { width: 56px; height: 56px; }
	.wa-float__label { display: none; }
}

.to-top {
	position: fixed; right: 30px; bottom: 98px; z-index: 89;
	display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid var(--line); background: var(--surface); color: var(--ink); box-shadow: var(--shadow);
}
.to-top:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) { .to-top { right: 21px; bottom: 84px; width: 44px; height: 44px; } }

.toast {
	position: fixed; left: 50%; bottom: 28px; z-index: 300; transform: translate(-50%, 20px); opacity: 0;
	padding: 12px 20px; border-radius: 999px; background: var(--ink); color: var(--bg); font-weight: 700; font-size: 14.5px;
	transition: opacity .2s, transform .2s; box-shadow: var(--shadow-lg);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- WP core bits ---------- */
.page-thumb img { border-radius: var(--radius-lg); margin-bottom: 32px; }
.page-links { margin: 24px 0; font-weight: 700; }
.wp-block-button__link { border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; }
.gallery-caption { font-size: 14px; color: var(--muted); }
.bypostauthor > .comment-body { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.sticky { position: relative; }
.wp-caption { max-width: 100%; }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.wa-float__halo { display: none; }
}

/* ---------- Print ---------- */
@media print {
	.site-header, .site-footer, .wa-float, .to-top, .article__aside, .article__side, .share-bar, .related, .comments, .progress, .drawer, .search-modal { display: none !important; }
	body { background: #fff; color: #000; }
	.article__layout { display: block; }
}
