/*!
Theme Name: HelloWorld Translate
Theme URI: https://example.com/helloworld-translate
Author: HelloWorld Team
Author URI: https://example.com
Description: Modern cross-border e-commerce SaaS theme for HelloWorld AI Translation Assistant. Designed for global sellers, independent station merchants, and foreign trade teams.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: helloworld
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, e-commerce

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Design Tokens (CSS Variables)
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Components
	- Header / Navigation
	- Hero
	- Buttons
	- Cards
	- Sections
	- Footer
	- Posts and pages
	- Comments
	- Widgets
	- Media
# Utilities
	- Accessibility
	- Alignments
--------------------------------------------------------------*/

:root {
	/* Brand colors - defaults overridable via WP Customizer */
	--color-primary: #2563EB;
	--color-primary-hover: #1D4ED8;
	--color-primary-soft: #EFF6FF;
	--color-secondary: #1E293B;
	--color-secondary-hover: #0F172A;
	--color-accent: #F59E0B;
	--color-bg: #F8FAFC;
	--color-surface: #FFFFFF;
	--color-surface-alt: #F1F5F9;
	--color-text: #0F172A;
	--color-text-soft: #334155;
	--color-muted: #64748B;
	--color-border: #E2E8F0;
	--color-success: #10B981;
	--color-danger: #EF4444;

	/* Spacing scale - 8px rhythm */
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 48px;
	--space-6: 64px;
	--space-7: 96px;

	/* Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-full: 999px;

	/* Shadows (soft) */
	--shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.10);

	/* Typography */
	--font-sans: 'Inter', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

	--fs-xs: 0.8125rem;   /* 13 */
	--fs-sm: 0.875rem;    /* 14 */
	--fs-base: 1rem;      /* 16 */
	--fs-md: 1.125rem;    /* 18 */
	--fs-lg: 1.375rem;    /* 22 */
	--fs-xl: 1.75rem;     /* 28 */
	--fs-2xl: 2.25rem;    /* 36 */
	--fs-3xl: 3rem;       /* 48 */
	--fs-4xl: 3.75rem;    /* 60 */

	--lh-tight: 1.25;
	--lh-snug: 1.4;
	--lh-normal: 1.6;
	--lh-relaxed: 1.75;

	/* Layout */
	--container-max: 1200px;
	--container-padding: 24px;
	--header-height: 72px;

	/* Motion */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--dur-fast: 150ms;
	--dur-base: 220ms;
	--dur-slow: 320ms;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	line-height: var(--lh-relaxed);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main { display: block; }

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

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography */
body, button, input, select, optgroup, textarea {
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	line-height: var(--lh-relaxed);
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	color: var(--color-text);
	font-weight: 700;
	line-height: var(--lh-tight);
	margin: 0 0 var(--space-2);
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, var(--fs-3xl)); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); }

p { margin: 0 0 var(--space-3); color: var(--color-text-soft); }

small { font-size: var(--fs-xs); }
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }

mark, ins {
	background: var(--color-primary-soft);
	color: var(--color-primary);
	text-decoration: none;
	padding: 2px 6px;
	border-radius: var(--radius-sm);
}

pre, code, kbd, samp {
	font-family: var(--font-mono);
	font-size: 0.95em;
}

/* Elements */
hr {
	background-color: var(--color-border);
	border: 0;
	height: 1px;
	margin: var(--space-4) 0;
}

ul, ol { margin: 0 0 var(--space-3); padding-left: 1.5em; }
li > ul, li > ol { margin-bottom: 0; }
dt { font-weight: 700; }
dd { margin: 0 var(--space-2) var(--space-2); }

embed, iframe, object { max-width: 100%; }
img { height: auto; max-width: 100%; border-style: none; }
figure { margin: var(--space-3) 0; }
table { margin: 0 0 var(--space-3); width: 100%; }

/* Links */
a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
}
a:visited { color: var(--color-primary); }
a:hover, a:focus, a:active { color: var(--color-primary-hover); }

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

.wm-container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.wm-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wm-main {
	flex: 1 0 auto;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header / Navigation */
.wm-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--color-border);
}

.wm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: var(--space-3);
}

.wm-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	font-weight: 700;
	font-size: var(--fs-md);
	color: var(--color-text);
}
.wm-brand:hover { color: var(--color-text); }
.wm-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-md);
	background: var(--color-primary);
	color: #fff;
}

