/*
Theme Name: Wanderlust Travel
Theme URI: https://example.com/wanderlust-travel
Author: Your Agency
Author URI: https://example.com
Description: A complete, self-contained WordPress theme for travel agencies and tour operators. Includes Tour and Destination post types, booking inquiry forms, and a ready-made homepage layout. No page builder or third-party plugin required.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanderlust
Tags: travel, blog, e-commerce, one-column, two-columns, right-sidebar, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

Wanderlust Travel is distributed under the terms of the GNU GPL v2 or later.
*/

/* -------------------------------------------------------------------------
   0. CSS Reset (minimal)
-------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
figure { margin: 0; }

/* -------------------------------------------------------------------------
   1. CSS Variables
-------------------------------------------------------------------------- */
:root {
	--w-navy: #0e2a3d;
	--w-navy-dark: #081b28;
	--w-teal: #1c8c8c;
	--w-teal-dark: #146868;
	--w-coral: #ef7a52;
	--w-coral-dark: #d9612f;
	--w-sand: #f7f3ea;
	--w-sand-dark: #ece4d2;
	--w-white: #ffffff;
	--w-ink: #1f2d33;
	--w-muted: #5b6b73;
	--w-border: #e1dcce;
	--w-radius-sm: 6px;
	--w-radius: 12px;
	--w-radius-lg: 20px;
	--w-shadow: 0 10px 30px rgba(14, 42, 61, 0.10);
	--w-shadow-sm: 0 4px 14px rgba(14, 42, 61, 0.08);
	--w-font-heading: Georgia, 'Times New Roman', serif;
	--w-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--w-container: 1200px;
}

/* -------------------------------------------------------------------------
   2. Base
-------------------------------------------------------------------------- */
body {
	font-family: var(--w-font-body);
	color: var(--w-ink);
	background: var(--w-white);
	line-height: 1.65;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--w-font-heading);
	color: var(--w-navy);
	line-height: 1.2;
	margin: 0 0 .5em;
	font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; color: var(--w-muted); }

.container {
	max-width: var(--w-container);
	margin: 0 auto;
	padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sand { background: var(--w-sand); }
.section--navy { background: var(--w-navy); color: var(--w-sand); }
.section--navy h2, .section--navy h3 { color: var(--w-white); }
.section--navy p { color: rgba(247, 243, 234, .8); }

.section-eyebrow {
	display: inline-block;
	color: var(--w-coral);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .95rem;
	border: 2px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--w-coral); color: var(--w-white); box-shadow: var(--w-shadow-sm); }
