/*
 * Article body typography. Scoped to body.single-post (WordPress core's
 * class for any single post/page view) so these rules can never apply on
 * an archive, search, or other listing page that happens to reuse the same
 * Elementor widget classes.
 *
 * Articles on this site render their body content two different ways
 * depending on how the page was built: some place an explicit Elementor
 * Text Editor widget (.elementor-widget-text-editor) per content block,
 * others use Elementor's Theme Builder "Post Content" dynamic widget
 * (.elementor-widget-theme-post-content), which just outputs the_content()
 * inside its own wrapper class instead. Every rule below targets both so
 * styling is consistent regardless of which one a given article uses;
 * .entry-content is also kept as a fallback for the plain
 * single.php/the_content() path in case Elementor isn't controlling the
 * template.
 */

body.single-post .elementor-widget-text-editor h2,
body.single-post .elementor-widget-text-editor h3,
body.single-post .elementor-widget-text-editor h4,
body.single-post .elementor-widget-text-editor h5,
body.single-post .elementor-widget-text-editor h6,
body.single-post .elementor-widget-theme-post-content h2,
body.single-post .elementor-widget-theme-post-content h3,
body.single-post .elementor-widget-theme-post-content h4,
body.single-post .elementor-widget-theme-post-content h5,
body.single-post .elementor-widget-theme-post-content h6,
body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4,
body.single-post .entry-content h5,
body.single-post .entry-content h6 {
	margin-top: 1.75em;
	margin-bottom: 0.5em;
}

/*
 * Elementor's accordion widgets (FAQ sections) render their question titles
 * in the site's muted/secondary color (#8A9494) by default, which reads too
 * pale for a clickable heading. Darken and bolden to match how other
 * prominent titles look elsewhere on the site.
 *
 * Deliberately NOT scoped to body.single-post any more. It was, which meant
 * the rule only ever reached blog posts - FAQ blocks on pages and on the
 * destination CPT (e.g. /destinations/heraklion-airport-transfers/) kept the
 * pale default even though this stylesheet loads there too (it enqueues on
 * any is_singular() view). Unscoping makes FAQ titles consistent everywhere
 * this stylesheet applies.
 *
 * Colour comes from Elementor's global accent rather than a hard-coded hex,
 * so it follows the site's Elementor colour set if that is ever retuned. The
 * literal is kept only as a fallback and matches the theme's own
 * --vt-accent definition in booking-form-base.css.
 *
 * Both accordion generations are covered: .e-n-accordion-item-title-text is
 * the current nested-accordion widget, .elementor-accordion-title and
 * .elementor-toggle-title are the older Accordion/Toggle widgets.
 */
