/* ==========================================================================
   WebRex Theme — Main Stylesheet
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   Foundation Imports
   -------------------------------------------------------------------------- */

@import 'src/_variables.css';
@import 'src/_reset.css';
@import 'src/_typography.css';
@import 'src/_layout.css';
@import 'src/_buttons.css';
@import 'src/_forms.css';
@import 'src/_utilities.css';
@import 'src/_animations.css';
@import 'src/_geo.css';


/* ==========================================================================
   SITE HEADER
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header — Default (Black Background)
   -------------------------------------------------------------------------- */

.wrx-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--wrx-z-sticky);
	background-color: var(--wrx-color-primary);
	transition: all var(--wrx-transition-base);
}

.wrx-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--wrx-container-wide);
	margin: 0 auto;
	padding: 0 var(--wrx-container-padding);
	height: 80px;
	transition: height var(--wrx-transition-base);
}

.wrx-header.is-scrolled .wrx-header__inner {
	height: 64px;
}

.wrx-header.is-scrolled {
	box-shadow: var(--wrx-shadow-lg);
}

/* Logo — shared classes (matches documentation style) */
.wrx-logo-bracket {
	color: #2563EB;
}

.wrx-logo-slash {
	color: #3B82F6;
}

/* Header logo */
.wrx-header__logo {
	flex-shrink: 0;
	z-index: calc(var(--wrx-z-sticky) + 1);
}

.wrx-header__logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.wrx-header__logo img {
	max-height: 40px;
	width: auto;
}

.wrx-header__text-logo {
	flex-shrink: 0;
}

.wrx-header__site-link {
	text-decoration: none;
}

.wrx-header__site-title {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	display: inline-block;
}

.wrx-header__site-link:hover .wrx-header__site-title {
	opacity: 0.85;
}

.wrx-header__tagline {
	display: none;
}

/* Footer logo */
.wrx-footer__logo-link {
	text-decoration: none;
}

.wrx-footer__logo-text {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	display: inline-block;
}

/* Mobile nav logo */
.wrx-mobile-nav__logo-link {
	text-decoration: none;
}

.wrx-mobile-nav__logo-text {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

/* Navigation */
.wrx-header__nav {
	display: flex;
	align-items: center;
}

.wrx-header__menu,
.wrx-nav__list {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-xl);
	list-style: none;
	margin: 0;
	padding: 0;
}

.wrx-header__menu li,
.wrx-nav__list li {
	position: relative;
}

.wrx-header__menu > li > a,
.wrx-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	padding: var(--wrx-space-sm) 0;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-background);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wide);
	transition: color var(--wrx-transition-fast);
	position: relative;
}

.wrx-header__menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--wrx-color-accent);
	transition: width var(--wrx-transition-base);
}

.wrx-header__menu > li > a:hover::after,
.wrx-header__menu > li.current-menu-item > a::after,
.wrx-header__menu > li.current_page_item > a::after {
	width: 100%;
}

.wrx-header__menu > li > a:hover,
.wrx-header__menu > li.current-menu-item > a,
.wrx-header__menu > li.current_page_item > a {
	color: var(--wrx-color-accent);
}

/* Dropdown parent positioning */
.wrx-header__menu li,
.wrx-nav__list li {
	position: relative;
}

/* Dropdown submenu */
.wrx-header__menu .sub-menu,
.wrx-nav__list .sub-menu,
.wrx-nav__list .wrx-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-md);
	box-shadow: var(--wrx-shadow-xl);
	padding: var(--wrx-space-sm) 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--wrx-transition-base);
	z-index: var(--wrx-z-dropdown);
}

.wrx-header__menu li:hover > .sub-menu,
.wrx-nav__list li:hover > .sub-menu,
.wrx-nav__list li:hover > .wrx-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.wrx-header__menu .sub-menu li a,
.wrx-nav__list .sub-menu li a,
.wrx-nav__list .wrx-nav__dropdown li a {
	display: block;
	padding: var(--wrx-space-sm) var(--wrx-space-lg);
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
	text-transform: none;
	letter-spacing: normal;
}

.wrx-header__menu .sub-menu li a:hover,
.wrx-nav__list .sub-menu li a:hover,
.wrx-nav__list .wrx-nav__dropdown li a:hover {
	background-color: var(--wrx-color-background-alt);
	color: var(--wrx-color-accent);
	padding-left: calc(var(--wrx-space-lg) + 4px);
}

/* Nested submenu */
.wrx-header__menu .sub-menu .sub-menu,
.wrx-nav__list .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

/* Header CTA button */
.wrx-header__cta {
	margin-left: var(--wrx-space-xl);
}

.wrx-header__cta .wrx-btn {
	padding: 0.5rem 1.25rem;
	font-size: var(--wrx-font-size-sm);
}

/* --------------------------------------------------------------------------
   Header — Transparent Overlay
   -------------------------------------------------------------------------- */

.wrx-header--transparent {
	background-color: transparent;
}

.wrx-header--transparent.is-scrolled {
	background-color: var(--wrx-color-primary);
}

/* --------------------------------------------------------------------------
   Header — Centered Logo
   -------------------------------------------------------------------------- */

.wrx-header--centered .wrx-header__inner {
	flex-wrap: wrap;
	justify-content: center;
	height: auto;
	padding-top: var(--wrx-space-md);
	padding-bottom: 0;
}

.wrx-header--centered .wrx-header__logo {
	width: 100%;
	text-align: center;
	margin-bottom: var(--wrx-space-md);
}

.wrx-header--centered .wrx-header__logo a {
	justify-content: center;
}

.wrx-header--centered .wrx-header__nav {
	width: 100%;
	justify-content: center;
}

.wrx-header--centered .wrx-header__menu {
	justify-content: center;
}

.wrx-header--centered.is-scrolled .wrx-header__inner {
	flex-wrap: nowrap;
	justify-content: space-between;
	height: 64px;
	padding-top: 0;
}

.wrx-header--centered.is-scrolled .wrx-header__logo {
	width: auto;
	margin-bottom: 0;
}

.wrx-header--centered.is-scrolled .wrx-header__nav {
	width: auto;
}

/* Header spacer to compensate for fixed header */
.wrx-header-spacer {
	height: 80px;
}

.wrx-header--transparent + .wrx-header-spacer {
	height: 0;
}


/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.wrx-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: calc(var(--wrx-z-overlay) + 1);
	padding: 0;
}

.wrx-mobile-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--wrx-color-background);
	transition: all var(--wrx-transition-base);
	border-radius: 2px;
}

.wrx-mobile-toggle.is-active .wrx-mobile-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.wrx-mobile-toggle.is-active .wrx-mobile-toggle__bar:nth-child(2) {
	opacity: 0;
}

.wrx-mobile-toggle.is-active .wrx-mobile-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Off-canvas panel */
.wrx-mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background-color: var(--wrx-color-primary);
	z-index: var(--wrx-z-overlay);
	padding: 100px var(--wrx-space-2xl) var(--wrx-space-2xl);
	overflow-y: auto;
	transition: right var(--wrx-transition-slow);
}

.wrx-mobile-nav.is-open {
	right: 0;
}

/* Overlay behind mobile nav */
.wrx-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: calc(var(--wrx-z-overlay) - 1);
	opacity: 0;
	visibility: hidden;
	transition: all var(--wrx-transition-base);
}

.wrx-mobile-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Mobile menu items */
.wrx-mobile-nav__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrx-mobile-nav__menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrx-mobile-nav__menu li a {
	display: block;
	padding: var(--wrx-space-md) 0;
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-background);
	text-decoration: none;
	transition: color var(--wrx-transition-fast);
}

.wrx-mobile-nav__menu li a:hover {
	color: var(--wrx-color-accent);
}

.wrx-mobile-nav__menu .sub-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: var(--wrx-space-lg);
}

.wrx-mobile-nav__menu .sub-menu li a {
	font-size: var(--wrx-font-size-base);
	color: rgba(255, 255, 255, 0.7);
	padding: var(--wrx-space-sm) 0;
}

.wrx-mobile-nav__menu .sub-menu li a:hover {
	color: var(--wrx-color-accent);
}

/* Mobile dropdown toggle */
.wrx-mobile-nav__dropdown-toggle {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.5);
	padding: var(--wrx-space-sm);
	cursor: pointer;
	transition: transform var(--wrx-transition-fast);
}

.wrx-mobile-nav__dropdown-toggle.is-open {
	transform: rotate(180deg);
}

/* Mobile CTA */
.wrx-mobile-nav__cta {
	margin-top: var(--wrx-space-2xl);
}

.wrx-mobile-nav__cta .wrx-btn {
	width: 100%;
	justify-content: center;
}

/* Mobile contact info */
.wrx-mobile-nav__contact {
	margin-top: var(--wrx-space-2xl);
	padding-top: var(--wrx-space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wrx-mobile-nav__contact a {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-sm);
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--wrx-font-size-sm);
	margin-bottom: var(--wrx-space-sm);
	text-decoration: none;
}

.wrx-mobile-nav__contact a:hover {
	color: var(--wrx-color-accent);
}

/* Body lock when mobile nav is open */
body.mobile-nav-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.wrx-mobile-toggle {
		display: flex;
	}

	.wrx-header__nav {
		display: none;
	}

	.wrx-header__cta {
		display: none;
	}
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.wrx-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background-color: var(--wrx-color-primary);
	overflow: hidden;
}

.wrx-hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--wrx-z-base);
}

.wrx-hero__background img,
.wrx-hero__background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrx-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 2;
}

.wrx-hero__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: var(--wrx-container-narrow);
	padding: 0 var(--wrx-container-padding);
}