.btn-primary:hover { background: var(--w-coral-dark); color: var(--w-white); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--w-navy); }
.btn-outline:hover { background: var(--w-navy); color: var(--w-white); }
.section--navy .btn-outline { color: var(--w-white); }
.section--navy .btn-outline:hover { background: var(--w-white); color: var(--w-navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* -------------------------------------------------------------------------
   3. Header
-------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--w-border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
	max-width: var(--w-container);
	margin: 0 auto;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding img { max-height: 46px; width: auto; }
.site-title {
	font-family: var(--w-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--w-navy);
	margin: 0;
}
.site-title a { display: block; }
.site-description { font-size: .75rem; color: var(--w-muted); margin: 0; }

.primary-navigation { display: flex; align-items: center; gap: 4px; }
.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.primary-menu > li > a {
	display: block;
	padding: 10px 16px;
	font-weight: 600;
	font-size: .95rem;
	color: var(--w-navy);
	border-radius: 999px;
	transition: background .15s ease, color .15s ease;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a { background: var(--w-sand-dark); color: var(--w-teal-dark); }

.primary-menu li { position: relative; }
.primary-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--w-white);
	border-radius: var(--w-radius-sm);
	box-shadow: var(--w-shadow);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.primary-menu li:hover > ul.sub-menu,
.primary-menu li.focus > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu ul.sub-menu a { padding: 10px 14px; border-radius: 6px; display: block; font-weight: 500; }
.primary-menu ul.sub-menu a:hover { background: var(--w-sand); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 700; color: var(--w-navy); font-size: .9rem; }
.header-phone small { display: block; font-weight: 400; color: var(--w-muted); font-size: .72rem; }

.menu-toggle {
	display: none;
	background: none;
	border: none;
	width: 42px;
	height: 42px;
	position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
	content: '';
	position: absolute;
	left: 9px;
	right: 9px;
	height: 2px;
	background: var(--w-navy);
	transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span { top: 20px; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle.is-active span { background: transparent; }
.menu-toggle.is-active span::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
	.menu-toggle { display: block; }
	.primary-navigation {
		position: fixed;
		inset: 72px 0 0 0;
		background: var(--w-white);
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .25s ease;
	}
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: stretch; width: 100%; }
	.primary-menu ul.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
	.primary-menu li.focus > ul.sub-menu, .primary-menu li:hover > ul.sub-menu { display: block; }
	.header-cta { margin-top: 24px; flex-direction: column; align-items: stretch; }
	.header-phone { display: none; }
}

/* -------------------------------------------------------------------------
   4. Hero / Homepage
-------------------------------------------------------------------------- */
.hero {
	position: relative;
	background: linear-gradient(160deg, var(--w-navy) 0%, var(--w-navy-dark) 100%);
	color: var(--w-white);
	padding: 90px 0 130px;
	overflow: hidden;
}
.hero::after {
	content: '';
	position: absolute;
	right: -120px;
	top: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(239,122,82,.35), transparent 70%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero p.lead { color: rgba(247,243,234,.85); font-size: 1.15rem; max-width: 560px; }
.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-search {
	position: relative;
	z-index: 3;
	background: var(--w-white);
	border-radius: var(--w-radius);
	box-shadow: var(--w-shadow);
	padding: 22px;
	margin: -70px auto 0;
	max-width: var(--w-container);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr auto;
	gap: 16px;
	align-items: end;
}
.hero-search .field label {
	display: block;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--w-muted);
	margin-bottom: 6px;
}
.hero-search select,
.hero-search input[type="text"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--w-border);
	border-radius: var(--w-radius-sm);
	background: var(--w-sand);
	color: var(--w-ink);
}
@media (max-width: 900px) {
	.hero-search { grid-template-columns: 1fr 1fr; margin-top: -40px; }
	.hero-search .btn { grid-column: 1 / -1; }
}

/* Stats strip */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 70px;
}
.stats .stat { text-align: center; }
.stats .stat .num { font-family: var(--w-font-heading); font-size: 2.2rem; color: var(--w-coral); font-weight: 700; }
.stats .stat .label { font-size: .85rem; color: var(--w-muted); text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Card grids */
.grid { display: grid; gap: 30px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

/* Tour card */
.tour-card {
	background: var(--w-white);
	border-radius: var(--w-radius);
	overflow: hidden;
	box-shadow: var(--w-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--w-shadow); }
.tour-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--w-sand-dark); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--w-coral);
	color: var(--w-white);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 6px 12px;
	border-radius: 999px;
}
.tour-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-card__meta { display: flex; gap: 14px; font-size: .82rem; color: var(--w-muted); flex-wrap: wrap; }
.tour-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card__title { font-size: 1.15rem; margin: 0; }
.tour-card__title a:hover { color: var(--w-teal); }
.tour-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--w-border);
}
.tour-card__price { font-weight: 700; color: var(--w-navy); font-size: 1.05rem; }
.tour-card__price small { display: block; font-weight: 400; color: var(--w-muted); font-size: .72rem; }

/* Destination card */
.destination-card {
	position: relative;
	border-radius: var(--w-radius);
	overflow: hidden;
	aspect-ratio: 3/4;
	color: var(--w-white);
	box-shadow: var(--w-shadow-sm);
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .4s ease; }
.destination-card:hover img { transform: scale(1.06); }
.destination-card::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(8,27,40,.88), rgba(8,27,40,.05) 60%);
}
.destination-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; }
.destination-card__count { font-size: .78rem; opacity: .85; }
.destination-card__title { color: var(--w-white); margin: 4px 0 0; font-size: 1.3rem; }