.e-n-accordion-item-title-text,
.elementor-accordion-title,
.elementor-toggle-title {
	color: var(--e-global-color-accent, #163A40) !important;
	font-weight: 700 !important;
}

body.single-post .elementor-widget-text-editor a,
body.single-post .elementor-widget-theme-post-content a {
	font-weight: 700 !important;
	text-decoration: underline !important;
}

body.single-post .elementor-widget-text-editor img,
body.single-post .elementor-widget-theme-post-content img {
	border-radius: 8px !important;
}

/*
 * "At a glance" tour-details card - <dl class="versatours-tour-details">
 * pairs, one dt/dd per row via CSS grid, no HTML changes required.
 */

body.single-post .versatours-tour-details {
	display: grid;
	grid-template-columns: auto 1fr;
	background: #F7F5EF;
	border-radius: 20px;
	padding: 32px 40px;
	margin: 0 0 32px;
	margin-top: 32px;
}

body.single-post .versatours-tour-details dt,
body.single-post .versatours-tour-details dd {
	margin: 0;
	padding: 16px 0;
	border-top: 1px solid rgba(22, 58, 64, 0.1);
	font-family: "DM Sans", sans-serif;
	line-height: 1.4;
}

body.single-post .versatours-tour-details dt:first-of-type,
body.single-post .versatours-tour-details dd:first-of-type {
	border-top: none;
	padding-top: 0;
}

body.single-post .versatours-tour-details dt {
	padding-right: 24px;
	color: #163A40;
	font-size: 18px;
	font-weight: 700;
	text-align: left;
}

body.single-post .versatours-tour-details dd {
	color: #8A9494;
	font-size: 17px;
	font-weight: 400;
	text-align: right;
}

@media (max-width: 600px) {
	body.single-post .versatours-tour-details {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	body.single-post .versatours-tour-details dt,
	body.single-post .versatours-tour-details dd {
		text-align: left;
	}

	body.single-post .versatours-tour-details dd {
		padding-top: 2px;
		border-top: none;
	}

	body.single-post .versatours-tour-details dt:not(:first-of-type) {
		padding-top: 16px;
		border-top: 1px solid rgba(22, 58, 64, 0.1);
	}
}

/*
 * "How to make a reservation" page. Every rule is scoped under .vt-book-page
 * (a wrapper class placed on the page's top-level Elementor container) so
 * none of it can ever leak onto another page.
 */

.vt-book-page {
	--vtb-green: #163A40;
	--vtb-gold: #F5A623;
	--vtb-orange: #E8622A;
	--vtb-cream: #F7F5EF;
	--vtb-cream-2: #FBF9F4;
	--vtb-text: #33423F;
	--vtb-text-muted: #5B6B64;
	--vtb-text-faint: #8A9494;
	--vtb-border: #E7E2D5;
	font-family: "DM Sans", sans-serif;
	color: var(--vtb-text);
}

.vt-book-page * {
	box-sizing: border-box;
}

.vt-book-page h1,
.vt-book-page h2,
.vt-book-page h3,
.vt-book-page h4 {
	font-family: "DM Sans", sans-serif !important;
	color: var(--vtb-green) !important;
	font-weight: 700 !important;
	margin: 0;
	line-height: 1.2;
}

.vt-book-page p {
	margin: 0;
	line-height: 1.6;
}

/* Hero */

.vt-book-hero {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	padding: 96px 40px;
	background: linear-gradient(180deg, rgba(22, 58, 64, 0.55) 0%, rgba(22, 58, 64, 0.82) 100%), var(--vtb-green) center/cover no-repeat;
	text-align: center;
	color: #fff;
}

.vt-book-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--vtb-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.vt-book-hero h1 {
	color: #fff !important;
	font-size: 48px;
	font-weight: 700;
	max-width: 720px;
	margin: 0 auto 20px;
}

.vt-book-hero p {
	max-width: 560px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
}

.vt-book-stats {
	display: flex !important;
	justify-content: center !important;
	gap: 56px !important;
	margin-top: 48px;
	flex-wrap: wrap !important;
}

.vt-book-stat {
	text-align: center;
}

.vt-book-stat-num {
	font-size: 32px;
	font-weight: 700;
	color: var(--vtb-gold);
}

.vt-book-stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 4px;
}

/* Intro */

.vt-book-intro {
	display: grid !important;
	grid-template-columns: 1.4fr 1fr !important;
	gap: 48px !important;
	padding: 80px 0 !important;
	align-items: start !important;
}

.vt-book-intro h2 {
	font-size: 32px;
	margin-bottom: 16px;
}

.vt-book-intro p {
	color: var(--vtb-text-muted);
	font-size: 16px;
}

.vt-book-contact-card {
	background: var(--vtb-cream);
	border-radius: 20px;
	padding: 32px;
}

.vt-book-contact-card h3 {
	font-size: 18px;
	margin-bottom: 16px;
}

.vt-book-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid var(--vtb-border);
	font-size: 15px;
	color: var(--vtb-text);
}

.vt-book-contact-row:first-of-type {
	border-top: none;
	padding-top: 0;
}

