/* ==========================================================================
   Wolfmotion — Blog post template
   Loaded only on single posts. Inherits design tokens (--wm-*) from
   wolfmotion.css.
   ========================================================================== */

.wm-post {
	color: var(--wm-fg);
	font-family: 'Oxanium', system-ui, sans-serif;
	background-color: var(--wm-bg-1);
	position: relative;
	padding-bottom: 96px;
}
.wm-post * { box-sizing: border-box; }

/* Override Rey's siteContainer width on single posts so we own the whole row */
body.single-post .rey-siteContainer,
body.single-post main#main.rey-siteMain,
body.single-post .rey-siteMain-inner {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ============================ HERO ============================ */
.wm-post__hero {
	position: relative;
	padding: 140px 0 36px;
	text-align: center;
	overflow: hidden;
	background:
		radial-gradient(900px 540px at 50% -10%, rgba(43,127,255,0.20), transparent 60%),
		radial-gradient(700px 600px at 90% 10%, rgba(0,184,219,0.10), transparent 55%),
		linear-gradient(180deg, var(--wm-bg-0) 0%, var(--wm-bg-1) 70%);
}
.wm-post__hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(900px 600px at 50% 30%, #000 30%, transparent 80%);
	pointer-events: none;
	opacity: 0.6;
}
.wm-post__hero-inner {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px;
}

.wm-post__category {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border-radius: 999px;
	background: rgba(43,127,255,0.10);
	border: 1px solid rgba(81,162,255,0.32);
	color: var(--wm-accent-3);
	font-size: 12px; letter-spacing: 0.14em;
	text-transform: uppercase; font-weight: 600;
	margin-bottom: 28px;
	text-decoration: none;
	transition: background 200ms var(--wm-ease), border-color 200ms var(--wm-ease);
}
.wm-post__category:hover { background: rgba(43,127,255,0.18); border-color: rgba(81,162,255,0.55); color: #fff; }
.wm-post__category-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--wm-accent-2);
	box-shadow: 0 0 10px var(--wm-accent-2);
}

.wm-post__title {
	font-family: 'Oxanium', system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp(26px, 3.6vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
	color: #fff;
	text-shadow:
		0 0 18px rgba(255,255,255,0.28),
		0 0 44px rgba(255,255,255,0.14);
	text-wrap: balance;
}

.wm-post__lead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(17px, 1.4vw, 20px);
	color: var(--wm-fg-2);
	line-height: 1.55;
	margin: 0 auto 34px;
	max-width: 680px;
	text-wrap: balance;
}

.wm-post__meta {
	display: inline-flex; align-items: center; flex-wrap: wrap;
	gap: 10px;
	font-family: 'Oxanium', system-ui, sans-serif;
	font-size: 14px; color: var(--wm-fg-3);
	padding: 10px 18px; border-radius: 999px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line);
	backdrop-filter: blur(8px);
}
.wm-post__meta-author {
	display: inline-flex; align-items: center; gap: 8px;
	color: #fff; text-decoration: none; font-weight: 600;
}
.wm-post__meta-avatar {
	width: 28px; height: 28px; border-radius: 50%;
	border: 1px solid var(--wm-line-2);
}
.wm-post__meta-sep { color: var(--wm-fg-4); opacity: 0.6; }

.wm-post__cover {
	margin: 0 auto 40px;
	max-width: 1120px;
	padding: 0 24px;
}
.wm-post__cover img,
.wm-post__cover .wm-post__cover-img {
	width: 100%; height: auto; display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--wm-radius-lg);
	border: 1px solid var(--wm-line);
	box-shadow:
		0 40px 100px -40px rgba(43,127,255,0.4),
		0 18px 50px -20px rgba(0,0,0,0.55);
}

/* ============================ LAYOUT ============================ */
.wm-post__layout {
	position: relative;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 240px;
	gap: 48px;
	align-items: flex-start;
	max-width: 1120px;
	margin: 0 auto;
	padding: 64px 24px 0;
}
@media (max-width: 1024px) {
	.wm-post__layout { grid-template-columns: 1fr; gap: 0; padding-top: 48px; }
}

/* ============================ SHARE RAIL ============================ */
.wm-post__share {
	position: sticky; top: 120px;
	display: flex; flex-direction: column;
	align-items: center; gap: 10px;
}
.wm-post__share-label {
	font-size: 10px; letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wm-fg-4);
	writing-mode: vertical-rl; transform: rotate(180deg);
	margin-bottom: 4px;
}
.wm-post__share-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line);
	color: var(--wm-fg-2);
	cursor: pointer;
	transition:
		background 220ms var(--wm-ease),
		border-color 220ms var(--wm-ease),
		color 220ms var(--wm-ease),
		transform 220ms var(--wm-ease);
}
.wm-post__share-btn:hover {
	background: rgba(43,127,255,0.18);
	border-color: rgba(81,162,255,0.55);
	color: #fff;
	transform: translateY(-2px);
}
.wm-post__share-btn.is-copied {
	background: rgba(16,185,129,0.18);
	border-color: rgba(16,185,129,0.55);
	color: #34d399;
}
@media (max-width: 1024px) {
	.wm-post__share { display: none; }
}