.wrx-hero__label,
.wrx-hero__subtitle {
	display: inline-block;
	font-size: 1.15rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #60a5fa;
	margin-bottom: var(--wrx-space-lg);
	animation: wrx-fade-in-down 0.8s ease 0.2s both;
	border: 1px solid rgba(96, 165, 250, 0.4);
	padding: 0.4em 1.2em;
	border-radius: 50px;
}

.wrx-hero__title {
	font-size: clamp(2rem, 6vw, 4.5rem);
	font-weight: var(--wrx-font-weight-extrabold);
	line-height: var(--wrx-line-height-tight);
	color: var(--wrx-color-background);
	margin-bottom: var(--wrx-space-lg);
	animation: wrx-fade-in-up 0.8s ease 0.4s both;
}

.wrx-hero__title-accent {
	color: var(--wrx-color-accent);
}

/* Typing cursor effect */
.wrx-hero__typing,
.wrx-hero__typed {
	color: var(--wrx-color-accent);
}

.wrx-hero__cursor {
	display: inline-block;
	width: 3px;
	background-color: var(--wrx-color-accent);
	margin-left: 2px;
	animation: wrx-typing-cursor 0.8s step-end infinite;
}

.wrx-hero__typing {
	border-right: 3px solid var(--wrx-color-accent);
	animation: wrx-typing-cursor 0.8s step-end infinite;
	padding-right: 4px;
}

.wrx-hero__description {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: var(--wrx-line-height-relaxed);
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--wrx-space-2xl);
	animation: wrx-fade-in-up 0.8s ease 0.6s both;
}

.wrx-hero__actions {
	display: flex;
	justify-content: center;
	gap: var(--wrx-space-md);
	flex-wrap: wrap;
	animation: wrx-fade-in-up 0.8s ease 0.8s both;
}

/* Hero scroll indicator */
.wrx-hero__scroll,
.wrx-hero__scroll-down {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	animation: wrx-bounce 2s ease infinite;
	cursor: pointer;
	transition: color 0.3s ease;
}

.wrx-hero__scroll:hover,
.wrx-hero__scroll-down:hover {
	color: #fff;
}


.wrx-hero__scroll-mouse {
	display: block;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 13px;
	position: relative;
	transition: border-color 0.3s ease;
}

.wrx-hero__scroll-down:hover .wrx-hero__scroll-mouse {
	border-color: rgba(255, 255, 255, 0.8);
}

.wrx-hero__scroll-wheel {
	display: block;
	width: 4px;
	height: 8px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: wrx-scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes wrx-scroll-wheel {
	0% { opacity: 1; top: 8px; }
	100% { opacity: 0; top: 22px; }
}

.wrx-hero__scroll-icon {
	width: 30px;
	height: 30px;
	color: inherit;
}

/* Hero particles / decorative background */
.wrx-hero__particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}


/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.wrx-services {
	background-color: var(--wrx-color-background);
}

.wrx-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--wrx-space-xl);
}

/* Service Card */
.wrx-service-card {
	text-align: center;
	padding: var(--wrx-space-2xl) var(--wrx-space-lg);
	border-radius: var(--wrx-radius-lg);
	background-color: var(--wrx-color-background);
	border: 1px solid var(--wrx-color-border);
	transition: all var(--wrx-transition-base);
	position: relative;
	overflow: hidden;
}

.wrx-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--wrx-color-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--wrx-transition-base);
}

.wrx-service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--wrx-shadow-xl);
	border-color: transparent;
}

.wrx-service-card:hover::before {
	transform: scaleX(1);
}

.wrx-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: var(--wrx-radius-lg);
	background-color: var(--wrx-color-accent-light);
	color: var(--wrx-color-accent);
	font-size: var(--wrx-font-size-2xl);
	margin-bottom: var(--wrx-space-lg);
	transition: all var(--wrx-transition-base);
}

.wrx-service-card:hover .wrx-service-card__icon {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	transform: scale(1.1);
}

.wrx-service-card__icon img,
.wrx-service-card__icon svg {
	width: 32px;
	height: 32px;
}

.wrx-service-card__title {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-service-card__description {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
	margin-bottom: var(--wrx-space-md);
}

.wrx-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	color: var(--wrx-color-accent);
	text-decoration: none;
	transition: gap var(--wrx-transition-fast);
}

.wrx-service-card__link:hover {
	gap: var(--wrx-space-sm);
	text-decoration: none;
}

.wrx-service-card__link::after {
	content: '\2192';
}


/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */

.wrx-portfolio {
	background-color: var(--wrx-color-background-alt);
}

/* Filter bar */
.wrx-portfolio__filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-2xl);
}

.wrx-portfolio__filter-btn {
	padding: 0.5rem 1.25rem;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-text-light);
	background-color: transparent;
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-full);
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
}

.wrx-portfolio__filter-btn:hover,
.wrx-portfolio__filter-btn.is-active {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}

/* Portfolio grid (masonry-like) */
.wrx-portfolio__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wrx-space-lg);
}

.wrx-portfolio__grid--masonry {
	grid-auto-rows: 280px;
}

.wrx-portfolio__grid--masonry .wrx-portfolio-card:nth-child(4n+1) {
	grid-row: span 2;
}

/* Portfolio Card */
.wrx-portfolio-card {
	position: relative;
	border-radius: var(--wrx-radius-md);
	overflow: hidden;
	cursor: pointer;
}

.wrx-portfolio-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wrx-transition-slow);
}

.wrx-portfolio-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--wrx-space-lg);
	opacity: 0;
	transition: opacity var(--wrx-transition-base);
}

.wrx-portfolio-card:hover .wrx-portfolio-card__image {
	transform: scale(1.08);
}

.wrx-portfolio-card:hover .wrx-portfolio-card__overlay {
	opacity: 1;
}

.wrx-portfolio-card__category {
	font-size: var(--wrx-font-size-xs);
	font-weight: var(--wrx-font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wider);
	color: var(--wrx-color-accent);
	margin-bottom: var(--wrx-space-xs);
}

.wrx-portfolio-card__title {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-background);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-portfolio-card__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

/* Portfolio view icon */
.wrx-portfolio-card__view {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-full);
	opacity: 0;
	transition: all var(--wrx-transition-base);
	z-index: 3;
}

.wrx-portfolio-card:hover .wrx-portfolio-card__view {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* Portfolio item hide/show for filtering */
.wrx-portfolio-card[data-hidden='true'] {
	display: none;
}


/* ==========================================================================
   STATS / COUNTERS SECTION
   ========================================================================== */

.wrx-stats {
	background-color: var(--wrx-color-primary);
	color: var(--wrx-color-background);
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--wrx-space-xl);
}

.wrx-stats__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
}

.wrx-stats__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrx-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--wrx-space-xl);
	position: relative;
	z-index: 2;
}

.wrx-stat {
	text-align: center;
	padding: var(--wrx-space-lg);
}

.wrx-stat__number {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: var(--wrx-font-weight-extrabold);
	line-height: 1;
	color: var(--wrx-color-accent);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-stat__suffix {
	font-size: 0.6em;
}

.wrx-stat__label {
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wider);
	color: rgba(255, 255, 255, 0.7);
}

.wrx-stat__divider {
	width: 40px;
	height: 2px;
	background-color: var(--wrx-color-accent);
	margin: var(--wrx-space-sm) auto;
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.wrx-testimonials {
	background-color: var(--wrx-color-background);
	overflow: hidden;
}

.wrx-testimonials__carousel {
	position: relative;
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
}

.wrx-testimonials__track {
	display: flex;
	transition: transform var(--wrx-transition-slow);
}

.wrx-testimonials__slide {
	flex: 0 0 100%;
	min-width: 0;
	padding: 0 var(--wrx-space-md);
}

/* Testimonial Card */
.wrx-testimonial-card {
	text-align: center;
	padding: var(--wrx-space-2xl);
}

.wrx-testimonial-card__quote-icon {
	font-size: var(--wrx-font-size-4xl);
	color: var(--wrx-color-accent-light);
	line-height: 1;
	margin-bottom: var(--wrx-space-md);
}

.wrx-testimonial-card__text {
	font-size: var(--wrx-font-size-lg);
	line-height: var(--wrx-line-height-relaxed);
	color: var(--wrx-color-text);
	font-style: italic;
	margin-bottom: var(--wrx-space-xl);
}

.wrx-testimonial-card__author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-md);
}

.wrx-testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: var(--wrx-radius-full);
	object-fit: cover;
	border: 3px solid var(--wrx-color-accent-light);
}

.wrx-testimonial-card__author-info {
	text-align: left;
}

.wrx-testimonial-card__author-name {
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-text);
	margin-bottom: 2px;
}

.wrx-testimonial-card__author-role {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-testimonial-card__stars {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: var(--wrx-space-md);
	color: #F59E0B;
	font-size: var(--wrx-font-size-lg);
}

/* Carousel navigation */
.wrx-testimonials__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-lg);
	margin-top: var(--wrx-space-xl);
}

.wrx-testimonials__arrow {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--wrx-radius-full);
	border: 1px solid var(--wrx-color-border);
	background-color: var(--wrx-color-background);
	color: var(--wrx-color-text);
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
}

.wrx-testimonials__arrow:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}

/* Dots */
.wrx-testimonials__dots {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-sm);
}

.wrx-testimonials__dot {
	width: 10px;
	height: 10px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-border);
	border: none;
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
	padding: 0;
}

.wrx-testimonials__dot.is-active {
	background-color: var(--wrx-color-accent);
	width: 28px;
	border-radius: 5px;
}


/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.wrx-team {
	background-color: var(--wrx-color-background-alt);
}

.wrx-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--wrx-space-xl);
}

/* Team Card */
.wrx-team-card {
	text-align: center;
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
	transition: all var(--wrx-transition-base);
}

.wrx-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--wrx-shadow-xl);
}

.wrx-team-card__image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.wrx-team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wrx-transition-slow);
}

