/*
Theme Name: WayToShip
Theme URI: https://waytoship.ca/
Author: WayToShip
Description: Thème WordPress natif de WayToShip pour le transport lourd, le blogue et les ressources de l’entreprise.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: waytoship
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--wts-bg: #0c0f12;
	--wts-card: #14191e;
	--wts-card-soft: #11161a;
	--wts-text: #f5f5f5;
	--wts-muted: #879099;
	--wts-primary: #41b85e;
	--wts-primary-dark: #32994a;
	--wts-accent: #55b9b6;
	--wts-border: #293037;
	--wts-border-soft: rgba(255, 255, 255, 0.08);
	--wts-yellow: #facc15;
	--wts-danger: #ef4444;
	--wts-radius-sm: 4px;
	--wts-radius: 8px;
	--wts-radius-lg: 16px;
	--wts-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
	--wts-container: 1280px;
	--wts-header-height: 64px;
	--wts-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--wts-font-heading: "Space Grotesk", "Inter", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--wts-bg);
	color: var(--wts-text);
	font-family: var(--wts-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--wts-primary);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.75em;
	color: var(--wts-text);
	font-family: var(--wts-font-heading);
	font-weight: 700;
	line-height: 1.12;
}

p {
	margin: 0 0 1.25em;
}

ul,
ol {
	margin-top: 0;
}

::selection {
	background: var(--wts-primary);
	color: #fff;
}

:focus-visible {
	outline: 3px solid var(--wts-accent);
	outline-offset: 3px;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto !important;
	background: var(--wts-text);
	color: var(--wts-bg);
	font-weight: 700;
	white-space: normal;
}

.site-shell {
	min-height: 100vh;
}

.site-main {
	min-height: 60vh;
}

.container {
	width: min(100% - 40px, var(--wts-container));
	margin-inline: auto;
}

.container-narrow {
	width: min(100% - 40px, 850px);
	margin-inline: auto;
}

.section {
	padding-block: 96px;
}

.section-card {
	background: var(--wts-card);
	border-block: 1px solid var(--wts-border);
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}

.section-heading.centered {
	display: block;
	text-align: center;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.1rem);
	letter-spacing: -0.035em;
}

.section-heading p:not(.eyebrow) {
	max-width: 620px;
	margin: 14px 0 0;
	color: var(--wts-muted);
	font-size: 1.08rem;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--wts-primary);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--wts-primary);
	font-size: 0.9rem;
	font-weight: 700;
}

.text-link .icon {
	transition: transform 180ms ease;
}

.text-link:hover .icon {
	transform: translateX(3px);
}

.icon {
	width: 1.1em;
	height: 1.1em;
	flex: 0 0 auto;
}

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 11px 24px;
	border: 1px solid var(--wts-primary);
	border-radius: var(--wts-radius-sm);
	background: var(--wts-primary);
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
	transform: translateY(-2px);
	border-color: var(--wts-primary-dark);
	background: var(--wts-primary-dark);
	color: #fff;
	box-shadow: 0 0 28px rgba(65, 184, 94, 0.32);
}

.button-large {
	min-height: 62px;
	padding-inline: 42px;
	font-size: 1.14rem;
}

.button-light {
	border-color: #fff;
	background: #fff;
	color: var(--wts-primary-dark);
}

.button-light:hover {
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.9);
	color: var(--wts-primary-dark);
}

.button-outline {
	border-color: var(--wts-border);
	background: transparent;
	color: var(--wts-text);
}

.button-outline:hover {
	border-color: var(--wts-primary);
	background: rgba(65, 184, 94, 0.08);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	height: var(--wts-header-height);
	border-bottom: 1px solid transparent;
	transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
	border-color: var(--wts-border);
	background: rgba(12, 15, 18, 0.95);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(18px);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	display: flex;
	height: 100%;
	align-items: center;
	gap: 20px;
}

.site-branding {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

.site-logo-link,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.site-logo-image,
.custom-logo {
	width: auto;
	max-width: 190px;
	height: 48px;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation .menu a {
	display: block;
	padding: 9px 14px;
	border-radius: var(--wts-radius-sm);
	color: var(--wts-muted);
	font-size: 0.88rem;
	font-weight: 600;
	transition: color 180ms ease, background 180ms ease;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.single-post .primary-navigation .menu-item-blog > a {
	color: var(--wts-primary);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	display: none;
	min-width: 210px;
	padding: 8px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
	box-shadow: var(--wts-shadow);
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	display: block;
}

.header-quote-link {
	margin-left: 4px;
	color: var(--wts-muted);
	font-size: 0.88rem;
	font-weight: 600;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--wts-muted);
	font-size: 0.84rem;
	font-weight: 700;
}

.header-phone:hover {
	color: var(--wts-text);
}

.header-carrier {
	padding: 9px 17px;
	border-radius: var(--wts-radius-sm);
	background: var(--wts-primary);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	transition: background 180ms ease, box-shadow 180ms ease;
}

.header-carrier:hover {
	background: var(--wts-primary-dark);
	color: #fff;
	box-shadow: 0 0 20px rgba(65, 184, 94, 0.35);
}

.menu-toggle {
	position: relative;
	z-index: 2;
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-menu {
	display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
	display: block;
}

.mobile-actions {
	display: none;
}

/* Hero */
.home-hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	align-items: center;
	overflow: hidden;
	padding-top: calc(var(--wts-header-height) + 55px);
	background:
		radial-gradient(circle at 20% 50%, rgba(65, 184, 94, 0.09), transparent 55%),
		radial-gradient(circle at 80% 20%, rgba(85, 185, 182, 0.06), transparent 45%),
		var(--wts-bg);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 60px 60px;
	content: "";
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-block: 80px 155px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 28px;
	padding: 7px 12px;
	border: 1px solid rgba(65, 184, 94, 0.25);
	border-radius: 100px;
	background: rgba(65, 184, 94, 0.09);
	color: var(--wts-primary);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--wts-primary);
	box-shadow: 0 0 0 5px rgba(65, 184, 94, 0.12);
	animation: pulse 1.8s ease-in-out infinite;
}