/* ============================ ARTICLE BODY ============================ */
.wm-post__main { min-width: 0; }
.wm-post__content {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--wm-fg-2);
	max-width: 720px;
	margin: 0 auto;
	word-wrap: break-word;
}
.wm-post__content > * + * { margin-top: 28px; }
.wm-post__content > h2 + *,
.wm-post__content > h3 + *,
.wm-post__content > h4 + * { margin-top: 16px; }

/* Headings */
.wm-post__content h2,
.wm-post__content h3,
.wm-post__content h4 {
	font-family: 'Oxanium', system-ui, sans-serif;
	color: #fff;
	letter-spacing: -0.015em;
	text-shadow: 0 0 18px rgba(255,255,255,0.14);
	scroll-margin-top: 96px;
}
.wm-post__content h2 {
	font-size: clamp(28px, 3.2vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	margin-top: 56px;
	padding-top: 12px;
	position: relative;
}
.wm-post__content h2::before {
	content: '';
	position: absolute; left: 0; top: 0;
	width: 48px; height: 3px; border-radius: 999px;
	background: linear-gradient(90deg, var(--wm-accent), var(--wm-accent-2));
	box-shadow: 0 0 12px rgba(43,127,255,0.55);
}
.wm-post__content h3 {
	font-size: clamp(22px, 2.4vw, 26px);
	font-weight: 600;
	line-height: 1.25;
	margin-top: 40px;
}
.wm-post__content h4 {
	font-size: 18px; font-weight: 600;
	line-height: 1.3;
	margin-top: 32px;
}

/* Paragraphs + inline text */
.wm-post__content p { margin: 0; }
.wm-post__content strong, .wm-post__content b { color: #fff; font-weight: 600; }
.wm-post__content em { color: var(--wm-accent-3); }
.wm-post__content a {
	color: var(--wm-accent-3);
	text-decoration: none;
	background-image: linear-gradient(0deg, var(--wm-accent), var(--wm-accent));
	background-size: 100% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: color 200ms var(--wm-ease), background-size 200ms var(--wm-ease);
}
.wm-post__content a:hover {
	color: #fff;
	background-size: 100% 2px;
}

/* Lists */
.wm-post__content ul, .wm-post__content ol {
	padding: 0; margin: 0; padding-left: 0;
	list-style: none;
}
.wm-post__content ul li, .wm-post__content ol li {
	position: relative;
	padding-left: 28px;
	margin: 12px 0;
}
.wm-post__content ul li::before {
	content: '';
	position: absolute; left: 8px; top: 12px;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--wm-accent-2);
	box-shadow: 0 0 8px var(--wm-accent-2);
}
.wm-post__content ol { counter-reset: wm-ol; }
.wm-post__content ol li { counter-increment: wm-ol; }
.wm-post__content ol li::before {
	content: counter(wm-ol);
	position: absolute; left: 0; top: 6px;
	min-width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
	font-family: 'Oxanium', sans-serif; font-size: 11px; font-weight: 700;
	color: var(--wm-accent-3);
	background: rgba(43,127,255,0.12);
	border: 1px solid rgba(81,162,255,0.32);
	border-radius: 999px;
	padding: 0 6px;
}

/* Blockquote */
.wm-post__content blockquote {
	position: relative;
	margin: 36px 0;
	padding: 24px 28px 24px 36px;
	background: linear-gradient(180deg, rgba(43,127,255,0.06), rgba(255,255,255,0.01));
	border: 1px solid rgba(81,162,255,0.22);
	border-left: 3px solid var(--wm-accent);
	border-radius: 14px;
	color: #fff;
	font-size: 19px;
	line-height: 1.55;
	font-style: italic;
	font-family: 'Oxanium', system-ui, sans-serif;
	font-weight: 500;
	overflow: hidden;
}
.wm-post__content blockquote::before {
	content: '"';
	position: absolute;
	top: -8px; right: 18px;
	font-family: Georgia, serif;
	font-size: 96px; line-height: 1;
	color: rgba(81,162,255,0.22);
	font-style: normal;
}
.wm-post__content blockquote p { margin: 0; }
.wm-post__content blockquote cite,
.wm-post__content blockquote footer {
	display: block;
	margin-top: 14px;
	font-size: 13px; font-style: normal;
	color: var(--wm-fg-3);
	font-family: 'Inter', sans-serif;
}
.wm-post__content blockquote cite::before { content: '— '; }

/* Code */
.wm-post__content code {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.88em;
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(43,127,255,0.10);
	border: 1px solid rgba(81,162,255,0.22);
	color: var(--wm-accent-3);
	white-space: nowrap;
}
.wm-post__content pre {
	margin: 32px 0;
	padding: 22px 24px;
	background: linear-gradient(180deg, #06091e, #04071a);
	border: 1px solid var(--wm-line);
	border-radius: 14px;
	overflow-x: auto;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 14px;
	line-height: 1.65;
	color: var(--wm-fg-2);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 48px -24px rgba(0,0,0,0.5);
}
.wm-post__content pre code {
	background: transparent;
	border: 0; padding: 0;
	color: inherit;
	white-space: pre;
	font-size: inherit;
}

/* Images / figures */
.wm-post__content img,
.wm-post__content figure,
.wm-post__content .wp-block-image {
	margin: 36px 0;
	max-width: 100%;
}
.wm-post__content img {
	width: 100%; height: auto;
	border-radius: 16px;
	border: 1px solid var(--wm-line);
	box-shadow: 0 24px 60px -28px rgba(0,0,0,0.6);
}
.wm-post__content figure { margin-left: 0; margin-right: 0; }
.wm-post__content figcaption,
.wm-post__content .wp-caption-text {
	margin-top: 12px;
	font-size: 13px;
	color: var(--wm-fg-3);
	text-align: center;
	font-family: 'Oxanium', sans-serif;
	letter-spacing: 0.02em;
}

/* HR */
.wm-post__content hr {
	margin: 56px auto;
	width: 64px; height: 2px;
	border: 0;
	background: linear-gradient(90deg, transparent, rgba(81,162,255,0.55), transparent);
	border-radius: 999px;
}

/* Embeds */
.wm-post__content iframe,
.wm-post__content .wp-block-embed iframe {
	width: 100%;
	min-height: 320px;
	border-radius: 14px;
	border: 1px solid var(--wm-line);
}

/* Tables */
.wm-post__content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 32px 0;
	background: rgba(255,255,255,0.02);
	border: 1px solid var(--wm-line);
	border-radius: 14px;
	overflow: hidden;
	font-size: 14px;
}
.wm-post__content th, .wm-post__content td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--wm-line);
	text-align: left;
}
.wm-post__content th {
	color: #fff; font-weight: 600;
	background: rgba(43,127,255,0.08);
	font-family: 'Oxanium', sans-serif;
	letter-spacing: 0.02em;
}
.wm-post__content tr:last-child td { border-bottom: 0; }