.wrx-team-card:hover .wrx-team-card__image {
	transform: scale(1.05);
}

/* Social reveal on hover */
.wrx-team-card__social {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: var(--wrx-space-sm);
	padding: var(--wrx-space-md);
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	transform: translateY(100%);
	transition: transform var(--wrx-transition-base);
}

.wrx-team-card:hover .wrx-team-card__social {
	transform: translateY(0);
}

.wrx-team-card__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-background);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
	font-size: var(--wrx-font-size-sm);
}

.wrx-team-card__social a:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

.wrx-team-card__info {
	padding: var(--wrx-space-lg);
}

.wrx-team-card__name {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-xs);
}

.wrx-team-card__role {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-accent);
	font-weight: var(--wrx-font-weight-medium);
}


/* ==========================================================================
   BLOG SECTION
   ========================================================================== */

.wrx-blog-section {
	background-color: var(--wrx-color-background);
}

.wrx-blog-section__grid,
.wrx-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wrx-space-xl);
}

/* Blog Card */
.wrx-blog-card {
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
	border: 1px solid var(--wrx-color-border);
	transition: all var(--wrx-transition-base);
}

.wrx-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--wrx-shadow-lg);
	border-color: transparent;
}

.wrx-blog-card__image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.wrx-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wrx-transition-slow);
}

.wrx-blog-card:hover .wrx-blog-card__image {
	transform: scale(1.05);
}

.wrx-blog-card__category {
	position: absolute;
	top: var(--wrx-space-md);
	left: var(--wrx-space-md);
	display: inline-block;
	padding: 4px 12px;
	font-size: var(--wrx-font-size-xs);
	font-weight: var(--wrx-font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wide);
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-sm);
	text-decoration: none;
}

.wrx-blog-card__content {
	padding: var(--wrx-space-lg);
}

.wrx-blog-card__meta {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-md);
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-blog-card__meta-divider {
	width: 3px;
	height: 3px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-text-light);
}

.wrx-blog-card__title {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	line-height: var(--wrx-line-height-snug);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-blog-card__title a {
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: color var(--wrx-transition-fast);
}

.wrx-blog-card__title a:hover {
	color: var(--wrx-color-accent);
}

.wrx-blog-card__excerpt {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
	margin-bottom: var(--wrx-space-md);
}

.wrx-blog-card__read-more {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	color: var(--wrx-color-accent);
	text-decoration: none;
	transition: gap var(--wrx-transition-fast);
}

.wrx-blog-card__read-more:hover {
	gap: var(--wrx-space-sm);
	text-decoration: none;
}

.wrx-blog-card__read-more::after {
	content: '\2192';
}


/* ==========================================================================
   CLIENTS / LOGOS SECTION
   ========================================================================== */

.wrx-clients {
	background-color: var(--wrx-color-background-alt);
	padding-top: var(--wrx-space-2xl);
	padding-bottom: var(--wrx-space-2xl);
}

.wrx-clients__label {
	text-align: center;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-widest);
	color: var(--wrx-color-text-light);
	margin-bottom: var(--wrx-space-xl);
}

.wrx-clients__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--wrx-space-2xl);
}

.wrx-clients__logo {
	max-height: 40px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all var(--wrx-transition-base);
}

.wrx-clients__logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Scrolling logo bar variant */
.wrx-clients__scroll-track {
	display: flex;
	gap: var(--wrx-space-3xl);
	animation: wrx-scroll-logos 30s linear infinite;
	width: max-content;
}

@keyframes wrx-scroll-logos {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.wrx-contact {
	background-color: var(--wrx-color-background);
}

.wrx-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wrx-space-3xl);
	align-items: start;
}

/* Contact info column */
.wrx-contact__info {
	padding-right: var(--wrx-space-xl);
}

.wrx-contact__info-title {
	font-size: var(--wrx-font-size-2xl);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-md);
}

.wrx-contact__info-description {
	font-size: var(--wrx-font-size-base);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
	margin-bottom: var(--wrx-space-2xl);
}

.wrx-contact__details {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--wrx-space-2xl);
}

.wrx-contact__detail {
	display: flex;
	align-items: flex-start;
	gap: var(--wrx-space-md);
	padding: var(--wrx-space-md) 0;
	border-bottom: 1px solid var(--wrx-color-border);
}

.wrx-contact__detail:last-child {
	border-bottom: none;
}

.wrx-contact__detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--wrx-radius-md);
	background-color: var(--wrx-color-accent-light);
	color: var(--wrx-color-accent);
	flex-shrink: 0;
}

.wrx-contact__detail-content h4 {
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	margin-bottom: 2px;
}

.wrx-contact__detail-content p {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	margin-bottom: 0;
}

.wrx-contact__detail-content a {
	color: var(--wrx-color-text-light);
	text-decoration: none;
}

.wrx-contact__detail-content a:hover {
	color: var(--wrx-color-accent);
}

/* Contact social links */
.wrx-contact__social {
	display: flex;
	gap: var(--wrx-space-sm);
}

.wrx-contact__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wrx-radius-full);
	border: 1px solid var(--wrx-color-border);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-contact__social a:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}

/* Contact form column */
.wrx-contact__form-wrapper {
	background-color: var(--wrx-color-background);
	padding: var(--wrx-space-2xl);
	border-radius: var(--wrx-radius-lg);
	box-shadow: var(--wrx-shadow-lg);
	border: 1px solid var(--wrx-color-border);
}

.wrx-contact__form-title {
	font-size: var(--wrx-font-size-xl);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-lg);
}

/* Map embed */
.wrx-contact__map {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
	margin-top: var(--wrx-space-xl);
	border: 1px solid var(--wrx-color-border);
}

.wrx-contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}


/* ==========================================================================
   GENERAL CARD STYLES
   ========================================================================== */

.wrx-card {
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-lg);
	border: 1px solid var(--wrx-color-border);
	overflow: hidden;
	transition: all var(--wrx-transition-base);
}

.wrx-card:hover {
	box-shadow: var(--wrx-shadow-lg);
}

.wrx-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.wrx-card__body {
	padding: var(--wrx-space-lg);
}

.wrx-card__title {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-card__text {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
}

.wrx-card__footer {
	padding: var(--wrx-space-md) var(--wrx-space-lg);
	border-top: 1px solid var(--wrx-color-border);
}


/* ==========================================================================
   SOCIAL LINKS COMPONENT
   ========================================================================== */

.wrx-social {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wrx-social li {
	margin: 0;
	padding: 0;
}

.wrx-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	text-decoration: none;
}

.wrx-social a:hover {
	color: #fff;
	border-color: var(--wrx-color-accent);
	background: rgba(37, 99, 235, 0.15);
}

.wrx-social svg {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

/* --------------------------------------------------------------------------
   Footer — Default (4 Column)
   -------------------------------------------------------------------------- */

.wrx-footer {
	background-color: var(--wrx-color-primary);
	color: var(--wrx-color-background);
}

.wrx-footer a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color var(--wrx-transition-fast);
}

.wrx-footer a:hover {
	color: var(--wrx-color-accent);
	text-decoration: none;
}

.wrx-footer__main {
	padding-top: var(--wrx-space-section);
	padding-bottom: var(--wrx-space-2xl);
}

.wrx-footer__grid,
.wrx-footer__columns {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: var(--wrx-space-2xl);
}

/* Footer brand column */
.wrx-footer__brand {
	padding-right: var(--wrx-space-xl);
}

.wrx-footer__logo {
	margin-bottom: var(--wrx-space-lg);
}

.wrx-footer__logo img {
	max-height: 36px;
	width: auto;
}

/* footer logo-text already defined in shared logo section above */

.wrx-footer__description {
	font-size: var(--wrx-font-size-sm);
	line-height: var(--wrx-line-height-relaxed);
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: var(--wrx-space-lg);
}

.wrx-footer__social {
	display: flex;
	gap: var(--wrx-space-sm);
}

.wrx-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--wrx-radius-full);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.7);
	transition: all var(--wrx-transition-fast);
}

.wrx-footer__social a:hover {
	background-color: var(--wrx-color-accent);
	border-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

/* Footer widget columns */
.wrx-footer-widget__title {
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-background);
	margin-bottom: var(--wrx-space-lg);
	padding-bottom: var(--wrx-space-sm);
	position: relative;
}

.wrx-footer-widget__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--wrx-color-accent);
}

.wrx-footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrx-footer-widget ul li {
	margin-bottom: var(--wrx-space-sm);
}

.wrx-footer-widget ul li a {
	font-size: var(--wrx-font-size-sm);
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
}

.wrx-footer-widget ul li a::before {
	content: '';
	width: 6px;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	transition: all var(--wrx-transition-fast);
}

.wrx-footer-widget ul li a:hover::before {
	width: 12px;
	background-color: var(--wrx-color-accent);
}

/* Footer contact info */
.wrx-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-md);
	font-size: var(--wrx-font-size-sm);
	color: rgba(255, 255, 255, 0.6);
}

.wrx-footer__contact-icon {
	flex-shrink: 0;
	color: var(--wrx-color-accent);
	margin-top: 2px;
}

/* Footer bottom bar */
.wrx-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--wrx-space-lg) 0;
}

.wrx-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--wrx-space-md);
}

.wrx-footer__copyright {
	font-size: var(--wrx-font-size-sm);
	color: rgba(255, 255, 255, 0.5);
}

.wrx-footer__bottom-menu {
	display: flex;
	list-style: none;
	gap: var(--wrx-space-lg);
	margin: 0;
	padding: 0;
}

.wrx-footer__bottom-menu li a {
	font-size: var(--wrx-font-size-sm);
	color: rgba(255, 255, 255, 0.5);
}

.wrx-footer__bottom-menu li a:hover {
	color: var(--wrx-color-accent);
}