.wm-nav {
	display: none;
	align-items: center;
	gap: var(--space-3);
}
.wm-nav ul {
	display: flex;
	gap: var(--space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}
.wm-nav a {
	color: var(--color-text-soft);
	font-weight: 500;
	font-size: var(--fs-sm);
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.wm-nav a:hover,
.wm-nav .current-menu-item > a,
.wm-nav .current_page_item > a {
	color: var(--color-primary);
	background: var(--color-primary-soft);
}

.wm-nav__actions {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.wm-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	cursor: pointer;
	color: var(--color-text);
}
.wm-nav-toggle:hover { background: var(--color-surface-alt); }
.wm-nav-toggle:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 2px;
}

@media (min-width: 1024px) {
	.wm-nav { display: flex; }
	.wm-nav-toggle { display: none; }
}

.wm-mobile-panel {
	display: none;
	padding: var(--space-2) 0 var(--space-3);
	border-top: 1px solid var(--color-border);
}
.wm-mobile-panel.is-open { display: block; }
.wm-mobile-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-1);
}
.wm-mobile-panel a {
	display: block;
	padding: 12px var(--space-2);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font-weight: 500;
}
.wm-mobile-panel a:hover { background: var(--color-surface-alt); }
.wm-mobile-panel .wm-btn { width: 100%; }

/* Buttons */
.wm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: var(--radius-md);
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: var(--fs-sm);
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform var(--dur-fast) var(--ease),
				background-color var(--dur-fast) var(--ease),
				border-color var(--dur-fast) var(--ease),
				box-shadow var(--dur-fast) var(--ease),
				color var(--dur-fast) var(--ease);
	text-decoration: none;
	white-space: nowrap;
}
.wm-btn:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 2px;
}
.wm-btn--primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.wm-btn--primary:hover {
	background: var(--color-primary-hover);
	color: #fff;
	transform: translateY(-1px);
}
.wm-btn--ghost {
	background: transparent;
	color: var(--color-text);
	border-color: var(--color-border);
}
.wm-btn--ghost:hover {
	background: var(--color-surface-alt);
	color: var(--color-text);
}
.wm-btn--sm { padding: 8px 14px; font-size: var(--fs-xs); }
.wm-btn--lg { padding: 16px 28px; font-size: var(--fs-md); }

/* Hero */
.wm-hero {
	position: relative;
	padding: var(--space-6) 0 var(--space-7);
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(37, 99, 235, 0.12), transparent 60%),
		radial-gradient(900px 500px at 0% 10%, rgba(245, 158, 11, 0.08), transparent 60%),
		var(--color-bg);
	overflow: hidden;
}
.wm-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
	align-items: center;
}
.wm-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-size: var(--fs-xs);
	font-weight: 600;
	border-radius: var(--radius-full);
	margin-bottom: var(--space-2);
}
.wm-hero__title {
	font-size: clamp(2rem, 5vw, var(--fs-4xl));
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: var(--space-3);
	letter-spacing: -0.02em;
}
.wm-hero__title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wm-hero__subtitle {
	font-size: var(--fs-md);
	color: var(--color-text-soft);
	max-width: 56ch;
	margin-bottom: var(--space-4);
}
.wm-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}
.wm-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-4);
	color: var(--color-muted);
	font-size: var(--fs-sm);
}
.wm-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.wm-hero__visual {
	position: relative;
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	padding: var(--space-3);
}
.wm-hero__visual::before {
	content: "";
	position: absolute;
	inset: -20px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(245, 158, 11, 0.10));
	z-index: -1;
	filter: blur(40px);
}

.wm-translate-card {
	display: grid;
	gap: var(--space-2);
}
.wm-translate-card__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-1);
	padding: var(--space-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}
.wm-translate-card__row + .wm-translate-card__row {
	margin-top: var(--space-2);
}
.wm-translate-card__lang {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--fs-xs);
	font-weight: 600;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.wm-translate-card__text {
	font-size: var(--fs-md);
	color: var(--color-text);
	min-height: 1.5em;
}
.wm-translate-card__bar {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	padding: var(--space-2);
	background: var(--color-primary-soft);
	border-radius: var(--radius-md);
	font-size: var(--fs-sm);
	color: var(--color-primary);
	font-weight: 500;
}

@media (min-width: 768px) {
	.wm-hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-6); }
	.wm-translate-card__row { grid-template-columns: 110px 1fr; align-items: center; }
}
@media (min-width: 1024px) {
	.wm-hero { padding: var(--space-7) 0 var(--space-7); }
}

/* Sections */
.wm-section {
	padding: var(--space-6) 0;
}
.wm-section--tight { padding: var(--space-5) 0; }
.wm-section--alt { background: var(--color-surface-alt); }
.wm-section--primary {
	background:
		linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
	color: #fff;
}
.wm-section--primary p,
.wm-section--primary .wm-eyebrow { color: rgba(255, 255, 255, 0.85); }

.wm-section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--space-5);
}
.wm-eyebrow {
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: var(--space-1);
}
.wm-section__title {
	font-size: clamp(1.75rem, 3.5vw, var(--fs-2xl));
	margin-bottom: var(--space-2);
}
.wm-section__lede {
	color: var(--color-text-soft);
	font-size: var(--fs-md);
}