/* ============================ TAGS ============================ */
.wm-post__tags {
	display: flex; flex-wrap: wrap; gap: 10px;
	max-width: 720px; margin: 56px auto 0;
}
.wm-post__tag {
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line);
	color: var(--wm-fg-2);
	font-size: 13px;
	text-decoration: none;
	font-family: 'Oxanium', sans-serif;
	transition: all 200ms var(--wm-ease);
}
.wm-post__tag:hover {
	background: rgba(43,127,255,0.12);
	border-color: rgba(81,162,255,0.45);
	color: #fff;
}

/* ============================ INLINE SHARE ============================ */
.wm-post__share-inline {
	max-width: 720px;
	margin: 48px auto 0;
	padding: 22px 24px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
}
.wm-post__share-inline-label {
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	color: var(--wm-fg-3);
	letter-spacing: 0.02em;
}
.wm-post__share-inline-row {
	display: flex; gap: 10px;
}

/* On desktop the floating rail handles share — hide the inline row visually but
   keep mobile usage. */
@media (min-width: 1025px) {
	.wm-post__share-inline { display: none; }
}

/* ============================ AUTHOR ============================ */
.wm-post__author {
	max-width: 720px;
	margin: 56px auto 0;
	padding: 28px 28px;
	border-radius: 20px;
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(43,127,255,0.10), transparent 60%),
		linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 22px;
	align-items: center;
}
.wm-post__author-avatar {
	width: 80px; height: 80px; border-radius: 50%;
	border: 2px solid rgba(81,162,255,0.4);
	box-shadow: 0 0 30px -8px rgba(43,127,255,0.55);
}
.wm-post__author-label {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 11px; letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wm-accent-3);
	margin-bottom: 6px;
}
.wm-post__author-name {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
}
.wm-post__author-name:hover { color: var(--wm-accent-3); }
.wm-post__author-bio {
	margin: 0;
	color: var(--wm-fg-2);
	font-size: 14px;
	line-height: 1.6;
	font-family: 'Inter', sans-serif;
}
@media (max-width: 560px) {
	.wm-post__author { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 24px 20px; }
	.wm-post__author-avatar { margin: 0 auto; }
}