.vt-book-contact-row svg {
	flex: 0 0 auto;
	color: var(--vtb-gold);
}

/* Steps */

.vt-book-steps {
	padding: 40px 0 80px;
}

.vt-book-steps-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px !important;
	margin-top: 40px;
}

.vt-book-step {
	background: var(--vtb-cream-2);
	border: 1px solid var(--vtb-border);
	border-radius: 16px;
	padding: 28px 24px;
}

.vt-book-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--vtb-green);
	color: var(--vtb-gold);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.vt-book-step h4 {
	font-size: 17px;
	margin-bottom: 8px;
}

.vt-book-step p {
	color: var(--vtb-text-muted);
	font-size: 14px;
}

/* Payment */

.vt-book-payment {
	background: var(--vtb-green);
	border-radius: 24px;
	padding: 64px 40px;
	color: #fff;
	margin: 40px 0;
}

.vt-book-payment-head {
	max-width: 620px;
	margin: 0 auto 40px;
	text-align: center;
}

.vt-book-payment-head h2 {
	color: #fff !important;
	font-size: 30px;
	margin-bottom: 12px;
}

.vt-book-payment-head p {
	color: rgba(255, 255, 255, 0.75);
}

.vt-book-payment-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 24px !important;
	max-width: 900px;
	margin: 0 auto;
}

.vt-book-payment-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	padding: 32px;
}

.vt-book-payment-card--full {
	background: var(--vtb-gold);
	border-color: var(--vtb-gold);
	color: var(--vtb-green);
}

.vt-book-payment-card h3 {
	color: #fff !important;
	font-size: 20px;
	margin-bottom: 12px;
}

.vt-book-payment-card--full h3 {
	color: var(--vtb-green) !important;
}

.vt-book-payment-card p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	margin-bottom: 16px;
}

.vt-book-payment-card--full p {
	color: rgba(22, 58, 64, 0.75);
}

.vt-book-payment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

.vt-book-payment-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

.vt-book-payment-card--full .vt-book-payment-list li {
	color: var(--vtb-green);
}

.vt-book-payment-list svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--vtb-gold);
}

.vt-book-payment-card--full .vt-book-payment-list svg {
	color: var(--vtb-green);
}

/* Meeting point */

.vt-book-meeting {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 56px !important;
	padding: 80px 0 !important;
	align-items: center !important;
}

.vt-book-meeting h2 {
	font-size: 30px;
	margin-bottom: 16px;
}

.vt-book-meeting > div > p {
	color: var(--vtb-text-muted);
	margin-bottom: 24px;
}

.vt-book-feature-row {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px;
	padding: 14px 0;
	border-top: 1px solid var(--vtb-border);
}

.vt-book-feature-row:first-of-type {
	border-top: none;
}

.vt-book-feature-row svg {
	flex: 0 0 auto;
	color: var(--vtb-gold);
	margin-top: 2px;
}

.vt-book-feature-row strong {
	display: block;
	color: var(--vtb-green);
	font-size: 15px;
}

.vt-book-feature-row span {
	display: block;
	color: var(--vtb-text-muted);
	font-size: 14px;
}

.vt-book-meeting-images {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 16px !important;
}

.vt-book-meeting-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.vt-book-meeting-images > :first-child {
	grid-column: 1 / -1;
}

.vt-book-meeting-images img {
	aspect-ratio: 16 / 10;
}

.vt-book-meeting-images > :first-child img {
	aspect-ratio: 16 / 8;
}

/* Included as standard */

.vt-book-included {
	background: var(--vtb-cream);
	border-radius: 24px;
	padding: 64px 40px;
	margin: 40px 0;
}

.vt-book-included-head {
	max-width: 620px;
	margin: 0 auto 40px;
	text-align: center;
}

.vt-book-included-head h2 {
	font-size: 30px;
	margin-bottom: 12px;
}

.vt-book-included-head p {
	color: var(--vtb-text-muted);
}