.home-hero h1 {
	max-width: 980px;
	margin-bottom: 24px;
	font-size: clamp(2.6rem, 7.5vw, 5.75rem);
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.home-hero h1 span {
	color: var(--wts-primary);
}

.hero-lead {
	max-width: 735px;
	margin-bottom: 36px;
	color: var(--wts-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
}

.hero-lead strong {
	color: var(--wts-text);
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 30px;
	margin: 44px 0 0;
	padding: 0;
	color: var(--wts-muted);
	font-size: 0.87rem;
	list-style: none;
}

.hero-trust li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-trust .icon {
	color: var(--wts-primary);
}

.hero-stats {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	border-top: 1px solid var(--wts-border);
	background: rgba(20, 25, 30, 0.65);
	backdrop-filter: blur(12px);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-block: 22px;
}

.stat {
	text-align: center;
}

.stat-value {
	margin: 0;
	color: var(--wts-primary);
	font-family: var(--wts-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
}

.stat-label {
	margin: 4px 0 0;
	color: var(--wts-muted);
	font-size: 0.68rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

/* Ticker */
.ticker {
	overflow: hidden;
	padding-block: 12px;
	border-block: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--wts-primary);
	color: #fff;
}

.ticker-track {
	display: flex;
	width: max-content;
	animation: ticker 34s linear infinite;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 17px;
	padding-inline: 32px;
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.ticker-item::before {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.62);
	content: "";
}

/* Transport cards and benefits */
.transport-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.transport-card {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 24px 17px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
	text-align: center;
	transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.transport-card:hover {
	transform: translateY(-5px);
	border-color: rgba(65, 184, 94, 0.6);
	background: #171d22;
}

.transport-icon {
	display: flex;
	width: 66px;
	height: 62px;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.transport-icon img {
	width: 100%;
	max-height: 54px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.82;
	transition: transform 220ms ease, opacity 220ms ease;
}

.transport-card:hover .transport-icon img {
	transform: scale(1.08);
	opacity: 1;
}

.transport-card strong {
	margin-bottom: 5px;
	font-size: 0.94rem;
}

.transport-card span {
	color: var(--wts-muted);
	font-size: 0.76rem;
	line-height: 1.45;
}

.section-action {
	margin-top: 38px;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.benefit-card {
	height: 100%;
	padding: 29px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-bg);
	transition: border-color 180ms ease;
}

.benefit-card:hover {
	border-color: rgba(65, 184, 94, 0.45);
}

.benefit-icon,
.contact-icon {
	display: flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	margin-bottom: 19px;
	border-radius: var(--wts-radius);
	background: rgba(65, 184, 94, 0.11);
	color: var(--wts-primary);
	transition: background 180ms ease, color 180ms ease;
}

.benefit-card:hover .benefit-icon,
.contact-card:hover .contact-icon {
	background: var(--wts-primary);
	color: #fff;
}

.benefit-card h3 {
	margin-bottom: 9px;
	font-size: 1.14rem;
}

.benefit-card p {
	margin: 0;
	color: var(--wts-muted);
	font-size: 0.89rem;
}

/* Reviews */
.google-label {
	display: flex;
	align-items: center;
	gap: 10px;
}

.google-mark {
	display: inline-grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: conic-gradient(from -40deg, #4285f4 0 25%, #34a853 0 44%, #fbbc05 0 65%, #ea4335 0 86%, #4285f4 0);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 900;
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.review-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
	transition: border-color 180ms ease, transform 180ms ease;
}

.review-card:hover {
	transform: translateY(-2px);
	border-color: rgba(65, 184, 94, 0.35);
}

.review-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.stars {
	display: flex;
	gap: 2px;
	color: var(--wts-yellow);
	font-size: 1rem;
	letter-spacing: -0.05em;
}

.review-quote-icon {
	color: rgba(65, 184, 94, 0.55);
}

.review-content {
	flex: 1 1 auto;
	margin-bottom: 20px;
	color: var(--wts-muted);
	font-size: 0.87rem;
	line-height: 1.65;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid var(--wts-border);
}

.review-avatar,
.author-avatar-fallback {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: rgba(65, 184, 94, 0.14);
	color: var(--wts-primary);
	font-size: 0.82rem;
	font-weight: 800;
}

.review-author strong {
	display: block;
	font-size: 0.86rem;
}

.review-author span {
	display: block;
	color: var(--wts-muted);
	font-size: 0.72rem;
}

/* Post cards */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.section-card .post-card {
	background: var(--wts-bg);
}

.post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(65, 184, 94, 0.5);
	box-shadow: var(--wts-shadow);
}

.post-card-image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #0a0d0f;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.055);
}

.post-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 23px;
}

.post-category {
	display: inline-block;
	align-self: flex-start;
	margin-bottom: 8px;
	color: var(--wts-primary);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-card-title {
	margin: 0 0 11px;
	font-size: 1.13rem;
	line-height: 1.3;
}

.post-card-title a {
	transition: color 180ms ease;
}

.post-card:hover .post-card-title a {
	color: var(--wts-primary);
}

.post-card-excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	flex: 1 1 auto;
	margin-bottom: 20px;
	color: var(--wts-muted);
	font-size: 0.87rem;
	line-height: 1.65;
}

.post-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 15px;
	border-top: 1px solid var(--wts-border);
	color: var(--wts-muted);
	font-size: 0.71rem;
}

.post-card-meta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.post-card-meta span,
.post-card-read {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.post-card-read {
	color: var(--wts-primary);
	font-weight: 700;
}

.post-card-read .icon {
	width: 13px;
	height: 13px;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 60px 24px;
	border: 1px dashed var(--wts-border);
	border-radius: var(--wts-radius);
	color: var(--wts-muted);
	text-align: center;
}

.empty-state h3 {
	margin-bottom: 8px;
}

.empty-state p:last-child {
	margin-bottom: 0;
}

/* Call to action */
.cta-panel {
	position: relative;
	overflow: hidden;
	padding: 66px 40px;
	border-radius: var(--wts-radius-lg);
	background: var(--wts-primary);
	color: #fff;
	text-align: center;
}

.cta-panel::after {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.25), transparent 58%);
	content: "";
	pointer-events: none;
}

.cta-panel-inner {
	position: relative;
	z-index: 1;
}

.cta-panel h2 {
	margin-bottom: 15px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-panel p {
	max-width: 650px;
	margin: 0 auto 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
}

.region-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.region-chip {
	padding: 5px 12px;
	border: 1px solid var(--wts-border);
	border-radius: 100px;
	background: var(--wts-bg);
	color: var(--wts-muted);
	font-size: 0.72rem;
	transition: color 180ms ease, border-color 180ms ease;
}

.region-chip:hover {
	border-color: rgba(65, 184, 94, 0.45);
	color: var(--wts-primary);
}

/* Blog, archives and search */
.archive-hero,
.page-hero {
	padding: calc(var(--wts-header-height) + 70px) 0 62px;
	background:
		radial-gradient(circle at 20% 60%, rgba(65, 184, 94, 0.08), transparent 45%),
		var(--wts-bg);
}

.archive-hero h1,
.page-hero h1 {
	max-width: 900px;
	margin-bottom: 16px;
	font-size: clamp(2.5rem, 6vw, 4rem);
	letter-spacing: -0.045em;
}

.archive-description,
.page-hero p:not(.eyebrow) {
	max-width: 610px;
	margin: 0;
	color: var(--wts-muted);
	font-size: 1.08rem;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

.blog-toolbar {
	border-block: 1px solid var(--wts-border);
	background: var(--wts-card);
}

.blog-toolbar-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-block: 16px;
}

.blog-search {
	position: relative;
	width: 265px;
	flex: 0 0 auto;
}

.blog-search .icon {
	position: absolute;
	top: 50%;
	left: 12px;
	width: 16px;
	height: 16px;
	color: var(--wts-muted);
	transform: translateY(-50%);
	pointer-events: none;
}

.blog-search input[type="search"] {
	width: 100%;
	height: 42px;
	padding: 8px 12px 8px 37px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius-sm);
	background: var(--wts-bg);
	color: var(--wts-text);
	font-size: 0.86rem;
}

.blog-search input[type="search"]::placeholder {
	color: var(--wts-muted);
}

.blog-search input[type="search"]:focus {
	border-color: var(--wts-primary);
	outline: 0;
}

.category-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.category-filter a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 4px 12px;
	border: 1px solid var(--wts-border);
	border-radius: 100px;
	background: var(--wts-bg);
	color: var(--wts-muted);
	font-size: 0.72rem;
	font-weight: 700;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.category-filter a:hover,
.category-filter .is-active a {
	border-color: var(--wts-primary);
	background: var(--wts-primary);
	color: #fff;
}

.archive-content {
	padding-block: 65px 96px;
}

.pagination {
	margin-top: 50px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
}

.pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding-inline: 11px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius-sm);
	background: var(--wts-card);
	color: var(--wts-muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.pagination a.page-numbers:hover,
.pagination .page-numbers.current {
	border-color: var(--wts-primary);
	background: var(--wts-primary);
	color: #fff;
}

/* Single article */
.single-hero {
	position: relative;
	overflow: hidden;
	padding: calc(var(--wts-header-height) + 65px) 0 75px;
	background: var(--wts-card);
	border-bottom: 1px solid var(--wts-border);
}

.single-hero-image,
.single-hero-overlay {
	position: absolute;
	inset: 0;
}

.single-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.26;
}