/* ============================ SIDEBAR / TOC ============================ */
.wm-post__sidebar {
	position: sticky; top: 120px;
	align-self: flex-start;
}
.wm-post__sidebar-inner {
	padding: 18px 20px;
	background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	border-radius: 14px;
	backdrop-filter: blur(10px);
}
.wm-post__sidebar-label {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 11px; letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wm-accent-3);
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--wm-line);
}
.wm-post__toc { display: flex; flex-direction: column; }
.wm-post__toc a {
	position: relative;
	display: block;
	padding: 8px 10px 8px 14px;
	border-left: 2px solid transparent;
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: var(--wm-fg-3);
	text-decoration: none;
	transition: color 180ms var(--wm-ease), border-color 180ms var(--wm-ease), background 180ms var(--wm-ease);
}
.wm-post__toc a:hover {
	color: #fff;
	background: rgba(43,127,255,0.06);
}
.wm-post__toc a.is-active {
	color: #fff;
	border-left-color: var(--wm-accent);
	background: rgba(43,127,255,0.10);
}
.wm-post__toc a[data-depth="3"] { padding-left: 26px; font-size: 12px; opacity: 0.85; }

@media (max-width: 1024px) {
	.wm-post__sidebar { display: none; }
}

/* Mobile TOC (details / summary) */
.wm-post__toc-mobile {
	max-width: 720px;
	margin: 0 auto 28px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	overflow: hidden;
}
.wm-post__toc-mobile summary {
	display: flex; align-items: center; gap: 10px;
	padding: 14px 18px;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	list-style: none;
	transition: background 200ms var(--wm-ease);
}
.wm-post__toc-mobile summary::-webkit-details-marker { display: none; }
.wm-post__toc-mobile summary:hover { background: rgba(255,255,255,0.02); }
.wm-post__toc-mobile summary > svg:first-child { color: var(--wm-accent-3); flex-shrink: 0; }
.wm-post__toc-mobile summary > span { flex: 1; }
.wm-post__toc-chev { transition: transform 220ms var(--wm-ease); color: var(--wm-fg-3); }
.wm-post__toc-mobile[open] .wm-post__toc-chev { transform: rotate(180deg); }
.wm-post__toc-mobile[open] summary { border-bottom: 1px solid var(--wm-line); background: rgba(255,255,255,0.02); }
.wm-post__toc-list {
	padding: 8px 8px 12px;
	display: flex; flex-direction: column;
}
.wm-post__toc-list a {
	display: block;
	padding: 8px 14px;
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	color: var(--wm-fg-3);
	text-decoration: none;
	border-left: 2px solid transparent;
	border-radius: 0 8px 8px 0;
	transition: color 180ms var(--wm-ease), background 180ms var(--wm-ease), border-color 180ms var(--wm-ease);
}
.wm-post__toc-list a:hover { color: #fff; background: rgba(43,127,255,0.06); }
.wm-post__toc-list a.is-active { color: #fff; border-left-color: var(--wm-accent); background: rgba(43,127,255,0.10); }
.wm-post__toc-list a[data-depth="3"] { padding-left: 26px; font-size: 12px; opacity: 0.85; }

@media (min-width: 1025px) {
	.wm-post__toc-mobile { display: none; }
}

/* ============================ RELATED POSTS ============================ */
.wm-post__related {
	margin-top: 96px;
	padding: 80px 0 32px;
	border-top: 1px solid var(--wm-line);
	background:
		radial-gradient(700px 360px at 50% -10%, rgba(43,127,255,0.10), transparent 60%);
}
.wm-post__related-head {
	text-align: center;
	margin: 0 auto 48px;
	max-width: 640px;
	padding: 0 24px;
}
.wm-post__related-head h2 { margin: 12px 0 0; }
.wm-post__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0 24px;
	max-width: 1120px;
	margin: 0 auto;
}
@media (max-width: 960px) { .wm-post__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .wm-post__related-grid { grid-template-columns: 1fr; } }

.wm-post-card {
	display: flex; flex-direction: column;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 280ms var(--wm-ease), border-color 280ms var(--wm-ease), box-shadow 280ms var(--wm-ease);
}
.wm-post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(81,162,255,0.45);
	box-shadow:
		0 24px 56px -28px rgba(43,127,255,0.45),
		0 8px 24px -10px rgba(0,0,0,0.55);
}
.wm-post-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #0a1535, #1a0e3a);
	overflow: hidden;
}
.wm-post-card__media img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform 600ms var(--wm-ease);
}
.wm-post-card:hover .wm-post-card__media img { transform: scale(1.04); }
.wm-post-card__placeholder {
	position: absolute; inset: 0;
	background: radial-gradient(120% 80% at 30% 20%, rgba(43,127,255,0.25), transparent 60%), linear-gradient(135deg, #0a1535, #1a0e3a);
}
.wm-post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.wm-post-card__cat {
	font-family: 'Oxanium', sans-serif;
	font-size: 11px; letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wm-accent-3);
}
.wm-post-card__title {
	font-family: 'Oxanium', sans-serif;
	font-size: 18px; font-weight: 600;
	letter-spacing: -0.01em; line-height: 1.3;
	margin: 0; color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wm-post-card__meta {
	display: flex; align-items: center; gap: 8px;
	font-size: 12px; color: var(--wm-fg-3);
	font-family: 'Oxanium', sans-serif;
	margin-top: auto;
}

/* ============================ MOBILE TWEAKS ============================ */
@media (max-width: 768px) {
	.wm-post__hero { padding: 110px 0 24px; }
	.wm-post__title { font-size: clamp(22px, 5vw, 30px); margin-bottom: 14px; }
	.wm-post__lead { margin-bottom: 22px; }
	.wm-post__meta {
		gap: 8px; padding: 8px 14px; font-size: 13px;
	}
	.wm-post__cover { margin: 0 auto 28px; padding: 0 16px; }
	.wm-post__cover img { border-radius: 14px; aspect-ratio: 4 / 3; }
	.wm-post__layout { padding: 36px 18px 0; }
	.wm-post__content { font-size: 16px; line-height: 1.7; }
	.wm-post__content > * + * { margin-top: 22px; }
	.wm-post__content h2 { margin-top: 44px; }
	.wm-post__content blockquote { padding: 20px 20px 20px 24px; font-size: 17px; }
	.wm-post__content pre { padding: 18px 18px; font-size: 13px; }
	.wm-post__related { padding: 60px 0 24px; margin-top: 64px; }
	.wm-post__share-inline { padding: 18px 18px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
	.wm-post__hero-inner { padding: 0 18px; }
	.wm-post__category { font-size: 11px; padding: 6px 12px; margin-bottom: 22px; }
	.wm-post__meta { width: 100%; justify-content: center; }
	.wm-post__author { padding: 22px 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.wm-post-card,
	.wm-post-card__media img,
	.wm-post__share-btn,
	.wm-post__toc-chev { transition: none !important; }
}

/* ==========================================================================
   ============================ BLOG ARCHIVE ===============================
   home.php (blog index) + archive.php (category/tag/date/search)
   ========================================================================== */

.wm-archive {
	color: var(--wm-fg);
	font-family: 'Oxanium', system-ui, sans-serif;
	background-color: var(--wm-bg-1);
	padding-bottom: 120px;
}

body.blog .rey-siteContainer,
body.archive .rey-siteContainer,
body.search .rey-siteContainer,
body.blog main#main.rey-siteMain,
body.archive main#main.rey-siteMain,
body.search main#main.rey-siteMain,
body.blog .rey-siteMain-inner,
body.archive .rey-siteMain-inner,
body.search .rey-siteMain-inner {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ============================ HERO ============================ */
.wm-archive__hero {
	position: relative;
	padding: 140px 0 56px;
	text-align: center;
	overflow: hidden;
	background:
		radial-gradient(900px 540px at 50% -10%, rgba(43,127,255,0.22), transparent 60%),
		radial-gradient(700px 600px at 88% 10%, rgba(0,184,219,0.10), transparent 55%),
		linear-gradient(180deg, var(--wm-bg-0) 0%, var(--wm-bg-1) 70%);
}
.wm-archive__hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(1200px 700px at 50% 30%, #000 30%, transparent 80%);
	pointer-events: none;
	opacity: 0.55;
}
.wm-archive__hero-inner {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px;
}
.wm-archive__title {
	font-family: 'Oxanium', system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 5.6vw, 68px);
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 14px 0 18px;
	color: #fff;
	text-shadow:
		0 0 22px rgba(255,255,255,0.30),
		0 0 56px rgba(255,255,255,0.16);
	text-wrap: balance;
}
.wm-archive__lead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(15px, 1.2vw, 17px);
	color: var(--wm-fg-2);
	line-height: 1.6;
	margin: 0 auto 30px;
	max-width: 640px;
	text-wrap: balance;
}
.wm-archive__lead p { margin: 0; }

/* ============================ SEARCH ============================ */
.wm-archive__search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 560px;
	margin: 0 auto;
	padding: 6px 6px 6px 18px;
	border-radius: 999px;
	background: rgba(255,255,255,0.045);
	border: 1px solid var(--wm-line-2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: border-color 220ms var(--wm-ease), background 220ms var(--wm-ease);
}
.wm-archive__search:focus-within {
	border-color: rgba(81,162,255,0.55);
	background: rgba(255,255,255,0.06);
	box-shadow: 0 0 0 4px rgba(43,127,255,0.10);
}
.wm-archive__search-icon { color: var(--wm-fg-3); flex-shrink: 0; }
.wm-archive__search input {
	flex: 1; min-width: 0;
	background: transparent;
	border: 0; outline: 0;
	color: #fff;
	font-family: 'Oxanium', sans-serif;
	font-size: 15px;
	height: 44px;
	padding: 0 6px;
}
.wm-archive__search input::placeholder { color: var(--wm-fg-4); }
/* Hide browser-native clear/cancel button on input[type=search] — we use a custom .wm-search__clear */
.wm-archive__search input[type="search"]::-webkit-search-cancel-button,
.wm-archive__search input[type="search"]::-webkit-search-decoration,
.wm-archive__search input[type="search"]::-webkit-search-results-button,
.wm-archive__search input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}
.wm-archive__search input[type="search"]::-ms-clear,
.wm-archive__search input[type="search"]::-ms-reveal {
	display: none;
	width: 0; height: 0;
}
.wm-archive__search button {
	display: inline-flex; align-items: center; gap: 8px;
	height: 40px; padding: 0 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00216A 0%, #151744 100%);
	color: #fff;
	border: 0;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
	font-weight: 600; font-size: 13px;
	letter-spacing: 0.02em;
	box-shadow: 0 0 24px rgba(59, 130, 246, 0.28);
	transition: filter 220ms var(--wm-ease), box-shadow 220ms var(--wm-ease);
}
.wm-archive__search button:hover {
	filter: brightness(1.08);
	box-shadow: 0 0 32px rgba(59, 130, 246, 0.45);
}
@media (max-width: 540px) {
	.wm-archive__search { padding-left: 14px; }
	.wm-archive__search button span { display: none; }
	.wm-archive__search button { padding: 0 14px; width: 44px; }
}

/* ============================ CATEGORY PILLS ============================ */
.wm-archive__filters {
	position: relative;
	margin-top: 12px;
	padding: 22px 0 18px;
	border-top: 1px solid var(--wm-line);
	border-bottom: 1px solid var(--wm-line);
	background: rgba(4, 7, 26, 0.55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.wm-archive__filters-inner {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 0 24px;
	mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.wm-archive__filters-inner::-webkit-scrollbar { display: none; }
.wm-archive__pill {
	display: inline-flex; align-items: center; gap: 8px;
	flex-shrink: 0;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line-2);
	color: var(--wm-fg-2);
	font-family: 'Oxanium', sans-serif;
	font-weight: 500;
	font-size: 13.5px;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: background 200ms var(--wm-ease), border-color 200ms var(--wm-ease), color 200ms var(--wm-ease), transform 200ms var(--wm-ease);
}
.wm-archive__pill:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.28);
	color: #fff;
	transform: translateY(-1px);
}
.wm-archive__pill.is-active {
	background: linear-gradient(90deg, rgba(0,33,106,0.7), rgba(21,23,68,0.8));
	border-color: rgba(81,162,255,0.55);
	color: #fff;
	box-shadow: 0 0 22px rgba(59, 130, 246, 0.28);
}
.wm-archive__pill-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 22px; height: 20px; padding: 0 6px;
	border-radius: 999px;
	background: rgba(255,255,255,0.10);
	color: var(--wm-fg-3);
	font-size: 11px; font-weight: 600;
}
.wm-archive__pill.is-active .wm-archive__pill-count {
	background: rgba(43,127,255,0.30);
	color: #fff;
}