/* --------------------------------------------------------------------------
   Footer — Minimal Variant
   -------------------------------------------------------------------------- */

.wrx-footer--minimal .wrx-footer__main {
	padding-top: var(--wrx-space-2xl);
	padding-bottom: var(--wrx-space-lg);
}

.wrx-footer--minimal .wrx-footer__grid {
	grid-template-columns: 1fr;
	text-align: center;
}

.wrx-footer--minimal .wrx-footer__brand {
	padding-right: 0;
}

.wrx-footer--minimal .wrx-footer__social {
	justify-content: center;
}

.wrx-footer--minimal .wrx-footer__bottom-inner {
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Footer — CTA Variant
   -------------------------------------------------------------------------- */

.wrx-footer-cta {
	background-color: var(--wrx-color-accent);
	padding: var(--wrx-space-section) 0;
	text-align: center;
}

.wrx-footer-cta__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-background);
	margin-bottom: var(--wrx-space-md);
}

.wrx-footer-cta__description {
	font-size: var(--wrx-font-size-lg);
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: var(--wrx-space-xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}


/* ==========================================================================
   SIDEBAR & WIDGETS
   ========================================================================== */

.wrx-sidebar {
	position: sticky;
	top: 100px;
}

.wrx-widget {
	margin-bottom: var(--wrx-space-xl);
	padding: var(--wrx-space-lg);
	background-color: var(--wrx-color-background);
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-md);
}

.wrx-widget:last-child {
	margin-bottom: 0;
}

.wrx-widget__title {
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-bold);
	padding-bottom: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-md);
	border-bottom: 2px solid var(--wrx-color-accent);
}

.wrx-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrx-widget ul li {
	padding: var(--wrx-space-sm) 0;
	border-bottom: 1px solid var(--wrx-color-border);
}

.wrx-widget ul li:last-child {
	border-bottom: none;
}

.wrx-widget ul li a {
	color: var(--wrx-color-text);
	text-decoration: none;
	font-size: var(--wrx-font-size-sm);
	transition: color var(--wrx-transition-fast);
}

.wrx-widget ul li a:hover {
	color: var(--wrx-color-accent);
}

/* Tag cloud widget */
.wrx-widget .tagcloud a {
	display: inline-block;
	padding: 4px 10px;
	margin: 0 4px 6px 0;
	font-size: var(--wrx-font-size-xs) !important;
	background-color: var(--wrx-color-background-alt);
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-sm);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-widget .tagcloud a:hover {
	background-color: var(--wrx-color-accent);
	border-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

/* Calendar widget */
.wrx-widget .calendar_wrap table {
	width: 100%;
}

.wrx-widget .calendar_wrap th,
.wrx-widget .calendar_wrap td {
	text-align: center;
	padding: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
}

.wrx-widget .calendar_wrap th {
	font-weight: var(--wrx-font-weight-semibold);
}

/* Search widget */
.wrx-widget .search-form {
	display: flex;
}

.wrx-widget .search-form .search-field {
	flex: 1;
	border-radius: var(--wrx-radius-sm) 0 0 var(--wrx-radius-sm);
}

.wrx-widget .search-form .search-submit {
	border-radius: 0 var(--wrx-radius-sm) var(--wrx-radius-sm) 0;
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border: 1px solid var(--wrx-color-accent);
	padding: 0.5rem 1rem;
	cursor: pointer;
}


/* ==========================================================================
   SINGLE POST / PAGE
   ========================================================================== */

.wrx-single-post {
	padding-top: var(--wrx-space-3xl);
	padding-bottom: var(--wrx-space-3xl);
}

/* Post header */
.wrx-entry-header {
	text-align: center;
	max-width: var(--wrx-container-narrow);
	margin: 0 auto var(--wrx-space-2xl);
}

.wrx-entry-header__categories {
	display: flex;
	justify-content: center;
	gap: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-md);
}

.wrx-entry-header__category {
	display: inline-block;
	padding: 4px 12px;
	font-size: var(--wrx-font-size-xs);
	font-weight: var(--wrx-font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wide);
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-sm);
	text-decoration: none;
}

.wrx-entry-header__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: var(--wrx-font-weight-bold);
	line-height: var(--wrx-line-height-tight);
	margin-bottom: var(--wrx-space-lg);
}

.wrx-entry-header__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--wrx-space-md);
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-entry-header__meta a {
	color: var(--wrx-color-text-light);
	text-decoration: none;
}

.wrx-entry-header__meta a:hover {
	color: var(--wrx-color-accent);
}

.wrx-entry-header__meta-divider {
	width: 4px;
	height: 4px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-border);
}

/* Featured image */
.wrx-entry__thumbnail--single {
	margin-bottom: var(--wrx-space-2xl);
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
}

.wrx-entry__thumbnail-img {
	width: 100%;
	height: auto;
}

/* Single post template aliases (template uses .wrx-single__, CSS was .wrx-entry-header__) */
.wrx-single__header {
	text-align: center;
	max-width: var(--wrx-container-narrow);
	margin: 0 auto var(--wrx-space-2xl);
}

.wrx-single__title {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: var(--wrx-font-weight-bold);
	line-height: var(--wrx-line-height-tight);
	margin-bottom: var(--wrx-space-md);
	text-wrap: balance;
}

.wrx-single__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--wrx-space-md);
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-single__meta a {
	color: var(--wrx-color-text-light);
	text-decoration: none;
}

.wrx-single__meta a:hover {
	color: var(--wrx-color-accent);
}

.wrx-single__meta-sep {
	display: inline-flex;
	align-items: center;
	width: 4px;
	height: 4px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-border);
	overflow: hidden;
	text-indent: -9999px;
}

.wrx-single__date,
.wrx-single__author,
.wrx-single__categories,
.wrx-single__reading-time {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
}

.wrx-single__date svg,
.wrx-single__author svg,
.wrx-single__categories svg,
.wrx-single__reading-time svg {
	flex-shrink: 0;
	color: var(--wrx-color-text-lighter, #9ca3af);
}

.wrx-single__featured-image {
	margin-bottom: var(--wrx-space-2xl);
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
}

.wrx-single__hero-img {
	width: 100%;
	height: auto;
	display: block;
}

.wrx-single__content {
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
}

.wrx-single__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--wrx-space-sm);
	max-width: var(--wrx-container-narrow);
	margin: var(--wrx-space-xl) auto;
	padding-top: var(--wrx-space-lg);
	border-top: 1px solid var(--wrx-color-border);
}

.wrx-single__tags-label {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	color: var(--wrx-color-text-light);
}

.wrx-single__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wrx-space-xs);
}

.wrx-single__tag {
	display: inline-block;
	padding: 4px 10px;
	font-size: var(--wrx-font-size-xs);
	background: var(--wrx-color-surface);
	color: var(--wrx-color-text);
	border-radius: var(--wrx-radius-sm);
	text-decoration: none;
	transition: background var(--wrx-transition-fast), color var(--wrx-transition-fast);
}

.wrx-single__tag:hover {
	background: var(--wrx-color-accent);
	color: #fff;
}

/* Single post wrapper (template uses .wrx-single, CSS had .wrx-single-post) */
.wrx-single {
	padding-top: var(--wrx-space-3xl, 4rem);
	padding-bottom: var(--wrx-space-3xl, 4rem);
}

/* Single post layout */
.wrx-single__layout {
	display: grid;
	grid-template-columns: 1fr;
	max-width: var(--wrx-container-wide, 1200px);
	margin: 0 auto;
}

.wrx-single__main {
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
	width: 100%;
}

.wrx-single__article {
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
}

/* Post content */
.wrx-entry-content,
.entry-content {
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
	font-size: var(--wrx-font-size-lg);
	line-height: var(--wrx-line-height-relaxed);
}

.wrx-entry-content > *,
.entry-content > * {
	margin-bottom: var(--wrx-space-lg);
}

.wrx-entry-content > *:last-child,
.entry-content > *:last-child {
	margin-bottom: 0;
}

.wrx-entry-content img,
.entry-content img {
	border-radius: var(--wrx-radius-md);
}

.wrx-entry-content .wp-caption,
.entry-content .wp-caption {
	max-width: 100%;
}

.wrx-entry-content .wp-caption-text,
.entry-content .wp-caption-text {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	text-align: center;
	margin-top: var(--wrx-space-sm);
}

/* Wide/Full alignment support */
.wrx-entry-content .alignwide,
.entry-content .alignwide {
	max-width: var(--wrx-container);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.wrx-entry-content .alignfull,
.entry-content .alignfull {
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	width: 100vw;
}

/* Post footer / tags */
.wrx-entry-footer {
	max-width: var(--wrx-container-narrow);
	margin: var(--wrx-space-2xl) auto 0;
	padding-top: var(--wrx-space-lg);
	border-top: 1px solid var(--wrx-color-border);
	display: flex;
	flex-wrap: wrap;
	gap: var(--wrx-space-md);
	font-size: var(--wrx-font-size-sm);
}

.wrx-entry__cat-links,
.wrx-entry__tags-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--wrx-space-xs);
}

.wrx-entry__tags-links a {
	display: inline-block;
	padding: 3px 10px;
	background-color: var(--wrx-color-background-alt);
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-sm);
	font-size: var(--wrx-font-size-xs);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-entry__tags-links a:hover {
	background-color: var(--wrx-color-accent);
	border-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

/* Post author box */
.wrx-author-box {
	display: flex;
	gap: var(--wrx-space-lg);
	padding: var(--wrx-space-xl);
	background-color: var(--wrx-color-background-alt);
	border-radius: var(--wrx-radius-lg);
	margin: var(--wrx-space-2xl) auto;
	max-width: var(--wrx-container-narrow);
}

.wrx-author-box__avatar {
	width: 80px;
	height: 80px;
	border-radius: var(--wrx-radius-full);
	object-fit: cover;
	flex-shrink: 0;
}

.wrx-author-box__name {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-xs);
}