.single-hero-overlay {
	background:
		linear-gradient(rgba(12, 15, 18, 0.72), rgba(12, 15, 18, 0.94)),
		radial-gradient(circle at 20% 60%, rgba(65, 184, 94, 0.16), transparent 50%);
}

.single-hero-inner {
	position: relative;
	z-index: 1;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 27px;
	color: var(--wts-muted);
	font-size: 0.86rem;
}

.back-link:hover {
	color: var(--wts-primary);
}

.single-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.single-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border: 1px solid rgba(65, 184, 94, 0.28);
	border-radius: 100px;
	background: rgba(65, 184, 94, 0.13);
	color: var(--wts-primary);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-hero h1 {
	max-width: 990px;
	margin-bottom: 28px;
	font-size: clamp(2.25rem, 5vw, 4rem);
	letter-spacing: -0.045em;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 13px 22px;
	color: var(--wts-muted);
	font-size: 0.84rem;
}

.single-meta > span,
.single-meta > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.single-author {
	color: var(--wts-text);
	font-weight: 600;
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 70px;
	align-items: start;
	padding-block: 70px 95px;
}

.entry-content {
	min-width: 0;
	color: #b0b7bd;
	font-size: 1.05rem;
	line-height: 1.82;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.75em;
	margin-bottom: 0.65em;
	color: var(--wts-text);
}