/* ============================ FEATURED ============================ */
.wm-archive__featured-wrap {
	padding: 64px 0 16px;
}
.wm-archive__featured {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wm-line);
	border-radius: 24px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color 320ms var(--wm-ease), box-shadow 320ms var(--wm-ease), transform 320ms var(--wm-ease);
	max-width: 1120px;
	margin: 0 auto;
}
.wm-archive__featured:hover {
	border-color: rgba(81,162,255,0.45);
	box-shadow: 0 32px 80px -40px rgba(43,127,255,0.55), 0 12px 40px -16px rgba(0,0,0,0.55);
	transform: translateY(-4px);
}
.wm-archive__featured-media {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0a1535, #1a0e3a);
	min-height: 320px;
}
.wm-archive__featured-media img {
	width: 100%; height: 100%; object-fit: cover;
	display: block;
	transition: transform 700ms var(--wm-ease);
}
.wm-archive__featured:hover .wm-archive__featured-media img { transform: scale(1.05); }
.wm-archive__featured-placeholder {
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 80% at 30% 20%, rgba(43,127,255,0.30), transparent 60%),
		linear-gradient(135deg, #0a1535, #1a0e3a);
}
.wm-archive__featured-badge {
	position: absolute;
	top: 18px; left: 18px; z-index: 2;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px;
	background: linear-gradient(90deg, #00216A, #151744);
	border: 1px solid rgba(81,162,255,0.45);
	border-radius: 999px;
	font-family: 'Oxanium', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	box-shadow: 0 0 22px rgba(59,130,246,0.5);
}
.wm-archive__featured-body {
	padding: 44px 44px;
	display: flex; flex-direction: column; gap: 14px;
	justify-content: center;
}
.wm-archive__featured-cat {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: 'Oxanium', sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--wm-accent-3);
}
.wm-archive__featured-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--wm-accent-2);
	box-shadow: 0 0 10px var(--wm-accent-2);
}
.wm-archive__featured-title {
	font-family: 'Oxanium', sans-serif;
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 0;
	text-shadow: 0 0 18px rgba(255,255,255,0.14);
	text-wrap: balance;
}
.wm-archive__featured-excerpt {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--wm-fg-2);
	line-height: 1.6;
	margin: 0;
}
.wm-archive__featured-meta {
	display: flex; align-items: center; gap: 8px;
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	color: var(--wm-fg-3);
}
.wm-archive__featured-cta {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 6px;
	font-family: 'Oxanium', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--wm-accent-3);
	transition: gap 220ms var(--wm-ease), color 220ms var(--wm-ease);
}
.wm-archive__featured:hover .wm-archive__featured-cta { color: #fff; gap: 14px; }

@media (max-width: 880px) {
	.wm-archive__featured { grid-template-columns: 1fr; }
	.wm-archive__featured-media { min-height: 240px; aspect-ratio: 16 / 9; }
	.wm-archive__featured-body { padding: 28px 24px; }
}

/* ============================ POST GRID ============================ */
.wm-archive__grid-wrap { padding: 56px 0 24px; }
.wm-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}
@media (max-width: 1024px) { .wm-archive__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .wm-archive__grid { grid-template-columns: 1fr; } }