.wrx-author-box__bio {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
}

/* Post navigation */
.wrx-post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wrx-space-xl);
	max-width: var(--wrx-container-narrow);
	margin: var(--wrx-space-2xl) auto;
	padding-top: var(--wrx-space-xl);
	border-top: 1px solid var(--wrx-color-border);
}

.wrx-post-navigation__link {
	display: flex;
	flex-direction: column;
	gap: var(--wrx-space-xs);
	text-decoration: none;
}

.wrx-post-navigation__link--next {
	text-align: right;
}

.wrx-post-navigation__label {
	font-size: var(--wrx-font-size-xs);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wider);
	color: var(--wrx-color-text-light);
}

.wrx-post-navigation__title {
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-semibold);
	color: var(--wrx-color-text);
	transition: color var(--wrx-transition-fast);
}

.wrx-post-navigation__link:hover .wrx-post-navigation__title {
	color: var(--wrx-color-accent);
}

/* Share buttons (template uses .wrx-share) */
.wrx-share {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-md, 1rem);
	max-width: var(--wrx-container-narrow, 768px);
	margin: var(--wrx-space-xl, 2rem) auto;
	padding: var(--wrx-space-md, 1rem) 0;
	border-top: 1px solid var(--wrx-color-border, #e5e7eb);
}

.wrx-share__label {
	font-size: var(--wrx-font-size-sm, 0.875rem);
	font-weight: var(--wrx-font-weight-semibold, 600);
	color: var(--wrx-color-text-light, #6b7280);
	white-space: nowrap;
}

.wrx-share__buttons {
	display: flex;
	gap: var(--wrx-space-sm, 0.5rem);
}

.wrx-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--wrx-color-surface, #f3f4f6);
	color: var(--wrx-color-text, #111827);
	border: none;
	cursor: pointer;
	transition: background var(--wrx-transition-fast, 0.15s), color var(--wrx-transition-fast, 0.15s);
	text-decoration: none;
}

.wrx-share__btn:hover {
	background: var(--wrx-color-accent, #2563eb);
	color: #fff;
}

.wrx-share__btn--copied {
	background: #10b981;
	color: #fff;
}

/* Post navigation (template uses .wrx-post-nav, not .wrx-post-navigation) */
.wrx-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wrx-space-xl, 2rem);
	max-width: var(--wrx-container-narrow, 768px);
	margin: var(--wrx-space-2xl, 3rem) auto;
	padding-top: var(--wrx-space-xl, 2rem);
	border-top: 1px solid var(--wrx-color-border, #e5e7eb);
}

.wrx-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: var(--wrx-space-sm, 0.5rem);
	text-decoration: none;
	padding: var(--wrx-space-md, 1rem);
	border-radius: var(--wrx-radius-lg, 0.75rem);
	transition: background var(--wrx-transition-fast, 0.15s);
}

.wrx-post-nav__link:hover {
	background: var(--wrx-color-surface, #f3f4f6);
}

.wrx-post-nav__link--next {
	text-align: right;
	align-items: flex-end;
}

.wrx-post-nav__direction {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-xs, 0.25rem);
	font-size: var(--wrx-font-size-xs, 0.75rem);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wider, 0.05em);
	color: var(--wrx-color-text-light, #6b7280);
}

.wrx-post-nav__link--next .wrx-post-nav__direction {
	justify-content: flex-end;
}

.wrx-post-nav__content {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-sm, 0.5rem);
}

.wrx-post-nav__link--next .wrx-post-nav__content {
	justify-content: flex-end;
}

.wrx-post-nav__thumb {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: var(--wrx-radius-md, 0.5rem);
	overflow: hidden;
}

.wrx-post-nav__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrx-post-nav__title {
	font-size: var(--wrx-font-size-base, 1rem);
	font-weight: var(--wrx-font-weight-semibold, 600);
	color: var(--wrx-color-text, #111827);
	transition: color var(--wrx-transition-fast, 0.15s);
	line-height: 1.4;
}

.wrx-post-nav__link:hover .wrx-post-nav__title {
	color: var(--wrx-color-accent, #2563eb);
}

/* Related posts */
.wrx-related-posts {
	max-width: var(--wrx-container);
	margin: 0 auto;
	padding: var(--wrx-space-3xl) var(--wrx-container-padding);
	border-top: 1px solid var(--wrx-color-border);
}

.wrx-related-posts__title {
	font-size: var(--wrx-font-size-2xl);
	font-weight: var(--wrx-font-weight-bold);
	text-align: center;
	margin-bottom: var(--wrx-space-2xl);
}

.wrx-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wrx-space-xl);
}


/* ==========================================================================
   PAGE TEMPLATE (template uses .wrx-page__, CSS had .wrx-page-)
   ========================================================================== */

.wrx-page {
	padding-top: var(--wrx-space-3xl, 4rem);
	padding-bottom: var(--wrx-space-3xl, 4rem);
}

.wrx-page__article {
	max-width: var(--wrx-container-narrow, 800px);
	margin: 0 auto;
}

.wrx-page__header {
	text-align: center;
	margin-bottom: var(--wrx-space-2xl, 3rem);
}

.wrx-page__title {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: var(--wrx-font-weight-bold);
	line-height: var(--wrx-line-height-tight);
	margin-bottom: var(--wrx-space-md);
	text-wrap: balance;
}

.wrx-page__content {
	max-width: var(--wrx-container-narrow, 800px);
	margin: 0 auto;
	font-size: var(--wrx-font-size-lg, 1.25rem);
	line-height: var(--wrx-line-height-relaxed, 1.75);
}

/* ==========================================================================
   ARCHIVE / SEARCH RESULTS
   ========================================================================== */

.wrx-page-header {
	text-align: center;
	padding: var(--wrx-space-3xl) 0 var(--wrx-space-2xl);
	margin-bottom: var(--wrx-space-2xl);
	border-bottom: 1px solid var(--wrx-color-border);
}

.wrx-page-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-page-description {
	font-size: var(--wrx-font-size-lg);
	color: var(--wrx-color-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Archive title with prefix */
.wrx-archive-title__label {
	display: block;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wider);
	color: var(--wrx-color-accent);
	margin-bottom: var(--wrx-space-xs);
}

/* Search results header */
.wrx-search-header {
	text-align: center;
	padding: var(--wrx-space-3xl) 0 var(--wrx-space-2xl);
}

.wrx-search-header__form {
	max-width: 500px;
	margin: var(--wrx-space-lg) auto 0;
}

/* Search result count */
.wrx-search-results-count {
	text-align: center;
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	margin-bottom: var(--wrx-space-xl);
}

/* No results */
.wrx-no-results {
	text-align: center;
	padding: var(--wrx-space-3xl) 0;
}

.wrx-no-results__title {
	font-size: var(--wrx-font-size-2xl);
	margin-bottom: var(--wrx-space-md);
}

.wrx-no-results__text {
	color: var(--wrx-color-text-light);
	margin-bottom: var(--wrx-space-xl);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}


/* ==========================================================================
   404 PAGE
   ========================================================================== */

.wrx-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 60vh;
	padding: var(--wrx-space-3xl) var(--wrx-container-padding);
}

.wrx-404__number {
	font-size: clamp(6rem, 15vw, 12rem);
	font-weight: var(--wrx-font-weight-extrabold);
	line-height: 1;
	color: var(--wrx-color-accent-light);
	margin-bottom: var(--wrx-space-lg);
}

.wrx-404__title {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-md);
}

.wrx-404__text {
	font-size: var(--wrx-font-size-lg);
	color: var(--wrx-color-text-light);
	margin-bottom: var(--wrx-space-2xl);
	max-width: 500px;
}

.wrx-404__search {
	max-width: 400px;
	width: 100%;
	margin-bottom: var(--wrx-space-xl);
}


/* ==========================================================================
   COMMENTS
   ========================================================================== */

.wrx-comments {
	max-width: var(--wrx-container-narrow);
	margin: 0 auto;
	padding-top: var(--wrx-space-2xl);
}

.wrx-comments__title {
	font-size: var(--wrx-font-size-2xl);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-xl);
}

/* Comment list */
.wrx-comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrx-comment-list .comment {
	padding: var(--wrx-space-lg) 0;
	border-bottom: 1px solid var(--wrx-color-border);
}

.wrx-comment-list .comment:last-child {
	border-bottom: none;
}

.wrx-comment-list .children {
	list-style: none;
	padding-left: var(--wrx-space-2xl);
	margin: 0;
}

.wrx-comment__header {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-md);
	margin-bottom: var(--wrx-space-md);
}

.wrx-comment__avatar {
	width: 48px;
	height: 48px;
	border-radius: var(--wrx-radius-full);
	flex-shrink: 0;
}

.wrx-comment__avatar img {
	width: 100%;
	height: 100%;
	border-radius: var(--wrx-radius-full);
	object-fit: cover;
}

.wrx-comment__meta {
	display: flex;
	flex-direction: column;
}

.wrx-comment__author {
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-bold);
}

.wrx-comment__author a {
	color: var(--wrx-color-text);
	text-decoration: none;
}

.wrx-comment__author a:hover {
	color: var(--wrx-color-accent);
}

.wrx-comment__date {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-comment__date a {
	color: var(--wrx-color-text-light);
	text-decoration: none;
}

.wrx-comment__date a:hover {
	color: var(--wrx-color-accent);
}

.wrx-comment__body {
	font-size: var(--wrx-font-size-base);
	line-height: var(--wrx-line-height-relaxed);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-comment__body p {
	margin-bottom: var(--wrx-space-sm);
}

.wrx-comment__actions {
	display: flex;
	gap: var(--wrx-space-md);
}

.wrx-comment__actions a {
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-text-light);
	text-decoration: none;
	transition: color var(--wrx-transition-fast);
}

.wrx-comment__actions a:hover {
	color: var(--wrx-color-accent);
}

/* Awaiting moderation */
.wrx-comment--awaiting {
	background-color: var(--wrx-color-accent-light);
	padding: var(--wrx-space-md);
	border-radius: var(--wrx-radius-md);
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-accent-dark);
	margin-bottom: var(--wrx-space-md);
}