.entry-content h2 {
	font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.entry-content h3 {
	font-size: 1.45rem;
}

.entry-content a {
	color: var(--wts-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content strong {
	color: var(--wts-text);
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 18px 24px;
	border-left: 3px solid var(--wts-primary);
	background: var(--wts-card);
	color: var(--wts-text);
	font-size: 1.1em;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content img {
	border-radius: var(--wts-radius);
}

.entry-content table {
	width: 100%;
	margin-block: 28px;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--wts-border);
	text-align: left;
}

.entry-content th {
	background: var(--wts-card);
	color: var(--wts-text);
}

.article-footer {
	margin-top: 55px;
	padding-top: 24px;
	border-top: 1px solid var(--wts-border);
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-tags a {
	display: inline-block;
	padding: 6px 11px;
	border: 1px solid var(--wts-border);
	border-radius: 100px;
	color: var(--wts-muted);
	font-size: 0.74rem;
}

.article-tags a:hover {
	border-color: var(--wts-primary);
	color: var(--wts-primary);
}

.article-sidebar {
	position: sticky;
	top: calc(var(--wts-header-height) + 28px);
}

.sidebar-cta {
	padding: 28px;
	border: 1px solid var(--wts-border);
	border-radius: 12px;
	background: var(--wts-card);
}

.sidebar-cta h2 {
	margin-bottom: 12px;
	font-size: 1.35rem;
}

.sidebar-cta > p:not(.eyebrow) {
	color: var(--wts-muted);
	font-size: 0.88rem;
}

.sidebar-cta .button {
	width: 100%;
}

.sidebar-checks {
	margin: 20px 0 0;
	padding: 19px 0 0;
	border-top: 1px solid var(--wts-border);
	color: var(--wts-muted);
	font-size: 0.74rem;
	list-style: none;
}

.sidebar-checks li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.sidebar-checks .icon {
	color: var(--wts-primary);
}

.post-navigation {
	margin-top: 48px;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.post-navigation a {
	display: block;
	height: 100%;
	padding: 18px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
}

.post-navigation a:hover {
	border-color: rgba(65, 184, 94, 0.55);
}

.post-navigation .nav-subtitle {
	display: block;
	margin-bottom: 4px;
	color: var(--wts-muted);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-navigation .nav-title {
	font-family: var(--wts-font-heading);
	font-size: 0.9rem;
	font-weight: 700;
}

.related-posts {
	padding-block: 75px 95px;
	border-top: 1px solid var(--wts-border);
	background: var(--wts-card);
}

.related-posts .section-heading {
	margin-bottom: 35px;
}

/* FAQ */
.faq-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 55px;
}

.faq-filters {
	position: sticky;
	top: calc(var(--wts-header-height) + 25px);
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-self: start;
}

.faq-filter {
	padding: 10px 14px;
	border: 0;
	border-radius: var(--wts-radius-sm);
	background: transparent;
	color: var(--wts-muted);
	font-size: 0.84rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease;
}

.faq-filter:hover {
	background: var(--wts-card);
	color: var(--wts-text);
}

.faq-filter.is-active {
	background: var(--wts-primary);
	color: #fff;
}

.faq-list {
	border-top: 1px solid var(--wts-border);
}

.faq-item {
	border-bottom: 1px solid var(--wts-border);
}

.faq-item[hidden] {
	display: none;
}

.faq-question {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	border: 0;
	background: transparent;
	font-family: var(--wts-font-heading);
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: color 180ms ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
	color: var(--wts-primary);
}

.faq-plus {
	position: relative;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
	position: absolute;
	top: 9px;
	left: 3px;
	width: 14px;
	height: 2px;
	background: var(--wts-primary);
	content: "";
	transition: transform 220ms ease;
}

.faq-plus::after {
	transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
	transform: rotate(0);
}

.faq-answer {
	padding: 0 45px 22px 0;
	color: var(--wts-muted);
	font-size: 0.91rem;
	line-height: 1.72;
}

.faq-answer[hidden] {
	display: none;
}

.faq-answer > *:last-child {
	margin-bottom: 0;
}

.contact-band {
	padding-block: 80px;
	border-top: 1px solid var(--wts-border);
	background: var(--wts-card);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.contact-card {
	display: flex;
	min-height: 235px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 26px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-bg);
	text-align: center;
	transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	border-color: rgba(65, 184, 94, 0.55);
}

.contact-card h3 {
	margin-bottom: 7px;
	font-size: 1rem;
}

.contact-card .contact-value {
	margin-bottom: 4px;
	color: var(--wts-primary);
	font-size: 0.91rem;
	font-weight: 700;
}

.contact-card small {
	color: var(--wts-muted);
}

.contact-card.is-primary {
	border-color: var(--wts-primary);
	background: var(--wts-primary);
	color: #fff;
}

.contact-card.is-primary:hover {
	border-color: var(--wts-primary-dark);
	background: var(--wts-primary-dark);
}

.contact-card.is-primary .contact-icon {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.contact-card.is-primary h3,
.contact-card.is-primary .contact-value,
.contact-card.is-primary small {
	color: #fff;
}

/* Generic pages, forms and comments */
.page-content-wrap {
	padding-block: 65px 95px;
}

.page-content-wrap .entry-content {
	max-width: 850px;
	margin-inline: auto;
}

.error-page {
	display: grid;
	min-height: 75vh;
	place-items: center;
	padding: calc(var(--wts-header-height) + 55px) 20px 70px;
	text-align: center;
}

.error-code {
	margin: 0;
	color: var(--wts-primary);
	font-family: var(--wts-font-heading);
	font-size: clamp(5rem, 15vw, 10rem);
	font-weight: 700;
	line-height: 0.9;
}

.error-page h1 {
	margin-top: 20px;
	font-size: clamp(2rem, 5vw, 3rem);
}

.error-page p {
	max-width: 520px;
	margin: 0 auto 28px;
	color: var(--wts-muted);
}

.comments-area {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--wts-border);
}

.comments-title,
.comment-reply-title {
	font-size: 1.5rem;
}

.comment-list {
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}

.comment-list .children {
	margin-left: 30px;
	list-style: none;
}

.comment-body {
	margin-bottom: 16px;
	padding: 20px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius);
	background: var(--wts-card);
}

.comment-meta {
	margin-bottom: 12px;
	font-size: 0.78rem;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--wts-text);
	font-weight: 700;
}

.comment-author .avatar {
	border-radius: 50%;
}

.comment-metadata {
	margin-top: 5px;
	color: var(--wts-muted);
}

.comment-content {
	color: var(--wts-muted);
}

.comment-content p:last-child {
	margin-bottom: 0;
}

.comment-reply-link {
	color: var(--wts-primary);
	font-size: 0.78rem;
	font-weight: 700;
}

.comment-form p {
	margin-bottom: 16px;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	color: var(--wts-text);
	font-size: 0.82rem;
	font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
	max-width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius-sm);
	background: var(--wts-card);
	color: var(--wts-text);
}

textarea {
	width: 100%;
	min-height: 150px;
	resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--wts-primary);
	outline: 0;
}

.wp-block-image,
.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
	margin-top: 7px;
	color: var(--wts-muted);
	font-size: 0.78rem;
	text-align: center;
}