.wm-archive__card { /* extends .wm-post-card */ }
.wm-archive__card-excerpt {
	font-family: 'Inter', sans-serif;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--wm-fg-3);
	margin: 4px 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ============================ PAGINATION ============================ */
.wm-archive__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin: 56px auto 0;
	padding: 0 24px;
}
.wm-archive__pagination .wm-archive__page {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 6px;
	min-width: 44px; height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line);
	color: var(--wm-fg-2);
	font-family: 'Oxanium', sans-serif;
	font-weight: 600; font-size: 14px;
	text-decoration: none;
	transition: background 200ms var(--wm-ease), border-color 200ms var(--wm-ease), color 200ms var(--wm-ease), transform 200ms var(--wm-ease);
}
.wm-archive__pagination .wm-archive__page:hover {
	background: rgba(43,127,255,0.10);
	border-color: rgba(81,162,255,0.45);
	color: #fff;
	transform: translateY(-1px);
}
.wm-archive__pagination .wm-archive__page.is-active {
	background: linear-gradient(90deg, #00216A 0%, #151744 100%);
	border-color: rgba(81,162,255,0.55);
	color: #fff;
	box-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}
.wm-archive__pagination .wm-archive__page.is-prevnext { padding: 0 18px; }
.wm-archive__pagination .dots,
.wm-archive__pagination span.wm-archive__page:not(.is-active) {
	background: transparent;
	border-color: transparent;
	color: var(--wm-fg-4);
	cursor: default;
}

/* ============================ EMPTY STATE ============================ */
.wm-archive__empty {
	text-align: center;
	padding: 80px 24px;
	max-width: 480px;
	margin: 0 auto;
}
.wm-archive__empty-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 72px; height: 72px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: rgba(43,127,255,0.08);
	border: 1px solid rgba(81,162,255,0.25);
	color: var(--wm-accent-3);
	box-shadow: 0 0 32px rgba(43,127,255,0.18);
}
.wm-archive__empty-title {
	font-family: 'Oxanium', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	margin: 0 0 8px;
}
.wm-archive__empty-text {
	color: var(--wm-fg-3);
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	margin: 0;
}