/* Comment navigation */
.wrx-comments__navigation {
	display: flex;
	justify-content: space-between;
	padding: var(--wrx-space-lg) 0;
	border-top: 1px solid var(--wrx-color-border);
	margin-top: var(--wrx-space-lg);
	font-size: var(--wrx-font-size-sm);
}

/* Comment respond form */
.wrx-comment-respond {
	padding-top: var(--wrx-space-2xl);
	margin-top: var(--wrx-space-xl);
	border-top: 1px solid var(--wrx-color-border);
}

.wrx-comment-respond__title {
	font-size: var(--wrx-font-size-xl);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-lg);
}

.wrx-comment-respond__title small {
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-normal);
	margin-left: var(--wrx-space-sm);
}

.wrx-comment-respond__title small a {
	color: var(--wrx-color-accent);
}

.wrx-comment-form {
	display: flex;
	flex-direction: column;
	gap: var(--wrx-space-lg);
}

.wrx-comment-form .comment-form-author,
.wrx-comment-form .comment-form-email,
.wrx-comment-form .comment-form-url {
	display: flex;
	flex-direction: column;
	gap: var(--wrx-space-xs);
}

.wrx-comment-form .comment-form-comment {
	display: flex;
	flex-direction: column;
	gap: var(--wrx-space-xs);
}

.wrx-comment-form .comment-notes {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-comment-form .required-field-message {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-comment-form .form-submit {
	margin-top: var(--wrx-space-sm);
}

.wrx-comment-form .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-family: var(--wrx-font-primary);
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-semibold);
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border: 2px solid var(--wrx-color-accent);
	border-radius: var(--wrx-radius-sm);
	cursor: pointer;
	transition: all var(--wrx-transition-base);
}

.wrx-comment-form .form-submit .submit:hover {
	background-color: var(--wrx-color-accent-dark);
	border-color: var(--wrx-color-accent-dark);
}

/* Cookies consent checkbox */
.wrx-comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-sm);
	font-size: var(--wrx-font-size-sm);
}

/* Comment closed message */
.wrx-comments-closed {
	font-size: var(--wrx-font-size-base);
	color: var(--wrx-color-text-light);
	text-align: center;
	padding: var(--wrx-space-xl) 0;
	border-top: 1px solid var(--wrx-color-border);
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.wrx-breadcrumbs {
	padding: var(--wrx-space-md) 0;
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--wrx-space-xs);
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrx-breadcrumbs__item {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-xs);
}

.wrx-breadcrumbs__item::before {
	content: '/';
	color: var(--wrx-color-border);
}

.wrx-breadcrumbs__item:first-child::before {
	display: none;
}

.wrx-breadcrumbs__link {
	color: var(--wrx-color-text-light);
	text-decoration: none;
	transition: color var(--wrx-transition-fast);
}

.wrx-breadcrumbs__link:hover {
	color: var(--wrx-color-accent);
	text-decoration: none;
}

.wrx-breadcrumbs__current {
	color: var(--wrx-color-text);
	font-weight: var(--wrx-font-weight-medium);
}


/* ==========================================================================
   PAGINATION
   ========================================================================== */

.wrx-pagination,
.navigation.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-xs);
	padding: var(--wrx-space-2xl) 0;
}

.wrx-pagination .nav-links,
.navigation.pagination .nav-links {
	display: flex;
	align-items: center;
	gap: var(--wrx-space-xs);
}

.wrx-pagination .page-numbers,
.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 var(--wrx-space-sm);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-text);
	background-color: var(--wrx-color-background);
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-sm);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-pagination .page-numbers:hover,
.navigation.pagination .page-numbers:hover {
	background-color: var(--wrx-color-background-alt);
	border-color: var(--wrx-color-accent);
	color: var(--wrx-color-accent);
}

.wrx-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
	background-color: var(--wrx-color-accent);
	border-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

.wrx-pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
	border-color: transparent;
	background-color: transparent;
	cursor: default;
}

.wrx-pagination .page-numbers.dots:hover,
.navigation.pagination .page-numbers.dots:hover {
	background-color: transparent;
	border-color: transparent;
}

.wrx-pagination .prev,
.wrx-pagination .next,
.navigation.pagination .prev,
.navigation.pagination .next {
	font-weight: var(--wrx-font-weight-semibold);
}


/* ==========================================================================
   WORDPRESS DEFAULTS & OVERRIDES
   ========================================================================== */

/* WordPress alignment classes */
.alignleft {
	float: left;
	margin-right: var(--wrx-space-lg);
	margin-bottom: var(--wrx-space-md);
}

.alignright {
	float: right;
	margin-left: var(--wrx-space-lg);
	margin-bottom: var(--wrx-space-md);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--wrx-space-md);
}

.alignnone {
	margin-bottom: var(--wrx-space-md);
}

/* WordPress gallery */
.gallery {
	display: grid;
	gap: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-lg);
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }

.gallery-item {
	margin: 0;
}

.gallery-item img {
	width: 100%;
	height: auto;
	border-radius: var(--wrx-radius-sm);
}

.gallery-caption {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	text-align: center;
	padding: var(--wrx-space-xs);
}

/* WordPress captions */
.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	text-align: center;
	padding-top: var(--wrx-space-sm);
}

/* Screen reader text (WordPress core) */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.screen-reader-text:focus {
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-sm);
	box-shadow: var(--wrx-shadow-md);
	clip: auto !important;
	color: var(--wrx-color-accent);
	display: block;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	height: auto;
	left: 5px;
	line-height: normal;
	padding: var(--wrx-space-md) var(--wrx-space-lg);
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Sticky post indicator */
.sticky .wrx-blog-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: var(--wrx-color-accent);
}

/* Password protected post form */
.post-password-form {
	max-width: 400px;
	margin: var(--wrx-space-2xl) auto;
	text-align: center;
}

.post-password-form label {
	display: block;
	margin-bottom: var(--wrx-space-md);
}

.post-password-form input[type='password'] {
	margin-top: var(--wrx-space-sm);
}

.post-password-form input[type='submit'] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-weight: var(--wrx-font-weight-semibold);
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border: none;
	border-radius: var(--wrx-radius-sm);
	cursor: pointer;
	transition: background-color var(--wrx-transition-fast);
	margin-top: var(--wrx-space-md);
}

.post-password-form input[type='submit']:hover {
	background-color: var(--wrx-color-accent-dark);
}

/* WordPress block editor styles */
.wp-block-image {
	margin-bottom: var(--wrx-space-lg);
}

.wp-block-image figcaption {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	text-align: center;
	margin-top: var(--wrx-space-sm);
}

.wp-block-quote {
	border-left: 4px solid var(--wrx-color-accent);
	padding: var(--wrx-space-md) var(--wrx-space-lg);
	background-color: var(--wrx-color-background-alt);
	border-radius: 0 var(--wrx-radius-md) var(--wrx-radius-md) 0;
	margin: var(--wrx-space-xl) 0;
}

.wp-block-quote cite {
	display: block;
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	font-style: normal;
	margin-top: var(--wrx-space-sm);
}

.wp-block-pullquote {
	border-top: 3px solid var(--wrx-color-accent);
	border-bottom: 3px solid var(--wrx-color-accent);
	padding: var(--wrx-space-xl) 0;
	text-align: center;
}

.wp-block-separator {
	border: none;
	border-top: 1px solid var(--wrx-color-border);
	margin: var(--wrx-space-xl) 0;
}

.wp-block-separator.is-style-wide {
	border-top-width: 2px;
}

.wp-block-separator.is-style-dots {
	border: none;
	text-align: center;
}

.wp-block-table {
	margin-bottom: var(--wrx-space-lg);
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
	padding: var(--wrx-space-sm) var(--wrx-space-md);
	border: 1px solid var(--wrx-color-border);
	text-align: left;
}

.wp-block-table th {
	background-color: var(--wrx-color-background-alt);
	font-weight: var(--wrx-font-weight-semibold);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: var(--wrx-color-background-alt);
}

.wp-block-code {
	background-color: var(--wrx-color-primary);
	color: var(--wrx-color-background);
	padding: var(--wrx-space-lg);
	border-radius: var(--wrx-radius-md);
	overflow-x: auto;
}

.wp-block-code code {
	background: none;
	padding: 0;
	border: none;
	color: inherit;
}

.wp-block-button .wp-block-button__link {
	transition: all var(--wrx-transition-base);
}

.wp-block-cover {
	border-radius: var(--wrx-radius-md);
	overflow: hidden;
}

.wp-block-group.has-background {
	padding: var(--wrx-space-xl);
	border-radius: var(--wrx-radius-md);
}


/* ==========================================================================
   SECTION HEADERS (BEM variant: wrx-section__header)
   ========================================================================== */

.wrx-section__header {
	text-align: center;
	max-width: var(--wrx-container-narrow);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--wrx-space-3xl);
}

.wrx-section__subtitle {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--wrx-color-accent);
	margin-bottom: 0.75rem;
}

.wrx-section__title {
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--wrx-color-text);
	margin-bottom: var(--wrx-space-md);
	position: relative;
	padding-bottom: 1rem;
}

.wrx-section__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--wrx-color-accent);
	border-radius: 2px;
}

.wrx-section__footer {
	text-align: center;
	margin-top: var(--wrx-space-2xl);
}


/* ==========================================================================
   SERVICE CARD STYLES
   ========================================================================== */