.vt-book-included-grid,
.vt-book-terms-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 20px 32px !important;
	max-width: 900px;
	margin: 0 auto;
}

.vt-book-included-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px;
}

.vt-book-included-item svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: var(--vtb-gold);
	margin-top: 2px;
}

.vt-book-included-item strong {
	display: block;
	color: var(--vtb-green);
	font-size: 15px;
	margin-bottom: 2px;
}

.vt-book-included-item span {
	display: block;
	color: var(--vtb-text-muted);
	font-size: 14px;
}

/* Booking terms */

.vt-book-terms {
	padding: 40px 0 80px;
}

.vt-book-terms-head {
	max-width: 620px;
	margin: 0 auto 40px;
	text-align: center;
}

.vt-book-terms-head h2 {
	font-size: 30px;
	margin-bottom: 12px;
}

.vt-book-terms-head p {
	color: var(--vtb-text-muted);
}

.vt-book-term-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px;
}

.vt-book-term-num {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--vtb-green);
	color: var(--vtb-gold);
	font-size: 12px;
	font-weight: 700;
}

.vt-book-term-item p {
	color: var(--vtb-text-muted);
	font-size: 14px;
}

/* CTA */

.vt-book-cta {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	padding: 80px 40px;
	background: linear-gradient(180deg, rgba(22, 58, 64, 0.7) 0%, rgba(22, 58, 64, 0.88) 100%), var(--vtb-green) center/cover no-repeat;
	text-align: center;
	color: #fff;
	margin-bottom: 80px;
}

.vt-book-cta h2 {
	color: #fff !important;
	font-size: 32px;
	max-width: 560px;
	margin: 0 auto 16px;
}

.vt-book-cta p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 480px;
	margin: 0 auto 32px;
}

.vt-book-cta-actions {
	display: flex !important;
	justify-content: center !important;
	gap: 16px !important;
	flex-wrap: wrap !important;
}

.vt-book-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	background: var(--vtb-gold) !important;
	color: var(--vtb-green) !important;
}

.vt-book-btn--ghost {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff !important;
}

/*
 * The two CTA buttons on the live "how-it-works" page lost their
 * vt-book-btn / vt-book-btn--ghost CSS classes on Elementor's JSON
 * template import (the button widget's css_classes setting was silently
 * dropped, unlike the container widget's, which imported fine). Rather
 * than ask the owner to re-import, target Elementor's own per-element
 * IDs directly so the two existing live buttons pick up the right look.
 */
.vt-book-cta .elementor-element-58661a8b .elementor-button {
	display: inline-flex !important;
	align-items: center;
	padding: 14px 28px !important;
	border-radius: 999px !important;
	font-size: 15px;
	font-weight: 700;
	background: var(--vtb-gold) !important;
	color: var(--vtb-green) !important;
	border: none !important;
}

.vt-book-cta .elementor-element-25bb5e63 .elementor-button {
	display: inline-flex !important;
	align-items: center;
	padding: 14px 28px !important;
	border-radius: 999px !important;
	font-size: 15px;
	font-weight: 700;
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	color: #fff !important;
}

/*
 * "How Your Versatours Booking Works" page (/how-it-works/), replacing the
 * earlier "How to make a reservation" build. Scoped under .vt-hiw-page so it
 * can never leak onto another page. Heading colors and layout properties
 * carry !important from the start this time - importing this same content
 * as an Elementor container/widget template earlier today showed Elementor's
 * own inline Global Kit CSS (.elementor-kit-31746 h1/h2/h3 { color: ... })
 * beats plain theme CSS on identical selectors. Buttons are built as HTML
 * widgets with real <a> tags, not Elementor's native button widget, because
 * that widget's css_classes setting was silently dropped on import.
 */