.alignleft {
	float: left;
	margin: 0 28px 20px 0;
}

.alignright {
	float: right;
	margin: 0 0 20px 28px;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	width: min(1100px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.page-links {
	margin-top: 30px;
	font-weight: 700;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--wts-border);
	background: var(--wts-card);
}

.footer-main {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
	gap: 50px;
	padding-block: 65px 52px;
}

.footer-brand-name {
	margin-bottom: 10px;
	font-family: var(--wts-font-heading);
	font-size: 1.55rem;
	font-weight: 700;
}

.footer-brand-name span {
	color: var(--wts-primary);
}

.footer-about {
	max-width: 300px;
	color: var(--wts-muted);
	font-size: 0.84rem;
}

.social-links {
	display: flex;
	gap: 8px;
	margin-top: 19px;
}

.social-link {
	display: grid;
	width: 37px;
	height: 37px;
	place-items: center;
	border: 1px solid var(--wts-border);
	border-radius: var(--wts-radius-sm);
	color: var(--wts-muted);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: color 180ms ease, border-color 180ms ease;
}

.social-link:hover {
	border-color: var(--wts-primary);
	color: var(--wts-primary);
}

.footer-title {
	margin-bottom: 16px;
	color: var(--wts-muted);
	font-family: var(--wts-font-body);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer-list,
.footer-navigation .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-list li,
.footer-navigation .menu li {
	margin-bottom: 8px;
}

.footer-list a,
.footer-navigation .menu a {
	color: var(--wts-muted);
	font-size: 0.81rem;
	transition: color 180ms ease;
}

.footer-list a:hover,
.footer-navigation .menu a:hover {
	color: var(--wts-primary);
}

.footer-contact-link {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-contact-link .icon {
	width: 15px;
	height: 15px;
}

.footer-cta {
	margin-top: 16px;
}

.footer-regions {
	padding-block: 29px;
	border-top: 1px solid var(--wts-border);
}

.footer-regions .footer-title {
	margin-bottom: 11px;
}

.footer-region-list {
	display: flex;
	flex-wrap: wrap;
	gap: 3px 17px;
	margin: 0;
	padding: 0;
	color: rgba(135, 144, 153, 0.62);
	font-size: 0.69rem;
	list-style: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-block: 22px;
	border-top: 1px solid var(--wts-border);
	color: rgba(135, 144, 153, 0.58);
	font-size: 0.68rem;
}

/* Motion */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.fade-up.is-visible,
.no-js .fade-up {
	opacity: 1;
	transform: translateY(0);
}

@keyframes ticker {
	to {
		transform: translateX(-50%);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.45;
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.header-phone {
		display: none;
	}

	.primary-navigation .menu a,
	.header-quote-link {
		padding-inline: 10px;
		font-size: 0.8rem;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.site-header.is-scrolled,
	.site-header.is-menu-open {
		/* A backdrop filter creates a containing block that clips fixed drawers. */
		backdrop-filter: none;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	.menu-toggle {
		display: flex;
	}

	.header-actions {
		display: none;
	}

	.primary-navigation {
		position: fixed;
		top: var(--wts-header-height);
		right: 0;
		bottom: 0;
		width: min(88vw, 340px);
		display: block;
		overflow-y: auto;
		padding: 28px 24px;
		border-left: 1px solid var(--wts-border);
		background: var(--wts-card);
		box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
		transform: translateX(105%);
		visibility: hidden;
		transition: transform 240ms ease, visibility 240ms ease;
	}

	.admin-bar .primary-navigation {
		top: calc(var(--wts-header-height) + 32px);
	}

	.primary-navigation.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.primary-navigation .menu {
		display: block;
	}

	.primary-navigation .menu a,
	.header-quote-link {
		display: block;
		padding: 12px 10px;
		font-size: 0.9rem;
	}

	.primary-navigation .sub-menu {
		position: static;
		display: block;
		margin-left: 12px;
		padding: 0 0 0 10px;
		border: 0;
		border-left: 1px solid var(--wts-border);
		background: transparent;
		box-shadow: none;
	}

	.mobile-actions {
		display: grid;
		gap: 10px;
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--wts-border);
	}

	.mobile-actions .button {
		width: 100%;
	}

	.transport-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.review-grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.article-sidebar {
		position: static;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.faq-filters {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .primary-navigation {
		top: calc(var(--wts-header-height) + 46px);
	}

	.blog-toolbar-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.blog-search {
		width: min(100%, 420px);
	}
}

@media (max-width: 680px) {
	:root {
		--wts-header-height: 60px;
	}

	.container,
	.container-narrow {
		width: min(100% - 32px, var(--wts-container));
	}

	.section {
		padding-block: 70px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 34px;
	}

	.site-logo-image,
	.custom-logo {
		height: 43px;
	}

	.hero-content {
		padding-block: 60px 170px;
	}

	.home-hero h1 {
		font-size: clamp(2.45rem, 13vw, 4rem);
	}

	.button-large {
		width: 100%;
		padding-inline: 22px;
	}

	.hero-trust {
		display: grid;
		gap: 11px;
		margin-top: 34px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding-block: 15px;
	}

	.transport-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.transport-card {
		min-height: 180px;
	}

	.benefit-grid,
	.review-grid,
	.post-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.cta-panel {
		padding: 50px 22px;
	}

	.archive-hero,
	.page-hero {
		padding-block: calc(var(--wts-header-height) + 55px) 48px;
	}

	.archive-content {
		padding-block: 50px 70px;
	}

	.single-hero {
		padding-block: calc(var(--wts-header-height) + 45px) 55px;
	}

	.single-layout {
		padding-block: 50px 70px;
	}

	.entry-content {
		font-size: 1rem;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.faq-answer {
		padding-right: 0;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-block: 50px 38px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.alignleft,
	.alignright {
		float: none;
		margin: 20px auto;
	}
}

@media (max-width: 420px) {
	.transport-grid {
		grid-template-columns: 1fr;
	}

	.home-hero h1 {
		font-size: 2.35rem;
	}
}

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

	.fade-up {
		opacity: 1;
		transform: none;
	}
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	background: var(--wts-bg);
}

::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: rgba(65, 184, 94, 0.48);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--wts-primary);
}