/* ============================ ARCHIVE MOBILE ============================ */
@media (max-width: 768px) {
	.wm-archive__hero { padding: 110px 0 40px; }
	.wm-archive__title { margin: 10px 0 14px; }
	.wm-archive__lead { margin-bottom: 24px; font-size: 15px; }
	.wm-archive__filters { padding: 16px 0 14px; }
	.wm-archive__featured-wrap { padding: 40px 0 8px; }
	.wm-archive__grid-wrap { padding: 36px 0 16px; }
	.wm-archive__grid { gap: 16px; padding: 0 16px; }
	.wm-archive { padding-bottom: 80px; }
}
@media (max-width: 480px) {
	.wm-archive__hero { padding: 90px 0 32px; }
	.wm-archive__pagination .wm-archive__page { min-width: 40px; height: 40px; padding: 0 10px; font-size: 13px; }
	.wm-archive__pagination .wm-archive__page.is-prevnext span { display: none; }
}

/* ==========================================================================
   ============================ SEARCH RESULTS =============================
   search.php — query-aware hero, highlighted matches, refined empty state
   ========================================================================== */

.wm-search__hero {
	padding: 130px 0 48px;
}

.wm-search__title {
	font-size: clamp(28px, 4.6vw, 52px);
	margin: 14px 0 18px;
	line-height: 1.1;
}
.wm-search__query {
	display: inline-block;
	color: var(--wm-accent-3);
	background: linear-gradient(180deg, rgba(43,127,255,0.10), rgba(43,127,255,0.04));
	border: 1px solid rgba(81,162,255,0.32);
	border-radius: 14px;
	padding: 0 12px;
	margin: 0 4px;
	box-shadow: 0 0 24px rgba(43,127,255,0.18) inset;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.wm-search__count {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	margin: 0 auto 28px;
	border-radius: 999px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line-2);
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: var(--wm-fg-2);
	width: auto;
}
.wm-search__count strong { color: #fff; font-weight: 700; }
.wm-search__count svg { color: var(--wm-accent-3); flex-shrink: 0; }

/* ============================ REFINE BAR ============================ */
.wm-search__bar {
	position: relative;
}
.wm-search__clear {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	color: var(--wm-fg-3);
	text-decoration: none;
	flex-shrink: 0;
	transition: background 200ms var(--wm-ease), color 200ms var(--wm-ease);
}
.wm-search__clear:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ============================ TYPE SUMMARY ============================ */
.wm-search__types {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1120px;
	margin: 0 auto 28px;
	padding: 0 24px;
}
.wm-search__type {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px 6px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wm-line);
	font-family: 'Oxanium', sans-serif;
	font-size: 12px;
	color: var(--wm-fg-2);
}
.wm-search__type-name { letter-spacing: 0.06em; text-transform: uppercase; }
.wm-search__type-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 20px; height: 18px; padding: 0 5px;
	border-radius: 999px;
	background: rgba(43,127,255,0.18);
	color: var(--wm-accent-3);
	font-size: 11px; font-weight: 700;
}