.vt-hiw-page {
	--vth-green: #163A40;
	--vth-gold: #F5A623;
	--vth-cream: #F7F5EF;
	--vth-cream-2: #FBF9F4;
	--vth-text: #33423F;
	--vth-text-muted: #5B6B64;
	--vth-border: #E7E2D5;
	font-family: "DM Sans", sans-serif;
	color: var(--vth-text);
}

.vt-hiw-page * {
	box-sizing: border-box;
}

.vt-hiw-page h1,
.vt-hiw-page h2,
.vt-hiw-page h3,
.vt-hiw-page h4 {
	font-family: "DM Sans", sans-serif !important;
	color: var(--vth-green) !important;
	font-weight: 700 !important;
	margin: 0;
	line-height: 1.25;
}

.vt-hiw-page p {
	margin: 0;
	line-height: 1.6;
}

/* Hero */

.vt-hiw-hero {
	border-radius: 24px;
	padding: 88px 40px;
	background: linear-gradient(180deg, rgba(22, 58, 64, 0.55) 0%, rgba(22, 58, 64, 0.82) 100%), var(--vth-green) center/cover no-repeat;
	text-align: center;
}

.vt-hiw-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--vth-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.vt-hiw-hero h1 {
	color: #fff !important;
	font-size: 44px;
	max-width: 700px;
	margin: 0 auto 20px;
}

.vt-hiw-hero p {
	max-width: 560px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
}

/* Booking steps */

.vt-hiw-steps {
	padding: 72px 0;
}

.vt-hiw-steps-head {
	max-width: 560px;
	margin: 0 auto 40px;
	text-align: center;
}

.vt-hiw-steps-head h2 {
	font-size: 30px;
}

.vt-hiw-steps-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 24px !important;
}

.vt-hiw-step {
	background: var(--vth-cream-2);
	border: 1px solid var(--vth-border);
	border-radius: 16px;
	padding: 28px 24px;
}

.vt-hiw-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--vth-green);
	color: var(--vth-gold);
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 18px;
}

.vt-hiw-step h3 {
	font-size: 17px;
	margin-bottom: 8px;
}

.vt-hiw-step p {
	color: var(--vth-text-muted);
	font-size: 14px;
}

/* Accordions (native <details>/<summary>, no JS needed) */

.vt-hiw-accordions {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 0 72px;
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
}

.vt-hiw-accordion {
	background: var(--vth-cream);
	border-radius: 16px;
	padding: 4px 28px;
}

.vt-hiw-accordion summary {
	cursor: pointer;
	list-style: none;
	padding: 20px 0;
	font-weight: 700;
	color: var(--vth-green);
	font-size: 18px;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}

.vt-hiw-accordion summary::-webkit-details-marker {
	display: none;
}

.vt-hiw-accordion summary::after {
	content: "+";
	font-size: 22px;
	font-weight: 400;
	color: var(--vth-gold);
	transition: transform 0.2s ease;
}

.vt-hiw-accordion[open] summary::after {
	transform: rotate(45deg);
}

.vt-hiw-accordion-body {
	padding: 0 0 24px;
}

.vt-hiw-accordion-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

.vt-hiw-accordion-body li {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px;
	font-size: 15px;
	color: var(--vth-text-muted);
}

.vt-hiw-accordion-body li svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--vth-gold);
}

.vt-hiw-accordion-note {
	margin-top: 16px !important;
	font-size: 14px;
	color: var(--vth-text-muted);
}

.vt-hiw-accordion-link {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 22px;
	border-radius: 999px;
	background: var(--vth-green);
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
}

/* Final CTA */

.vt-hiw-cta {
	border-radius: 24px;
	padding: 72px 40px;
	background: var(--vth-green);
	text-align: center;
	margin-bottom: 72px;
}

.vt-hiw-cta h2 {
	color: #fff !important;
	font-size: 30px;
	max-width: 520px;
	margin: 0 auto 14px;
}

.vt-hiw-cta p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 460px;
	margin: 0 auto 32px;
}