/* Testimonials */
.testimonial-card {
	background: var(--w-white);
	border-radius: var(--w-radius);
	padding: 30px;
	box-shadow: var(--w-shadow-sm);
	height: 100%;
}
.testimonial-card__stars { color: var(--w-coral); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card__quote { font-style: italic; color: var(--w-ink); }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-card__author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card__author strong { display: block; color: var(--w-navy); }
.testimonial-card__author span { font-size: .8rem; color: var(--w-muted); }

/* Feature list (why choose us) */
.feature {
	display: flex;
	gap: 18px;
}
.feature__icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--w-teal);
	color: var(--w-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}
.feature__title { margin: 0 0 6px; font-size: 1.05rem; }

/* CTA band */
.cta-band {
	background: var(--w-coral);
	border-radius: var(--w-radius-lg);
	padding: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	color: var(--w-white);
}
.cta-band h2, .cta-band p { color: var(--w-white); }
.cta-band .btn-outline { color: var(--w-white); }
.cta-band .btn-outline:hover { background: var(--w-white); color: var(--w-coral-dark); }

/* -------------------------------------------------------------------------
   5. Single Tour / Destination
-------------------------------------------------------------------------- */
.page-hero {
	background: linear-gradient(160deg, var(--w-navy), var(--w-navy-dark));
	color: var(--w-white);
	padding: 60px 0;
}
.page-hero .breadcrumb { font-size: .82rem; opacity: .75; margin-bottom: 10px; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { color: var(--w-white); margin-bottom: 6px; }
.page-hero__meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; font-size: .9rem; opacity: .9; }

.entry-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .entry-layout { grid-template-columns: 1fr; } }

.tour-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 34px; border-radius: var(--w-radius); overflow: hidden; }
.tour-gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: 100%; }
.tour-gallery a:first-child img { grid-row: span 2; grid-column: span 2; aspect-ratio: 1/1; }
@media (max-width: 640px) { .tour-gallery { grid-template-columns: repeat(2, 1fr); } .tour-gallery a:first-child img { grid-column: span 2; } }

.info-box {
	background: var(--w-sand);
	border-radius: var(--w-radius);
	padding: 26px;
	margin-bottom: 26px;
}
.info-box dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin: 0; }
.info-box dt { font-weight: 700; color: var(--w-navy); }
.info-box dd { margin: 0; color: var(--w-muted); }

.itinerary-day {
	border-left: 3px solid var(--w-teal);
	padding: 4px 0 24px 24px;
	position: relative;
}
.itinerary-day::before {
	content: '';
	position: absolute; left: -8px; top: 4px;
	width: 14px; height: 14px; border-radius: 50%;
	background: var(--w-teal);
	border: 3px solid var(--w-white);
	box-shadow: 0 0 0 1px var(--w-teal);
}
.itinerary-day h4 { margin-bottom: 6px; color: var(--w-navy); }

.check-list li, .cross-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	color: var(--w-ink);
}
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--w-teal); font-weight: 700; }
.cross-list li::before { content: '✕'; position: absolute; left: 0; color: var(--w-coral); font-weight: 700; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
@media (max-width: 640px) { .includes-grid { grid-template-columns: 1fr; } }

/* Booking sidebar */
.booking-box {
	background: var(--w-white);
	border: 1px solid var(--w-border);
	border-radius: var(--w-radius);
	box-shadow: var(--w-shadow);
	padding: 26px;
	position: sticky;
	top: 100px;
}
.booking-box__price { font-family: var(--w-font-heading); font-size: 2rem; color: var(--w-navy); font-weight: 700; }
.booking-box__price small { display: block; font-size: .8rem; font-weight: 400; color: var(--w-muted); }
.booking-box hr { border: none; border-top: 1px solid var(--w-border); margin: 18px 0; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--w-navy); }
.form-field input, .form-field textarea, .form-field select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--w-border);
	border-radius: var(--w-radius-sm);
	background: var(--w-sand);
	color: var(--w-ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 2px solid var(--w-teal); outline-offset: 1px; }