/* ============================ RESULT CARDS ============================ */
.wm-search__card .wm-post-card__media { position: relative; }
.wm-search__card-type {
	position: absolute;
	top: 12px; right: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(4, 7, 26, 0.78);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.10);
	color: #fff;
	font-family: 'Oxanium', sans-serif;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
}
.wm-search__card-excerpt { -webkit-line-clamp: 3; }

/* Highlighted match tokens */
.wm-search__mark {
	background: linear-gradient(180deg, rgba(43,127,255,0.32), rgba(43,127,255,0.18));
	color: #fff;
	padding: 0 4px;
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(81,162,255,0.45);
	font-weight: 600;
}
.wm-post-card__title .wm-search__mark {
	box-shadow: 0 0 0 1px rgba(81,162,255,0.55);
}

/* ============================ EMPTY STATE ============================ */
.wm-search__empty {
	text-align: center;
	padding: 64px 24px;
	max-width: 720px;
	margin: 0 auto;
	background:
		radial-gradient(80% 100% at 50% 0%, rgba(43,127,255,0.08), transparent 60%),
		linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
	border: 1px solid var(--wm-line);
	border-radius: 24px;
}
.wm-search__empty .wm-archive__empty-icon { margin-bottom: 22px; }
.wm-search__empty .wm-archive__empty-title {
	font-size: clamp(22px, 2.6vw, 28px);
	margin-bottom: 12px;
	max-width: 540px;
	margin-left: auto; margin-right: auto;
	line-height: 1.25;
}
.wm-search__empty-text {
	color: var(--wm-fg-3);
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	line-height: 1.55;
	margin: 0 auto 32px;
	max-width: 460px;
}

.wm-search__tips {
	display: grid;
	gap: 10px;
	max-width: 480px;
	margin: 0 auto 36px;
	padding: 0;
	list-style: none;
	text-align: left;
}
.wm-search__tips li {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 18px;
	border-radius: 14px;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--wm-line);
	color: var(--wm-fg-2);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}
.wm-search__tips-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: rgba(43,127,255,0.12);
	border: 1px solid rgba(81,162,255,0.32);
	font-family: 'Oxanium', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--wm-accent-3);
	flex-shrink: 0;
}

.wm-search__suggest { margin-bottom: 32px; }
.wm-search__suggest-label {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wm-accent-3);
	margin-bottom: 14px;
}
.wm-search__suggest-pills {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 8px;
}
.wm-search__suggest-pills .wm-archive__pill { font-size: 13px; padding: 8px 14px; }

.wm-search__back {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00216A 0%, #151744 100%);
	color: #fff;
	font-family: 'Oxanium', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: 0 0 26px rgba(59, 130, 246, 0.30);
	transition: filter 220ms var(--wm-ease), box-shadow 220ms var(--wm-ease), transform 220ms var(--wm-ease);
}
.wm-search__back:hover {
	filter: brightness(1.08);
	box-shadow: 0 0 36px rgba(59, 130, 246, 0.5);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.wm-search__hero { padding: 110px 0 36px; }
	.wm-search__empty { padding: 48px 20px; border-radius: 18px; }
	.wm-search__tips li { padding: 12px 14px; font-size: 13px; }
}