.wrx-card--service {
	background-color: var(--wrx-color-background);
	padding: var(--wrx-space-2xl) var(--wrx-space-lg);
	border-radius: var(--wrx-radius-lg);
	border: 1px solid var(--wrx-color-border);
	box-shadow: var(--wrx-shadow-sm);
	text-align: center;
	transition: all var(--wrx-transition-base);
}

.wrx-card--service:hover {
	box-shadow: var(--wrx-shadow-lg);
	transform: translateY(-4px);
}

.wrx-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-accent-light);
	color: var(--wrx-color-accent);
	margin: 0 auto var(--wrx-space-lg);
}

.wrx-card__icon svg {
	width: 40px;
	height: 40px;
}

.wrx-card__icon i {
	font-size: 2rem;
}

.wrx-card__excerpt {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	line-height: var(--wrx-line-height-relaxed);
	margin-bottom: var(--wrx-space-lg);
}

.wrx-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	color: var(--wrx-color-accent);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-card__link:hover {
	color: var(--wrx-color-accent-dark);
	gap: var(--wrx-space-sm);
}

.wrx-card__link svg {
	width: 16px;
	height: 16px;
	transition: transform var(--wrx-transition-fast);
}

.wrx-card__link:hover svg {
	transform: translateX(4px);
}


/* ==========================================================================
   PORTFOLIO CARD STYLES
   ========================================================================== */

.wrx-card--portfolio {
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
	position: relative;
}

.wrx-card__link-wrapper {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.wrx-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.wrx-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wrx-transition-base);
}

.wrx-card--portfolio:hover .wrx-card__img {
	transform: scale(1.05);
}

.wrx-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--wrx-color-accent), var(--wrx-color-accent-dark));
}

.wrx-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--wrx-space-lg);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: var(--wrx-color-background);
	transform: translateY(10px);
	opacity: 0;
	transition: all var(--wrx-transition-base);
}

.wrx-card--portfolio:hover .wrx-card__overlay {
	transform: translateY(0);
	opacity: 1;
}

.wrx-card__badge {
	display: inline-block;
	font-size: var(--wrx-font-size-xs);
	font-weight: var(--wrx-font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--wrx-letter-spacing-wide);
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	padding: 2px 10px;
	border-radius: var(--wrx-radius-sm);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-card__overlay .wrx-card__title {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-background);
	margin-bottom: var(--wrx-space-xs);
}

.wrx-card__view {
	display: inline-flex;
	align-items: center;
	gap: var(--wrx-space-xs);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	color: var(--wrx-color-accent-light);
}


/* ==========================================================================
   TEAM CARD STYLES
   ========================================================================== */

.wrx-card--team {
	background-color: var(--wrx-color-background);
	border-radius: var(--wrx-radius-lg);
	border: 1px solid var(--wrx-color-border);
	overflow: hidden;
	text-align: center;
	transition: all var(--wrx-transition-base);
}

.wrx-card--team:hover {
	box-shadow: var(--wrx-shadow-lg);
}

.wrx-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background-color: var(--wrx-color-background-alt);
}

.wrx-card__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrx-card__photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--wrx-font-size-4xl);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-accent);
	background-color: var(--wrx-color-accent-light);
}

.wrx-card__social-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-sm);
	padding: var(--wrx-space-md);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	opacity: 0;
	transform: translateY(10px);
	transition: all var(--wrx-transition-base);
}

.wrx-card--team:hover .wrx-card__social-overlay {
	opacity: 1;
	transform: translateY(0);
}

.wrx-card__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--wrx-radius-full);
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--wrx-color-background);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-card__social-link:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
}

.wrx-card__info {
	padding: var(--wrx-space-lg);
}

.wrx-card__name {
	font-size: var(--wrx-font-size-lg);
	font-weight: var(--wrx-font-weight-bold);
	margin-bottom: var(--wrx-space-xs);
}

.wrx-card__role {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	margin-bottom: 0;
}


/* ==========================================================================
   CLIENTS TRACK (scrolling marquee)
   ========================================================================== */

.wrx-clients {
	overflow: hidden;
	position: relative;
	padding: 2.5rem 0;
}

.wrx-clients::before,
.wrx-clients::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

.wrx-clients::before {
	left: 0;
	background: linear-gradient(90deg, #fff, transparent);
}

.wrx-clients::after {
	right: 0;
	background: linear-gradient(-90deg, #fff, transparent);
}

.wrx-clients__track {
	display: flex;
	align-items: center;
	gap: 5rem;
	animation: wrx-scroll-logos 28s linear infinite;
	width: max-content;
}

.wrx-clients__track:hover {
	animation-play-state: paused;
}

.wrx-clients__track .wrx-clients__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.35;
	transition: all 0.4s ease;
	color: #1e293b;
	cursor: default;
}

.wrx-clients__track .wrx-clients__logo:hover {
	opacity: 1;
	color: var(--wrx-color-accent);
	transform: scale(1.08);
}

.wrx-clients__track .wrx-clients__logo svg {
	height: 44px;
	width: auto;
}

.wrx-clients__track .wrx-clients__logo img {
	height: 40px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.4s ease;
}

.wrx-clients__track .wrx-clients__logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}


/* ==========================================================================
   CONTACT SECTION — 2-column layout
   ========================================================================== */

/* Button loader — hidden by default, shown on .is-loading */
.wrx-btn__loader {
	display: none !important;
}

.wrx-btn.is-loading .wrx-btn__loader {
	display: block !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wrx-btn.is-loading .wrx-btn__text {
	visibility: hidden;
}

.wrx-btn--full {
	width: 100%;
}

.wrx-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wrx-space-3xl);
	align-items: start;
}

.wrx-contact__info {
	padding-right: var(--wrx-space-xl);
}

.wrx-contact__item {
	display: flex;
	align-items: flex-start;
	gap: var(--wrx-space-md);
	padding: var(--wrx-space-md) 0;
	border-bottom: 1px solid var(--wrx-color-border);
}

.wrx-contact__item:last-child {
	border-bottom: none;
}

.wrx-contact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--wrx-radius-md);
	background-color: var(--wrx-color-accent-light);
	color: var(--wrx-color-accent);
	flex-shrink: 0;
}

.wrx-contact__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wrx-contact__text strong {
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
}

.wrx-contact__text a,
.wrx-contact__text span {
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
	text-decoration: none;
}

.wrx-contact__text a:hover {
	color: var(--wrx-color-accent);
}

.wrx-contact__social-label {
	display: block;
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-semibold);
	margin-bottom: var(--wrx-space-sm);
}

.wrx-contact__social-links {
	display: flex;
	gap: var(--wrx-space-sm);
}

.wrx-contact__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wrx-radius-full);
	border: 1px solid var(--wrx-color-border);
	color: var(--wrx-color-text);
	text-decoration: none;
	transition: all var(--wrx-transition-fast);
}

.wrx-contact__social-link:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}

.wrx-contact__form-wrap {
	background-color: var(--wrx-color-background);
	padding: var(--wrx-space-2xl);
	border-radius: var(--wrx-radius-lg);
	box-shadow: var(--wrx-shadow-lg);
	border: 1px solid var(--wrx-color-border);
}

.wrx-contact__map {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--wrx-radius-lg);
	overflow: hidden;
	margin-top: var(--wrx-space-xl);
	border: 1px solid var(--wrx-color-border);
}

.wrx-contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}


/* ==========================================================================
   CAROUSEL (Testimonials)
   ========================================================================== */

.wrx-carousel {
	position: relative;
	overflow: hidden;
}

.wrx-carousel__track {
	display: flex;
	transition: transform var(--wrx-transition-slow);
}

.wrx-carousel__slide {
	min-width: 100%;
	padding: var(--wrx-space-2xl);
	text-align: center;
	box-sizing: border-box;
}

.wrx-carousel__quote {
	font-size: var(--wrx-font-size-lg);
	line-height: var(--wrx-line-height-relaxed);
	color: var(--wrx-color-text);
	margin: var(--wrx-space-lg) 0;
	font-style: italic;
}

.wrx-carousel__quote p {
	margin: 0;
}

.wrx-carousel__client {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-md);
}

.wrx-carousel__avatar {
	width: 56px;
	height: 56px;
	border-radius: var(--wrx-radius-full);
	overflow: hidden;
	flex-shrink: 0;
}

.wrx-carousel__avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrx-carousel__avatar-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--wrx-font-size-xl);
	font-weight: var(--wrx-font-weight-bold);
	color: var(--wrx-color-accent);
	background-color: var(--wrx-color-accent-light);
}

.wrx-carousel__client-info {
	text-align: left;
}

.wrx-carousel__client-name {
	display: block;
	font-size: var(--wrx-font-size-base);
	font-weight: var(--wrx-font-weight-bold);
}

.wrx-carousel__client-role {
	display: block;
	font-size: var(--wrx-font-size-sm);
	color: var(--wrx-color-text-light);
}

.wrx-carousel__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wrx-space-md);
	margin-top: var(--wrx-space-lg);
}

.wrx-carousel__prev,
.wrx-carousel__next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--wrx-radius-full);
	border: 1px solid var(--wrx-color-border);
	background: var(--wrx-color-background);
	color: var(--wrx-color-text);
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
}

.wrx-carousel__prev:hover,
.wrx-carousel__next:hover {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}

.wrx-carousel__dots {
	display: flex;
	gap: var(--wrx-space-sm);
}

.wrx-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: var(--wrx-radius-full);
	background-color: var(--wrx-color-border);
	border: none;
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
}

.wrx-carousel__dot--active,
.wrx-carousel__dot:hover {
	background-color: var(--wrx-color-accent);
}

.wrx-stars {
	display: inline-flex;
	gap: 2px;
	color: #F59E0B;
}


/* ==========================================================================
   FILTER BUTTONS (Portfolio)
   ========================================================================== */