.vt-hiw-cta-actions {
	display: flex !important;
	justify-content: center !important;
	gap: 16px !important;
	flex-wrap: wrap !important;
}

.vt-hiw-btn {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	background: var(--vth-gold) !important;
	color: var(--vth-green) !important;
}

.vt-hiw-btn--ghost {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff !important;
}

@media (max-width: 900px) {
	.vt-hiw-hero {
		padding: 56px 24px;
	}

	.vt-hiw-hero h1 {
		font-size: 30px;
	}

	.vt-hiw-steps-grid {
		grid-template-columns: 1fr 1fr !important;
	}

	.vt-hiw-accordion {
		padding: 4px 20px;
	}

	.vt-hiw-cta {
		padding: 48px 24px;
	}
}

@media (max-width: 600px) {
	.vt-hiw-steps-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 900px) {
	.vt-book-hero {
		padding: 64px 24px;
	}

	.vt-book-hero h1 {
		font-size: 32px;
	}

	.vt-book-stats {
		gap: 32px;
	}

	.vt-book-intro,
	.vt-book-meeting {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 48px 0;
	}

	.vt-book-steps-grid {
		grid-template-columns: 1fr 1fr;
	}

	.vt-book-payment {
		padding: 40px 20px;
	}

	.vt-book-payment-grid {
		grid-template-columns: 1fr;
	}

	.vt-book-included,
	.vt-book-cta {
		padding: 40px 20px;
	}

	.vt-book-included-grid,
	.vt-book-terms-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.vt-book-steps-grid {
		grid-template-columns: 1fr;
	}

	.vt-book-hero h1 {
		font-size: 26px;
	}
}

.elementor-widget-n-accordion .e-n-accordion-item-title { padding-left:0 !important; }

/*
 * .vt-table - opt-in styling for a table inside an article body.
 *
 * Scoped to body.single-post and applied only where the class is present, so
 * it can never reach a booking table, an Elementor widget table, or anything
 * in wp-admin. Adding the class to a table is the whole contract; there is no
 * wrapper element to remember.
 *
 * Colours are the site palette repeated as literals rather than read from
 * --vth-* tokens, because those are declared on .vt-hiw-page and would resolve
 * to nothing out here. Article prose runs 17-18px, so 16px keeps the table
 * quieter than the text around it without looking shrunken.
 *
 * The mobile rule is the one that earns its place. A wide table on a phone
 * either squeezes into unreadable columns or pushes the whole page sideways,
 * and the second is far worse - it breaks every other element on the screen.
 * Turning the table itself into the scroll container keeps the damage inside
 * the table. `white-space: nowrap` is what forces that scroll to exist:
 * without it the browser reflows columns to fit and the overflow never
 * happens, which is the failure this rule is here to prevent.
 */
body.single-post .vt-table {
	width: 100%;
	margin: 28px 0;
	border: 1px solid #E7E2D5;
	border-radius: 12px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.5;
	color: #33423F;
}

body.single-post .vt-table th,
body.single-post .vt-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #E7E2D5;
	text-align: left;
	vertical-align: top;
}

body.single-post .vt-table thead th {
	background: #163A40;
	color: #F8F4EA;
	border-bottom: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.single-post .vt-table tbody tr:nth-child(even) td {
	background: #FBF9F4;
}

body.single-post .vt-table tbody tr:last-child td {
	border-bottom: 0;
}

/* A row-header column, for tables that label their rows rather than columns. */
body.single-post .vt-table tbody th {
	background: #F7F5EF;
	color: #163A40;
	font-weight: 700;
}

body.single-post .vt-table caption {
	padding: 0 0 10px;
	color: #5B6B64;
	font-size: 14px;
	text-align: left;
}

@media (max-width: 767px) {
	body.single-post .vt-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		font-size: 15px;
	}

	body.single-post .vt-table th,
	body.single-post .vt-table td {
		padding: 10px 14px;
		white-space: nowrap;
	}
}