/* Cards */
.wm-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	box-shadow: var(--shadow-xs);
	transition: transform var(--dur-base) var(--ease),
				box-shadow var(--dur-base) var(--ease),
				border-color var(--dur-base) var(--ease);
}
.wm-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(37, 99, 235, 0.30);
}
.wm-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--color-primary-soft);
	color: var(--color-primary);
	margin-bottom: var(--space-2);
}
.wm-card__title { font-size: var(--fs-lg); margin-bottom: var(--space-1); }
.wm-card__desc { color: var(--color-text-soft); margin-bottom: 0; }
.wm-card__list {
	list-style: none;
	padding: 0;
	margin: var(--space-2) 0 0;
	display: grid;
	gap: 6px;
	color: var(--color-text-soft);
	font-size: var(--fs-sm);
}
.wm-card__list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.wm-card__list li::before {
	content: "";
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	margin-top: 8px;
	border-radius: 50%;
	background: var(--color-primary);
}

.wm-grid {
	display: grid;
	gap: var(--space-3);
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.wm-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.wm-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.wm-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Languages / Markets */
.wm-languages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: var(--space-1);
}
.wm-lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	font-size: var(--fs-sm);
	color: var(--color-text-soft);
	transition: all var(--dur-fast) var(--ease);
}
.wm-lang::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
}
.wm-lang:hover { border-color: var(--color-primary); color: var(--color-text); }

/* Pricing */
.wm-pricing {
	display: grid;
	gap: var(--space-3);
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.wm-pricing { grid-template-columns: repeat(3, 1fr); }
}
.wm-plan {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-4);
	position: relative;
	display: flex;
	flex-direction: column;
}
.wm-plan--featured {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}
.wm-plan__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-primary);
	color: #fff;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-size: var(--fs-xs);
	font-weight: 600;
}
.wm-plan__name { font-size: var(--fs-md); margin-bottom: 4px; color: var(--color-muted); }
.wm-plan__price { font-size: var(--fs-2xl); font-weight: 800; margin-bottom: var(--space-2); }
.wm-plan__price small { font-size: var(--fs-sm); font-weight: 500; color: var(--color-muted); }
.wm-plan__list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-3);
	display: grid;
	gap: 8px;
	color: var(--color-text-soft);
	font-size: var(--fs-sm);
	flex: 1;
}
.wm-plan__list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

/* Forms / search */
.wm-search {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	padding: 6px 6px 6px 16px;
	max-width: 520px;
}
.wm-search input[type="search"] {
	flex: 1;
	border: 0;
	outline: none;
	background: transparent;
	font-family: inherit;
	font-size: var(--fs-sm);
	color: var(--color-text);
	min-width: 0;
}
.wm-search input[type="search"]::placeholder { color: var(--color-muted); }

/* Footer */
.wm-footer {
	background: var(--color-secondary);
	color: rgba(255, 255, 255, 0.78);
	padding: var(--space-6) 0 var(--space-3);
	margin-top: var(--space-6);
}
.wm-footer a { color: rgba(255, 255, 255, 0.78); }
.wm-footer a:hover { color: #fff; }
.wm-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
	margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
	.wm-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.wm-footer__brand p { color: rgba(255, 255, 255, 0.7); }
.wm-footer__title {
	color: #fff;
	font-size: var(--fs-sm);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-2);
}
.wm-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: var(--fs-sm); }
.wm-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-2);
	padding-top: var(--space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.6);
}

/* Posts */
.wm-post {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	margin-bottom: var(--space-3);
	transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.wm-post:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.wm-post__title { font-size: var(--fs-lg); margin-bottom: var(--space-1); }
.wm-post__title a { color: var(--color-text); }
.wm-post__title a:hover { color: var(--color-primary); }
.wm-post__meta {
	color: var(--color-muted);
	font-size: var(--fs-xs);
	margin-bottom: var(--space-2);
}

/* Accessibility helpers */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: var(--color-surface);
	border-radius: var(--radius-sm);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--color-primary);
	display: block;
	font-size: var(--fs-sm);
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: var(--space-2);
	background: var(--color-primary);
	color: #fff;
	padding: 10px 16px;
	border-radius: var(--radius-md);
	z-index: 9999;
	transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--space-2); color: #fff; }

/* Alignments */
.alignleft { float: left; margin-right: var(--space-2); margin-bottom: var(--space-2); }
.alignright { float: right; margin-left: var(--space-2); margin-bottom: var(--space-2); }
.aligncenter { clear: both; display: block; margin: 0 auto var(--space-2); }

/* Comments */
.comments-area { margin-top: var(--space-5); }
.comment-list { list-style: none; padding: 0; margin: 0; }
.bypostauthor { display: block; }

/* Widgets */
.widget { margin-bottom: var(--space-3); }
.widget select { max-width: 100%; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* Prevent horizontal scroll */
html, body { overflow-x: hidden; }

/* Utilities */
.wm-text-center { text-align: center; }
.wm-mt-4 { margin-top: var(--space-4); }
.wm-mt-5 { margin-top: var(--space-5); }
.wm-hidden-mobile { display: none; }
@media (min-width: 768px) { .wm-hidden-mobile { display: inline-flex; } }