.wrx-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wrx-space-sm);
	margin-bottom: var(--wrx-space-2xl);
}

.wrx-filter__btn {
	padding: var(--wrx-space-sm) var(--wrx-space-lg);
	font-size: var(--wrx-font-size-sm);
	font-weight: var(--wrx-font-weight-medium);
	border: 1px solid var(--wrx-color-border);
	border-radius: var(--wrx-radius-full);
	background: var(--wrx-color-background);
	color: var(--wrx-color-text);
	cursor: pointer;
	transition: all var(--wrx-transition-fast);
}

.wrx-filter__btn:hover,
.wrx-filter__btn--active {
	background-color: var(--wrx-color-accent);
	color: var(--wrx-color-background);
	border-color: var(--wrx-color-accent);
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Large Desktop (max-width: 1200px)
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
	.wrx-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-footer__grid,
	.wrx-footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-related-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.wrx-stats__grid,
	.wrx-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-portfolio__grid--masonry {
		grid-auto-rows: 250px;
	}

	.wrx-contact__grid,
	.wrx-contact {
		grid-template-columns: 1fr;
	}

	.wrx-contact__info,
	.wrx-contact > .wrx-contact__info {
		padding-right: 0;
	}

	.wrx-blog-section__grid,
	.wrx-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrx-header--centered .wrx-header__inner {
		flex-wrap: nowrap;
		justify-content: space-between;
		height: 80px;
		padding-top: 0;
	}

	.wrx-header--centered .wrx-header__logo {
		width: auto;
		margin-bottom: 0;
	}
}

/* --------------------------------------------------------------------------
   Small Tablet (max-width: 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.wrx-services__grid {
		grid-template-columns: 1fr;
	}

	.wrx-portfolio__grid {
		grid-template-columns: 1fr;
	}

	.wrx-portfolio__grid--masonry {
		grid-auto-rows: auto;
	}

	.wrx-portfolio__grid--masonry .wrx-portfolio-card:nth-child(4n+1) {
		grid-row: span 1;
	}

	.wrx-stats__grid,
	.wrx-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--wrx-space-md);
	}

	.wrx-team__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.wrx-blog-section__grid,
	.wrx-posts-grid {
		grid-template-columns: 1fr;
	}

	.wrx-footer__grid,
	.wrx-footer__columns {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.wrx-footer__brand {
		padding-right: 0;
	}

	.wrx-footer__social {
		justify-content: center;
	}

	.wrx-footer-widget__title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.wrx-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.wrx-footer__bottom-menu {
		justify-content: center;
	}

	.wrx-hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.wrx-hero__actions .wrx-btn {
		width: 100%;
		max-width: 300px;
	}

	.wrx-post-navigation {
		grid-template-columns: 1fr;
		gap: var(--wrx-space-md);
	}

	.wrx-post-navigation__link--next {
		text-align: left;
		padding-top: var(--wrx-space-md);
		border-top: 1px solid var(--wrx-color-border);
	}

	.wrx-author-box {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.wrx-related-posts__grid {
		grid-template-columns: 1fr;
	}

	.wrx-comment-list .children {
		padding-left: var(--wrx-space-md);
	}

	.wrx-entry-header__meta {
		flex-direction: column;
		gap: var(--wrx-space-xs);
	}

	.wrx-entry-header__meta .wrx-entry-header__meta-divider {
		display: none;
	}

	.wrx-section-header {
		margin-bottom: var(--wrx-space-2xl);
	}

	.wrx-clients__grid {
		gap: var(--wrx-space-lg);
	}

	.wrx-clients__logo {
		max-height: 30px;
	}
}

/* --------------------------------------------------------------------------
   Mobile (max-width: 480px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
	.wrx-header__inner {
		height: 64px;
	}

	.wrx-header-spacer {
		height: 64px;
	}

	.wrx-stats__grid {
		grid-template-columns: 1fr;
	}

	.wrx-stat {
		padding: var(--wrx-space-md);
	}

	.wrx-hero__title {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
	}

	.wrx-section-header__title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.wrx-service-card {
		padding: var(--wrx-space-lg);
	}

	.wrx-testimonial-card {
		padding: var(--wrx-space-lg);
	}

	.wrx-testimonial-card__text {
		font-size: var(--wrx-font-size-base);
	}

	.wrx-mobile-nav {
		max-width: 100%;
	}

	.wrx-portfolio__filters {
		gap: var(--wrx-space-xs);
	}

	.wrx-portfolio__filter-btn {
		padding: 0.375rem 1rem;
		font-size: var(--wrx-font-size-xs);
	}

	.wrx-contact__form-wrapper,
	.wrx-contact__form-wrap {
		padding: var(--wrx-space-lg);
	}

	.wrx-404__number {
		font-size: clamp(4rem, 20vw, 8rem);
	}

	.wrx-breadcrumbs {
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.wrx-entry-content,
	.entry-content {
		font-size: var(--wrx-font-size-base);
	}

	.wrx-comment__header {
		gap: var(--wrx-space-sm);
	}

	.wrx-comment__avatar {
		width: 36px;
		height: 36px;
	}

	.wrx-widget {
		padding: var(--wrx-space-md);
	}

	.gallery-columns-4,
	.gallery-columns-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
	.wrx-header,
	.wrx-footer,
	.wrx-sidebar,
	.wrx-mobile-nav,
	.wrx-mobile-overlay,
	.wrx-mobile-toggle,
	.wrx-hero__scroll,
	.wrx-comments__navigation,
	.wrx-pagination,
	.wrx-breadcrumbs,
	.wrx-btn,
	.wrx-portfolio__filters,
	.wrx-testimonials__nav {
		display: none !important;
	}

	body {
		font-size: 12pt;
		line-height: 1.5;
		color: #000;
		background: #fff;
	}

	a {
		color: #000;
		text-decoration: underline;
	}

	.wrx-entry-content a[href]::after,
	.entry-content a[href]::after {
		content: ' (' attr(href) ')';
		font-size: 0.8em;
		color: #666;
	}

	img {
		max-width: 100% !important;
	}

	.wrx-entry-content,
	.entry-content {
		max-width: 100%;
	}
}

/* =========================================================
   Mobile Touch Target Accessibility (WCAG 2.5.5 / 2.5.8)
   Minimum 48x48px for tap targets on mobile
   ========================================================= */

/* Mobile nav close button */
.wrx-mobile-nav__close {
	min-width: 48px !important;
	min-height: 48px !important;
	padding: 12px !important;
}

/* Social media icons — visible area 48x48 min */
.wrx-social__link {
	min-width: 48px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Mobile nav contact links need vertical padding */
.wrx-mobile-nav__contact-link {
	min-height: 48px;
	padding-top: 12px;
	padding-bottom: 12px;
	display: flex;
	align-items: center;
}

/* Desktop nav links — increase tap zone to 48px */
.wrx-nav__link {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
}

/* Submenu toggle button — was only 10x10 */
.wrx-nav__dropdown-toggle {
	min-width: 48px !important;
	min-height: 48px !important;
	padding: 8px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Language selector trigger */
.wrxc-lang-sel__trigger {
	min-height: 48px;
	padding-top: 8px;
	padding-bottom: 8px;
}

/* Language selector option links */
.wrxc-lang-sel__option-link {
	min-height: 48px;
	padding-top: 12px;
	padding-bottom: 12px;
	display: flex;
	align-items: center;
}

/* Logo link — keep visual size but expand tap zone */
.wrx-mobile-nav__logo-link,
.wrx-header__site-link {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
}

/* Ensure small-font stat suffix is readable */
.wrx-stat__suffix {
	font-size: 0.85rem; /* Up from 9.6px */
}

/* Username / screen-reader micro text should not render under 12px */
.username {
	font-size: 0.75rem; /* 12px min */
}

/* Menu item links inside mobile nav (WordPress nav menu fallback) */
.wrx-mobile-nav .menu-item > a,
.wrx-nav__dropdown .menu-item > a,
.menu-item > a {
	min-height: 48px;
	display: flex;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 12px;
}

/* "En Savoir Plus" / "Learn More" card links */
.wrx-card__link {
	min-height: 48px;
	padding: 12px 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Filter buttons (portfolio, archive) */
.wrx-filter__btn {
	min-height: 48px;
	padding: 10px 16px;
}

/* Carousel navigation dots — expand tap target while keeping visual size */
.wrx-carousel__dot {
	min-width: 48px !important;
	min-height: 48px !important;
	background-clip: content-box !important;
	padding: 19px !important;
}

/* Carousel prev/next arrows */
.wrx-carousel__prev,
.wrx-carousel__next {
	min-width: 48px;
	min-height: 48px;
}

/* Card title links (inside h3.wrx-card__title > a) */
.wrx-card__title > a,
.wrx-card__title a {
	display: inline-block;
	padding: 6px 0;
	min-height: 48px;
	line-height: 1.4;
}

/* Primary buttons — ensure 48px minimum */
.wrx-btn {
	min-height: 48px;
}

/* Hero scroll-down indicator */
.wrx-hero__scroll-down {
	min-width: 48px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Card badges — decorative, positioned over card. Increase tap area if linked. */
a.wrx-card__badge,
button.wrx-card__badge {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
}

/* Contact section links (email/phone) */
.wrx-contact__text a,
.wrx-footer__contact-item a {
	min-height: 48px;
	padding: 12px 0;
	display: inline-flex;
	align-items: center;
}

/* Contact social links */
.wrx-contact__social-link {
	min-width: 48px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Footer logo link */
.wrx-footer__logo-link {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
}

/* Footer menu items */
.wrx-footer__menu a,
.wrx-footer__legal a {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
}

/* Back-to-top button */
.wrx-back-to-top {
	min-width: 48px !important;
	min-height: 48px !important;
}