.form-message { padding: 14px 18px; border-radius: var(--w-radius-sm); margin-bottom: 20px; font-size: .92rem; }
.form-message--success { background: #e4f4ee; color: #1c6b4f; border: 1px solid #b9e3d0; }
.form-message--error { background: #fdecea; color: #a83226; border: 1px solid #f6c6bf; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* Sidebar widgets */
.widget { margin-bottom: 40px; }
.widget-title { font-size: 1.1rem; border-bottom: 2px solid var(--w-sand-dark); padding-bottom: 10px; margin-bottom: 18px; }
.widget ul li { padding: 8px 0; border-bottom: 1px dashed var(--w-border); }
.widget select, .widget input { width: 100%; }

/* -------------------------------------------------------------------------
   6. Blog / Archive / Single Post
-------------------------------------------------------------------------- */
.post-card { background: var(--w-white); border-radius: var(--w-radius); overflow: hidden; box-shadow: var(--w-shadow-sm); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--w-sand-dark); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px; }
.post-card .entry-meta { font-size: .78rem; color: var(--w-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.post-card h2 { font-size: 1.2rem; }

.single-post .entry-header { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.single-post .entry-content { max-width: 760px; margin: 0 auto; }
.single-post .entry-content p, .single-post .entry-content li { color: var(--w-ink); font-size: 1.05rem; }
.single-post .entry-content img { border-radius: var(--w-radius); margin: 24px 0; }
.single-post .entry-content h2 { margin-top: 1.4em; }
.single-post .entry-content blockquote {
	border-left: 4px solid var(--w-coral);
	padding: 6px 24px;
	font-style: italic;
	color: var(--w-navy);
	margin: 24px 0;
}

.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 10px;
	border-radius: 999px; border: 1px solid var(--w-border);
	font-weight: 600; color: var(--w-navy);
}
.pagination .current { background: var(--w-navy); color: var(--w-white); border-color: var(--w-navy); }
.pagination a:hover { background: var(--w-sand-dark); }

/* Comments */
.comment-list { list-style: none; margin: 0 0 40px; }
.comment-body { background: var(--w-sand); border-radius: var(--w-radius); padding: 20px; margin-bottom: 16px; }
.comment-author { font-weight: 700; color: var(--w-navy); }
.comment-metadata { font-size: .78rem; color: var(--w-muted); margin-bottom: 8px; }
.comment-reply-link { font-size: .8rem; font-weight: 700; color: var(--w-teal); }
.children { margin-left: 30px; }

/* Search form */
.search-form { display: flex; gap: 10px; }
.search-form input[type="search"] { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--w-border); background: var(--w-sand); }
.search-form button { padding: 12px 20px; border-radius: 999px; background: var(--w-navy); color: var(--w-white); border: none; font-weight: 700; }

/* -------------------------------------------------------------------------
   7. Footer
-------------------------------------------------------------------------- */
.site-footer { background: var(--w-navy-dark); color: rgba(247,243,234,.85); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--w-white); font-size: 1rem; margin-bottom: 18px; }
.footer-grid .site-title { color: var(--w-white); }
.footer-about p { color: rgba(247,243,234,.7); }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--w-coral); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center;
	font-size: .85rem; font-weight: 700;
}
.social-links a:hover { background: var(--w-coral); }
.footer-bottom {
	display: flex; justify-content: space-between; align-items: center;
	padding: 22px 0; font-size: .82rem; color: rgba(247,243,234,.6);
	flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--w-white); }

/* -------------------------------------------------------------------------
   8. WordPress core alignment helpers
-------------------------------------------------------------------------- */
.alignleft { float: left; margin: 0 24px 12px 0; }
.alignright { float: right; margin: 0 0 12px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text { font-size: .82rem; color: var(--w-muted); text-align: center; margin-top: 6px; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 9999;
	background: var(--w-navy); color: var(--w-white); padding: 12px 20px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 0; color: var(--w-muted); }
