/* ==========================================================================
   your city Car Rentals — Premium Design System
   Modern, clean, and professional styling with smooth animations
   ========================================================================== */

/* Shared component primitives; page-specific rules remain scoped below. */
.crt-review-item.is-hidden { display: none; }
.crt-map-embed { width: 100%; height: 420px; border: 0; border-radius: var(--crt-radius); }
.crt-hero-banner-default { background-image: url('https://images.pexels.com/photos/36985755/pexels-photo-36985755.jpeg'); }
.crt-gtm-frame { display: none; visibility: hidden; }
.crt-vd-supplier-logo { height: 32px; width: auto; }
.crt-vd-rating-value { font-size: 1.5rem; }
.crt-vd-map-embed { border: 0; }
.is-hidden { display: none !important; }

/*
   CSS architecture
   1. variables.css        — canonical tokens and runtime aliases
   2. component modules    — buttons, cards and forms
   3. base/layout           — reset, typography, containers and utilities
   4. shared components     — header, navigation, hero, sections and cards
   5. content components    — vehicles, services, reviews, FAQ and blog
   6. page scopes           — only genuinely page-specific layouts
   7. responsive/accessibility overrides

   The long page scopes below intentionally remain ordered to preserve the
   existing cascade. Shared rules are kept token-driven and generic.
*/

/* ---------- Design Tokens ---------- */


/* ---------- Base & Reset ---------- */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--crt-font-body);
	color: var(--crt-text);
	background: var(--crt-bg);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--crt-font-heading);
	font-weight: 700;
	color: var(--crt-navy);
	line-height: 1.25;
	margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.85rem; }

p {
	margin-bottom: 1rem;
	color: var(--crt-text-muted);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: var(--crt-container, 1280px);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ---------- Brand Logo ---------- */
.crt-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.crt-logo-img {
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 58px;
}

.crt-logo-img-light {
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.crt-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.crt-logo img {
  width: auto;
  max-height: 60px;
}





/* ---------- Branded Bootstrap button variants ---------- */
.crt-btn-accent {
  color: var(--crt-white);
  background: linear-gradient(135deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
  box-shadow: 0 2px 10px rgba(63, 107, 87, 0.3);
}

.crt-btn-accent:hover {
  color: var(--crt-white);
  background: linear-gradient(135deg, var(--crt-accent-dark) 0%, var(--crt-green-dark) 100%);
  box-shadow: 0 3px 12px rgba(63, 107, 87, 0.4);
}

.crt-btn-outline {
  color: var(--crt-navy);
  background: transparent;
  border: 1px solid var(--crt-navy);
}

.crt-btn-outline:hover {
  color: var(--crt-white);
  background: var(--crt-navy);
}

.crt-btn-white {
  color: var(--crt-navy);
  background: var(--crt-white);
  box-shadow: var(--crt-shadow);
}

.crt-btn-white:hover {
  color: var(--crt-navy);
  background: var(--crt-accent-light);
}

/* Shared button foundation. Keep every site action consistent. */
.crt-btn-primary,
.crt-btn-accent,
.crt-btn-outline,
.crt-btn-white,
.crt-load-more-btn,
.crt-author-view-all-btn,
.crt-sh-call-button,
.crt-airport-rental-info-btn,
.crt-airport-rental-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--crt-radius-sm);
  font-family: var(--crt-font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--crt-transition);
}

/* Primary and accent are aliases so old templates keep the same design. */
.crt-btn-primary,
.crt-btn-accent,
.crt-sh-call-button,
.crt-airport-rental-book-btn {
  border: 1px solid var(--crt-accent);
  background: var(--crt-accent);
  color: var(--crt-white) !important;
  box-shadow: 0 2px 10px rgba(63, 107, 87, 0.24);
}

.crt-btn-primary:hover,
.crt-btn-primary:focus-visible,
.crt-btn-accent:hover,
.crt-btn-accent:focus-visible,
.crt-sh-call-button:hover,
.crt-sh-call-button:focus-visible,
.crt-airport-rental-book-btn:hover,
.crt-airport-rental-book-btn:focus-visible {
  border-color: var(--crt-accent-dark);
  background: var(--crt-accent-dark);
  color: var(--crt-white) !important;
  transform: translateY(-1px);
}

.crt-btn-outline,
.crt-airport-rental-info-btn {
  border: 1px solid var(--crt-accent);
  background: transparent;
  color: var(--crt-accent) !important;
  box-shadow: none;
}

.crt-btn-outline:hover,
.crt-btn-outline:focus-visible,
.crt-airport-rental-info-btn:hover,
.crt-airport-rental-info-btn:focus-visible {
  border-color: var(--crt-accent);
  background: var(--crt-accent-light);
  color: var(--crt-accent-dark) !important;
  transform: translateY(-1px);
}

.crt-btn-white,
.crt-btn-white:hover,
.crt-btn-white:focus-visible {
  border-color: var(--crt-white);
  color: var(--crt-accent-dark) !important;
}

.crt-load-more-btn,
.crt-author-view-all-btn {
  border: 1px solid var(--crt-accent);
  background: var(--crt-accent);
  color: var(--crt-white) !important;
}

.crt-load-more-btn:hover,
.crt-load-more-btn:focus-visible,
.crt-author-view-all-btn:hover,
.crt-author-view-all-btn:focus-visible {
  border-color: var(--crt-accent-dark);
  background: var(--crt-accent-dark);
  color: var(--crt-white) !important;
}

/* ---------- Header & Navigation ---------- */
.crt-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 0 rgba(42, 50, 66, 0.06);
  border-bottom: 1px solid rgba(42, 50, 66, 0.06);
}

.crt-navbar {
  padding: 1.25rem 0;
}

.crt-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggler {
  padding: 0.5rem;
  font-size: 1.75rem;
  color: var(--crt-navy);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--crt-transition);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler:hover {
  color: var(--crt-accent);
  transform: scale(1.1);
}

.crt-header-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.crt-header-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-family: var(--crt-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--crt-header-text);
  text-decoration: none;
  border-radius: var(--crt-radius-sm);
  transition: var(--crt-transition);
}

.crt-header-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: var(--crt-transition);
}

.crt-header-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--crt-accent);
  transform: translateX(-50%);
  transition: var(--crt-transition);
}

.crt-header-link:hover::before {
  height: 60%;
}

.crt-header-link:hover::after {
  width: 60%;
}


.crt-breadcrumbs .breadcrumb {
  margin: 0;
  font-size: 0.9rem;
}

.crt-breadcrumbs a {
  color: var(--crt-text-muted);
}
/* ---------- Hero Section ---------- */

/* =========================================
   PREMIUM HERO IMAGE + BLUR OVERLAY
   ========================================= */

.crt-hero-banner {
	position: relative;
	isolation: isolate;

	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	overflow: hidden;
}


 
/* Background image layer */
.crt-hero-banner::before {
	content: "";
	position: absolute;
	inset: -18px;
	z-index: -2;

	background: inherit;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    
	/* Blur ki jagah white transparent color overlay */
	box-shadow: inset 0 0 0 5000px rgb(51 89 72 / 56%); 

	transform: scale(1.04);
}

.crt-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;

	background: linear-gradient(
		90deg,
		rgba(20, 29, 43, 0.82) 0%,
		rgba(20, 29, 43, 0.68) 50%,
		rgba(20, 29, 43, 0.55) 100%
	);
}


/* Subtle cinematic layer */
.crt-hero-overlay::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.15) 0%,
			rgba(0, 0, 0, 0.05) 45%,
			rgba(0, 0, 0, 0.30) 100%
		);
}


/* Keep actual content sharp */
.crt-hero-inner {
	position: relative;
	z-index: 2;
}


.crt-hero-content {
	position: relative;
	z-index: 3;
}


/* Better text readability */
.crt-hero-title {
	text-shadow:
		0 2px 10px rgba(0, 0, 0, 0.28);
}




/* Mobile */
@media (max-width: 767.98px) {

	.crt-hero-banner::before {
		filter: blur(2.5px);
		transform: scale(1.05);
	}

	.crt-hero-overlay {
		background:
			linear-gradient(
				180deg,
				rgba(8, 15, 25, 0.78) 0%,
				rgba(8, 15, 25, 0.64) 100%
			);

		backdrop-filter: blur(1px);
		-webkit-backdrop-filter: blur(1px);
	}

}
.crt-hero {
	position: relative;
	color: var(--crt-white);
	overflow: hidden;
}

.crt-hero-banner {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--crt-navy);
}

.crt-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(42, 50, 66, 0.85) 0%, rgba(42, 50, 66, 0.65) 50%, rgba(58, 68, 84, 0.75) 100%);
}

.crt-hero-inner {
	position: relative;
	z-index: 2;
/* 	padding: 6rem 0 9rem; */
}

.crt-hero-content {
	/*max-width: 750px;*/
	animation: crt-fade-in-up 1s ease-out;
	/*margin-left: 5px ;*/
}


.crt-hero-title {
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	color: var(--crt-white);
	margin: 0.75rem 0 1.5rem;
	font-weight: 200;
	line-height: 1.05;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.03em;
}





@keyframes crt-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- Search Form ---------- */
 
.crt-search-form {
	background: var(--crt-surface);
	border-radius: var(--crt-radius-lg);
	box-shadow: var(--crt-shadow-xl);
	padding: 2rem;
	border: 1px solid rgba(42, 50, 66, 0.06);
}

.crt-search-form .form-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--crt-text-muted);
	margin-bottom: 0.25rem;
	font-family: var(--crt-font-heading);
}

.crt-search-form .form-control,
.crt-search-form .form-select {
	border-radius: var(--crt-radius-sm);
	border: 1.5px solid var(--crt-border);
	padding: 0.45rem 0.7rem;
	font-size: 0.82rem;
	transition: var(--crt-transition);
	background: var(--crt-surface);
}

.crt-search-form .form-control:focus,
.crt-search-form .form-select:focus {
	border-color: var(--crt-accent);
	box-shadow: 0 0 0 4px rgba(63, 107, 87, 0.1);
	outline: none;
}

.crt-search-pickup-field {
	background: var(--crt-accent-light);
	border-radius: var(--crt-radius-sm);
	padding: 0.5rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--crt-navy);
	font-weight: 700;
	font-size: 0.82rem;
}

.crt-search-pickup-field i {
	color: var(--crt-accent-dark);
	font-size: 1.1rem;
}

.crt-search-submit {
	height: 100%;
	min-height: 38px;
}


/* ---------- Instant Qualifier Bar ---------- */




@media (max-width: 767.98px) {
}

/* ---------- Sections ---------- */
.crt-section {
	padding: clamp(30px, 5vw, 34px) 0;
	position: relative;
}

.crt-section-alt {
	background: var(--crt-surface);
}

.crt-section-eyebrow {
	color: var(--crt-accent-dark);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.7rem;
	margin-bottom: 0.5rem;
	font-family: var(--crt-font-heading);
}

.crt-section-title {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 200;
	letter-spacing: -0.02em;
}

.crt-section-subtitle {
	color: var(--crt-text-muted);
	max-width: 700px;
	margin: 0 auto 1.5rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.crt-section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

/* ---------- Feature Cards ---------- */
.crt-feature-card {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 1.5rem 1.25rem;
	height: 100%;
	box-shadow: var(--crt-shadow-sm);
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
	position: relative;
	overflow: hidden;
}

.crt-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.crt-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--crt-shadow-xl);
}

.crt-feature-card:hover::before {
	transform: scaleX(1);
}

.crt-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--crt-accent-light) 0%, #fef9e7 100%);
	color: var(--crt-accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 12px rgba(63, 107, 87, 0.15);
}

.crt-feature-card h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.crt-feature-card p {
	color: var(--crt-text-muted);
	margin: 0;
	line-height: 1.7;
}

/* ---------- Location Cards ---------- */
.crt-location-card {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	overflow: hidden;
	box-shadow: var(--crt-shadow-sm);
	display: block;
	height: 100%;
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
}

.crt-location-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--crt-shadow-lg);
}

.crt-location-card-img {
	height: 140px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.crt-location-card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(42, 50, 66, 0.4) 100%);
}

.crt-location-card-body {
	padding: 1rem;
}

.crt-location-card-title {
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
	color: var(--crt-navy);
	font-weight: 700;
	font-family: var(--crt-font-heading);
}


/* ---------- Category Cards ---------- */
.crt-category-card {
	text-align: center;
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 1.25rem 1rem;
	box-shadow: var(--crt-shadow-sm);
	height: 100%;
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
	display: block;
	text-decoration: none;
}

.crt-category-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--crt-shadow-lg);
	border-color: var(--crt-accent);
}

.crt-category-icon {
	font-size: 1.8rem;
	color: var(--crt-accent-dark);
	margin-bottom: 0.75rem;
	transition: var(--crt-transition);
}

.crt-category-card:hover .crt-category-icon {
	transform: scale(1.15);
	color: var(--crt-accent);
}

.crt-category-card .fw-bold {
	color: var(--crt-navy);
	font-weight: 700;
	font-family: var(--crt-font-heading);
	font-size: 0.88rem;
}

/* ---------- Brand Slider (Infinite Scroll) ---------- */
.crt-brands-section {
	background: var(--crt-surface);
	overflow: hidden;
}

.brand-slider {
	overflow: hidden;
	width: 100%;
	padding: 1.5rem 0 2.5rem;
	position: relative;
	background: var(--crt-surface);
}

.brand-slider::before,
.brand-slider::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.brand-slider::before {
	left: 0;
	background: linear-gradient(90deg, var(--crt-surface) 0%, transparent 100%);
}

.brand-slider::after {
	right: 0;
	background: linear-gradient(90deg, transparent 0%, var(--crt-surface) 100%);
}

.brand-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4rem;
	animation: brandScroll 25s linear infinite;
	width: fit-content;
	padding: 0 2rem;
}

.brand-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	min-width: 130px;
	padding: 0.5rem;
}

.brand-logo img {
	max-height: 50px;
	max-width: 130px;
	height: auto;
	width: auto;
	opacity: 0.55;
	/*filter: grayscale(100%) brightness(1.1);*/
	transition: all 0.4s ease;
	object-fit: contain;
	display: block;
}

.brand-logo:hover img {
	opacity: 1;
	filter: none;
	transform: scale(1.12);
}

@keyframes brandScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ---------- Deal Cards ---------- */
.crt-deal-card {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	overflow: hidden;
	box-shadow: var(--crt-shadow-sm);
	height: 100%;
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
}

.crt-deal-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--crt-shadow-xl);
}




.crt-deal-body {
	padding: 1.25rem;
}

.crt-deal-body h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.crt-deal-body p {
	color: var(--crt-text-muted);
	margin-bottom: 0.5rem;
	line-height: 1.5;
	font-size: 0.82rem;
}

.crt-deal-price {
	color: var(--crt-accent-dark);
	font-weight: 200;
	font-size: 1rem;
	font-family: var(--crt-font-heading);
}

/* ---------- Testimonials ---------- */
.crt-testimonial-card {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 1.5rem;
	box-shadow: var(--crt-shadow-sm);
	height: 100%;
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
	position: relative;
}

.crt-testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 5rem;
	line-height: 1;
	color: var(--crt-accent);
	opacity: 0.15;
	font-family: Georgia, serif;
}

.crt-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--crt-shadow-lg);
}

.crt-testimonial-quote {
	color: var(--crt-accent);
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.crt-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--crt-border);
}


.crt-stars {
	color: var(--crt-accent);
	font-size: 1rem;
	letter-spacing: 0.1rem;
}

/* ---------- Statistics ---------- */
.crt-stats-section {
	background: linear-gradient(135deg, var(--crt-navy) 0%, var(--crt-navy-light) 100%);
	color: var(--crt-white);
	padding: clamp(36px, 4vw, 56px) 0;
	position: relative;
	overflow: hidden;
}

.crt-stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(63, 107, 87, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.crt-stat-item {
	text-align: center;
	position: relative;
	z-index: 1;
}

.crt-stat-icon {
	font-size: 2rem;
	color: var(--crt-accent);
	margin-bottom: 1rem;
}

.crt-stat-number {
	font-family: var(--crt-font-heading);
	font-size: 2rem;
	font-weight: 200;
	color: var(--crt-white);
	margin-bottom: 0.3rem;
	background: linear-gradient(135deg, var(--crt-white) 0%, var(--crt-accent-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.crt-stat-label {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.82rem;
	font-weight: 500;
}

/* ---------- App Promotion ---------- */








/* ---------- CTA Banner ---------- */
.crt-cta-banner {
	background: linear-gradient(135deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
	border-radius: var(--crt-radius-lg);
	color: var(--crt-white);
	padding: clamp(2rem, 4vw, 3rem);
	text-align: center;
	box-shadow: 0 10px 24px rgba(63, 107, 87, 0.3);
	position: relative;
	overflow: hidden;
}

.crt-cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.crt-cta-banner h2 {
	color: var(--crt-white);
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 1;
}

.crt-cta-banner p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.88rem;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.crt-cta-banner .btn {
	position: relative;
	z-index: 1;
}

/* ---------- FAQ - Premium Design ---------- */
.crt-faq {
	background: linear-gradient(180deg, var(--crt-bg) 0%, var(--crt-surface) 100%);
	padding: clamp(40px, 5vw, 64px) 0;
}

.crt-faq .accordion-item {
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius) !important;
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: var(--crt-shadow-sm);
	background: var(--crt-surface);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.crt-faq .accordion-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.crt-faq .accordion-item:hover {
	box-shadow: var(--crt-shadow);
	transform: translateX(6px);
}

.crt-faq .accordion-item:hover::before {
	opacity: 1;
}

.crt-faq .accordion-button {
	font-family: var(--crt-font-heading);
	font-weight: 700;
	color: var(--crt-navy);
	padding: 1.25rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--crt-surface);
	border: none;
	width: 100%;
	text-align: left;
	font-size: 0.9rem;
}

.crt-faq .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, var(--crt-accent-light) 0%, var(--crt-white) 100%);
	color: var(--crt-accent-dark);
	box-shadow: none;
}

.crt-faq .accordion-button:focus {
	box-shadow: none;
	outline: none;
}



@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.3;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.crt-faq-question {
	flex: 1;
	text-align: left;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}


.crt-faq .accordion-button:not(.collapsed) .crt-faq-toggle {
	background: var(--crt-accent);
	color: var(--crt-white);
	transform: rotate(180deg);
	border-color: var(--crt-accent);
	box-shadow: 0 3px 10px rgba(63, 107, 87, 0.35);
}

.crt-faq-answer {
	padding: 0 1.25rem 1.25rem 1.25rem;
	color: var(--crt-text);
	line-height: 1.7;
	font-size: 0.85rem;
	position: relative;
}

.crt-faq-answer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 1px;
	background: linear-gradient(90deg, var(--crt-border) 0%, transparent 100%);
}

.crt-faq-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

/* ---------- Newsletter & Footer ---------- */

/* Footer Logo White */
.crt-footer .crt-logo img.custom-logo {
    max-width: 240px;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.crt-newsletter-strip {
	background: linear-gradient(135deg, var(--crt-accent-dark) 0%, var(--crt-green-dark) 100%);
	color: var(--crt-white);
	padding: 3rem 0;
}

.crt-newsletter-form .form-control {
	border-radius: var(--crt-radius-sm);
	border: none;
	padding: 1rem 1.25rem;
	font-size: 1rem;
}

.crt-footer {
	background: linear-gradient(180deg, var(--crt-navy-dark) 0%, #060d1a 100%);
	color: rgba(255, 255, 255, 0.8);
	padding: clamp(2.5rem, 4vw, 3.5rem) 0 0;
}

.crt-footer-heading {
	color: var(--crt-white);
	font-size: 0.88rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-family: var(--crt-font-heading);
}

.crt-footer-links a,
.crt-footer-contact a,
.crt-footer-contact li {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.4rem;
	transition: var(--crt-transition);
	font-size: 0.8rem;
}

.crt-footer-links a:hover {
	color: var(--crt-accent);
	transform: translateX(4px);
}




.crt-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
	margin-top: 2.5rem;
	color: rgba(255, 255, 255, 0.6);
}



.crt-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 52px;
	height: 52px;
	 
	background: linear-gradient(135deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
	color: var(--crt-white);
	border: none;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: var(--crt-shadow-lg);
	z-index: 1040;
	cursor: pointer;
	transition: var(--crt-transition);
}

.crt-back-to-top.show {
	display: flex;
}

.crt-back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 3px 10px rgba(63, 107, 87, 0.4);
}

/* ---------- Blog Styles - Premium ---------- */
.crt-page-title {
	font-size: 2.75rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
	line-height: 1.15;
	background: linear-gradient(135deg, var(--crt-navy) 0%, var(--crt-navy-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.crt-blog-listing .crt-section-header {
	margin-bottom: 3.5rem;
}

.crt-blog-listing .crt-section-header .crt-section-title {
	font-size: 2.5rem;
	margin-top: 0.5rem;
}

.crt-blog-card {
	background: var(--crt-surface);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(42, 50, 66, 0.06);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(42, 50, 66, 0.06);
	height: 100%;
	position: relative;
}

.crt-blog-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 14px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--crt-accent), var(--crt-accent-dark)) border-box;
	-webkit-mask: linear-gradient(var(--crt-white) 0 0) padding-box, linear-gradient(var(--crt-white) 0 0);
	mask: linear-gradient(var(--crt-white) 0 0) padding-box, linear-gradient(var(--crt-white) 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.crt-blog-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 10px 28px rgba(42, 50, 66, 0.12);
}

.crt-blog-card:hover::after {
	opacity: 1;
}

.crt-blog-card-thumb {
	position: relative;
	display: block;
	height: 240px;
	overflow: hidden;
}

.crt-blog-card-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(42, 50, 66, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.crt-blog-card:hover .crt-blog-card-thumb::after {
	opacity: 1;
}

.crt-blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.crt-blog-card:hover .crt-blog-card-thumb img {
	transform: scale(1.12);
}

.crt-blog-card-placeholder {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--crt-accent-light) 0%, #fef9e7 100%);
	font-size: 3.5rem;
	color: var(--crt-accent);
}


.crt-blog-card-body {
	padding: 1.75rem 2rem 2rem;
}

.crt-blog-card-meta {
	font-size: 0.8rem;
	color: var(--crt-text-muted);
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--crt-border);
}

.crt-blog-card-meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.crt-blog-card-meta i {
	color: var(--crt-accent);
	font-size: 0.85rem;
}

.crt-blog-card-title {
	font-size: 1.35rem;
	margin-bottom: 0.85rem;
	font-weight: 200;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.crt-blog-card-title a {
	color: var(--crt-navy);
	transition: var(--crt-transition);
}

.crt-blog-card-title a:hover {
	color: var(--crt-accent-dark);
}

.crt-blog-card-excerpt {
	color: var(--crt-text-muted);
	font-size: 0.95rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}





 

/* ---------- 404 Page ---------- */
.crt-404-icon {
	font-size: 6rem;
	color: var(--crt-accent);
	margin-bottom: 2rem;
}

/* ---------- Search Results ---------- */
.crt-results-sidebar {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 2rem;
	box-shadow: var(--crt-shadow-sm);
	border: 1px solid rgba(42, 50, 66, 0.04);
}

.crt-filter-group {
	border-bottom: 1px solid var(--crt-border);
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}

.crt-filter-group:last-child {
	border-bottom: none;
}

.crt-filter-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: var(--crt-font-heading);
}

.crt-results-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.crt-car-card {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	box-shadow: var(--crt-shadow-sm);
	margin-bottom: 2rem;
	padding: 2rem;
	transition: var(--crt-transition);
	border: 1px solid rgba(42, 50, 66, 0.04);
}

.crt-car-card:hover {
	box-shadow: var(--crt-shadow-lg);
	transform: translateY(-4px);
}

.crt-car-card-img {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.crt-car-card-img img {
	max-height: 100%;
	object-fit: contain;
}

.crt-car-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.crt-badge {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--crt-bg);
	color: var(--crt-text-muted);
}

.crt-badge-success {
	background: #d1fae5;
	color: var(--crt-green);
}

.crt-car-name {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	font-weight: 700;
}

.crt-car-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	color: var(--crt-text-muted);
	font-size: 0.9rem;
	margin: 1rem 0;
}

.crt-car-specs span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.crt-supplier-block {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1rem 0;
}

.crt-supplier-logo {
	height: 28px;
}

.crt-car-price {
	font-size: 1.75rem;
	font-weight: 200;
	color: var(--crt-navy);
	font-family: var(--crt-font-heading);
}

.crt-car-price-sub {
	font-size: 0.85rem;
	color: var(--crt-text-muted);
}


.crt-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
	background-size: 400% 100%;
	animation: crt-skeleton 1.5s ease infinite;
	border-radius: var(--crt-radius);
	height: 200px;
	margin-bottom: 2rem;
}

@keyframes crt-skeleton {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

/* ---------- Vehicle Details ---------- */
.crt-vd-gallery-main {
	border-radius: var(--crt-radius);
	overflow: hidden;
	height: 420px;
	box-shadow: var(--crt-shadow);
}

.crt-vd-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.crt-vd-gallery-thumbs {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.75rem;
	overflow-x: auto;
}

.crt-vd-gallery-thumbs img {
	width: 90px;
	height: 65px;
	object-fit: cover;
	border-radius: var(--crt-radius-sm);
	cursor: pointer;
	opacity: 0.6;
	transition: var(--crt-transition);
	border: 1px solid transparent;
}

.crt-vd-gallery-thumbs img.active {
	opacity: 1;
	border-color: var(--crt-accent);
}

.crt-vd-gallery-thumbs img:hover {
	opacity: 1;
}

.crt-vd-box {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 2rem;
	box-shadow: var(--crt-shadow-sm);
	margin-bottom: 2rem;
	border: 1px solid rgba(42, 50, 66, 0.04);
}

.crt-vd-spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1.25rem;
}

.crt-vd-spec-item {
	text-align: center;
	background: var(--crt-bg);
	border-radius: var(--crt-radius-sm);
	padding: 1.25rem 0.75rem;
	transition: var(--crt-transition);
}

.crt-vd-spec-item:hover {
	background: var(--crt-accent-light);
	transform: translateY(-2px);
}

.crt-vd-spec-item i {
	font-size: 1.5rem;
	color: var(--crt-accent-dark);
	margin-bottom: 0.5rem;
}

.crt-vd-feature-list {
	columns: 2;
	list-style: none;
	padding: 0;
}

.crt-vd-feature-list li {
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.crt-vd-feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--crt-green);
	font-weight: 700;
}

.crt-vd-sticky-summary {
	position: sticky;
	top: 100px;
}

.crt-vd-map {
	border-radius: var(--crt-radius);
	overflow: hidden;
	height: 300px;
	box-shadow: var(--crt-shadow-sm);
}

.crt-vd-package-card {
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius);
	padding: 1.5rem;
	margin-bottom: 1.25rem;
	cursor: pointer;
	transition: var(--crt-transition);
}

.crt-vd-package-card:hover {
	border-color: var(--crt-accent);
	transform: translateX(4px);
}

.crt-vd-package-card.active {
	border-color: var(--crt-accent);
	background: var(--crt-accent-light);
	box-shadow: var(--crt-shadow);
}

/* ---------- Utilities ---------- */
.crt-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
}

.crt-alert-empty {
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	padding: 4rem;
	text-align: center;
	box-shadow: var(--crt-shadow-sm);
	border: 1px dashed var(--crt-border);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 991.98px) {
	.crt-search-wrap {
		margin-top: -4rem;
	}
	.crt-hero-banner {
		min-height: 550px;
	}
 
	.crt-nav-menu {
		padding: 1rem 0;
	}
	.crt-vd-sticky-summary {
		position: static;
	}
	.crt-header-links {
		gap: 1.25rem;
	}
	.crt-header-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.9rem;
	}
	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--crt-surface);
		padding: 1.25rem;
		box-shadow: var(--crt-shadow-lg);
		border-radius: 0 0 var(--crt-radius-sm) var(--crt-radius-sm);
		margin-top: 0.5rem;
	}
	.crt-header-links {
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
	}
	.crt-header-link {
		display: block;
		width: 100%;
		text-align: center;
	}
	.crt-section {
		padding: 4rem 0;
	}
	.crt-faq {
		padding: 5rem 0;
	}
}

@media (max-width: 767.98px) {
	.crt-search-form {
		padding: 1.5rem;
	}
	.crt-hero-banner {
		min-height: 500px;
	}
 
	.crt-app-promo,
	.crt-cta-banner {
		padding: 2.5rem;
		text-align: center;
	}
	.crt-car-price-col {
		text-align: left;
		margin-top: 1.25rem;
	}
	.crt-vd-feature-list {
		columns: 1;
	}
	.crt-footer {
		padding: 3rem 0 0;
	}
	.crt-footer-bottom {
		margin-top: 2rem;
	}
	.crt-post-title {
		font-size: 2rem;
	}
	.crt-cta-banner h2 {
		font-size: 1.75rem;
	}
}

/* ---------- Dark Mode Support ---------- */
@media (prefers-color-scheme: dark) {
	:root {
		--crt-bg: #0c0c0c;
		--crt-surface: #1a1a1a;
		--crt-text: #e5e5e5;
		--crt-text-muted: #a3a3a3;
		--crt-border: #2a2a2a;
	}

	body {
		background: var(--crt-bg);
		color: var(--crt-text);
	}

	.crt-header {
		background: rgba(26, 26, 26, 0.95);
		/*border-bottom-color: rgba(255, 255, 255, 0.06);*/
	}

}

/* ==========================================================================
   Premium 2026 UI System
   Scope: visual design only. Preserves existing WordPress/PHP/API flow.
   ========================================================================== */


html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	background:
		radial-gradient(circle at top left, rgba(var(--crt-primary-rgb), 0.10), transparent 32rem),
		var(--crt-bg);
	color: var(--crt-text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.crt-logo-text,
.crt-section-title,
.crt-hero-title {
	color: var(--crt-secondary);
	font-family: "Plus Jakarta Sans", "Inter", sans-serif;
	letter-spacing: -0.035em;
}

:focus-visible {
	outline: 3px solid var(--crt-ring);
	outline-offset: 3px;
	border-radius: 8px;
}

.crt-section {
	padding: clamp(30px, 5vw, 34px) 0;
	position: relative;
}

.crt-section-alt {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.96)),
		radial-gradient(circle at 85% 20%, rgba(var(--crt-primary-rgb), 0.10), transparent 24rem);
}

.crt-section-header {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.crt-section-eyebrow,
.crt-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	margin-bottom: 10px;
	padding: 5px 10px;
	border: 1px solid rgba(var(--crt-primary-rgb), 0.34);
	border-radius: 999px;
	background: rgba(var(--crt-primary-rgb), 0.12);
	color: #8a5900;
	font-size: 0.65rem;
	font-weight: 200;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}
.crt-search-microcopy
{
    color: white !important;
}
.crt-section-title {
	margin-bottom: 8px;
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	font-weight: 550;
	line-height: 1.1;
	color: black !important;
}

.crt-section-subtitle {
	max-width: 620px;
	margin: 0 auto;
	font-size: 0.85rem;
}

.btn,
button,
.form-control,
.form-select {
	border-radius: var(--crt-radius-sm);
}

.crt-btn-accent,
.btn.crt-btn-accent {
	position: relative;
	isolation: isolate;
	border: 0;
	box-shadow: 0 3px 10px rgba(63, 107, 87, 0.22);
	color: var(--crt-button-text) !important;
	font-weight: 200;
	letter-spacing: -0.01em;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.crt-btn-accent:hover,
.crt-btn-accent:focus {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(63, 107, 87, 0.28);
	filter: saturate(1.06);
}

.crt-btn-outline,
.btn.crt-btn-outline {
	border: 1px solid rgba(17, 24, 39, 0.14);
	background: rgba(255, 255, 255, 0.78);
	color: var(--crt-secondary);
	font-weight: 200;
	box-shadow: var(--crt-shadow-xs);
}

.crt-btn-outline:hover {
	border-color: rgba(var(--crt-primary-rgb), 0.55);
	background: var(--crt-primary-soft);
	color: var(--crt-secondary);
	transform: translateY(-2px);
}

.crt-btn-white {
	border: 0;
	background: var(--crt-white);
	color: var(--crt-secondary) !important;
	font-weight: 550;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.form-label {
	margin-bottom: 4px;
	color: var(--crt-secondary);
	font-size: 0.68rem;
	font-weight: 550;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.form-control,
.form-select {
	min-height: 38px;
	border: 1px solid var(--crt-border);
	background-color: var(--crt-white);
	color: var(--crt-secondary);
	box-shadow: var(--crt-shadow-xs);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	font-size: 0.85rem;
	padding: 0.45rem 0.75rem;
}

.form-control:hover,
.form-select:hover {
	border-color: rgba(17, 24, 39, 0.20);
}

.form-control:focus,
.form-select:focus {
	border-color: var(--crt-primary);
	box-shadow: 0 0 0 4px var(--crt-ring);
}

.form-check-input {
	border-color: rgba(17, 24, 39, 0.24);
}

.form-check-input:checked {
	border-color: var(--crt-primary);
	background-color: var(--crt-primary);
}

/* Header */
.crt-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	/*border-bottom: 1px solid transparent;*/
 
	transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
@media only screen and (max-width: 576px) {
   .crt-logo img {
	max-height: 30px;
	width: auto;
	
}

}
.crt-header.is-scrolled,
body:not(.home) .crt-header {
	border-bottom-color: rgba(17, 24, 39, 0.08);
	background: var(--crt-header-background);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.crt-navbar {
	padding: 14px 0;
}



.crt-header-links {
	align-items: center;
	gap: 4px;
}

.crt-header-link {
	position: relative;
	padding: 10px 14px !important;
	border-radius: 999px;
	color: var(--crt-header-text) !important;
	font-weight: 750;
}

.crt-header-link:hover {
    /*background: rgba(var(--crt-primary-rgb), 0.12);*/
    color: var(--crt-header-hover) !important;
}

/* Keep every navigation state connected to the theme header tokens. */
.crt-header .navbar-nav .nav-link.crt-header-link,
.crt-header .navbar-nav .nav-link.crt-header-link:visited {
    color: var(--crt-header-text) !important;
    text-decoration: none;
}

.crt-header .navbar-nav .nav-link.crt-header-link:hover,
.crt-header .navbar-nav .nav-link.crt-header-link:focus {
    color: var(--crt-header-hover) !important;
}

.crt-header .navbar-nav .nav-link.crt-header-link:active,
.crt-header .navbar-nav .nav-link.crt-header-link.crt-nav-current,
.crt-header .navbar-nav .nav-link.crt-header-link[aria-current="page"] {
    color: var(--crt-header-active) !important;
}


.navbar-toggler {
	border: 1px solid var(--crt-border);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--crt-shadow-xs);
}


.crt-breadcrumbs {
	padding: 10px 14px;
	border: 1px solid var(--crt-border);
	border-radius: 999px;
	background: var(--crt-white);
	box-shadow: var(--crt-shadow-xs);
}

.breadcrumb {
	font-size: 0.9rem;
}

/* Hero and Search */
.crt-hero {
	margin-top: -74px;
	background: var(--crt-white);
}

.crt-hero-banner {
	min-height: clamp(480px, 65vh, 600px);
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*.crt-hero-banner::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	inset: 0;*/
/*	background:*/
/*		radial-gradient(circle at 76% 20%, rgba(var(--crt-primary-rgb), 0.35), transparent 26rem),*/
/*		linear-gradient(110deg, rgba(11, 17, 32, 0.92) 0%, rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.24) 100%);*/
/*	z-index: 1;*/
/*}*/

.crt-hero-overlay {
	display: none;
}

.crt-hero-inner {
	position: relative;
	z-index: 2;
	/*display: flex;*/
	align-items: center;
	min-height: clamp(480px, 65vh, 600px);
	padding-top: 74px;
	padding-bottom: 120px;
}

.crt-hero-content {
 
    margin-bottom: 120px;
	color: var(--crt-white);
	margin-left: 0;
	text-align: center;
}

.crt-hero-content .crt-hero-eyebrow {
	display: none;
}

.crt-hero-title {
	color: var(--crt-white);
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.03em;
 
}





.crt-search-wrap {
	position: relative;
	z-index: 4;
	margin-top: -250px;
	padding-bottom: 28px;
	margin-bottom:70px ;
}

.crt-search-form {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: var(--crt-radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow:0 0px 61px rgba(42, 50, 66, 0.15), 0 10px 20px rgba(42, 50, 66, 0.08);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.crt-search-form::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(var(--crt-primary-rgb), 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
	pointer-events: none;
	z-index: -1;
}

.crt-search-pickup-field {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 10px;
	font-size: 0.82rem;
	border: 1px solid rgba(var(--crt-primary-rgb), 0.34);
	border-radius: var(--crt-radius-sm);
	background: var(--crt-primary-soft);
	color: var(--crt-secondary);
	font-weight: 550;
	box-shadow: var(--crt-shadow-xs);
}

.crt-search-pickup-field i {
	color: var(--crt-primary-dark);
}

.crt-search-submit {
	min-height: 36px;
	font-size: 0.82rem;
	padding: 0.4rem 1rem;
}


/* Trust/brand strip */
.crt-brands-section {
	background: var(--crt-white) !important;
	overflow: hidden;
}

.brand-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 8px 0 18px;
	background: var(--crt-white) !important;
}

.brand-slider::before,
.brand-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 72px;
	pointer-events: none;
}

.brand-slider::before {
	left: 0;
	background: linear-gradient(90deg, var(--crt-white), rgba(255, 255, 255, 0));
}

.brand-slider::after {
	right: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--crt-white));
}

.brand-track {
	display: flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	animation: brandMove 24s linear infinite;
}

.brand-track:hover {
	animation-play-state: paused;
}

.brand-logo {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	height: 64px;
	min-width: 148px;
	border: 1px solid rgba(17, 24, 39, 0.07);
	border-radius: 12px;
	background: rgba(248, 250, 252, 0.85);
	box-shadow: var(--crt-shadow-xs);
}

.brand-logo img {
	max-height: 34px;
	max-width: 120px;
	width: auto;
	height: auto;
	opacity: 0.58;
	/*filter: grayscale(1);*/
	transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand-logo-fallback {
	display: none;
	align-items: center;
	justify-content: center;
	color: var(--crt-secondary);
	font-family: "Plus Jakarta Sans", "Inter", sans-serif;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.brand-logo:hover img {
	opacity: 1;
	filter: none;
	transform: scale(1.06);
}

@keyframes brandMove {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Cards */
.crt-feature-card,
.crt-location-card,
.crt-category-card,
.crt-deal-card,
.crt-testimonial-card,
.crt-blog-card,
.crt-vd-box,
.crt-results-sidebar,
.crt-results-toolbar,
.crt-alert-empty,
.crt-process-card {
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: var(--crt-radius);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--crt-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.crt-feature-card:hover,
.crt-location-card:hover,
.crt-category-card:hover,
.crt-deal-card:hover,
.crt-testimonial-card:hover,
.crt-blog-card:hover,
.crt-process-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--crt-primary-rgb), 0.30);
	box-shadow: var(--crt-shadow-lg);
}

.crt-feature-card {
	height: 100%;
	padding: 20px;
}

.crt-feature-icon,
.crt-category-icon,
.crt-process-icon,
.crt-stat-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 12px;
	border-radius: 10px;
	background: var(--crt-primary-soft);
	color: var(--crt-primary-dark);
	font-size: 1.15rem;
}

.crt-feature-card h3,
.crt-process-card h3 {
	margin-bottom: 6px;
	color: var(--crt-secondary);
	font-size: 0.95rem;
	font-weight: 550;
}

.crt-stats-section {
	    background: radial-gradient(circle at 15% 20%, rgb(253 167 2 / 56%), #9999993b 22rem), var(--crt-dark-gradient);	
}

.crt-stat-item {
	height: 100%;
	padding: 18px 14px;
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.07);
	text-align: center;
	backdrop-filter: blur(18px);
}

.crt-stat-icon {
	margin-left: auto;
	margin-right: auto;
	background: rgba(var(--crt-primary-rgb), 0.16);
	color: var(--crt-primary);
}

.crt-stat-number {
	color: var(--crt-white);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.03em;
}

.crt-stat-label {
	color: rgba(255, 255, 255, 0.70);
	font-weight: 700;
	font-size: 0.8rem;
}

.crt-location-card {
	display: block;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.crt-location-card-img,
.crt-deal-img {
	position: relative;
	min-height: 160px;
	background-color: #E2E8F0;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.crt-location-card-img::after,
.crt-deal-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.56));
}

.crt-location-card-body,
.crt-deal-body,
.crt-blog-card-body {
	padding: 16px;
}

.crt-location-card-title {
	color: var(--crt-secondary);
	font-size: 0.9rem;
	font-weight: 550;
}


.crt-category-card {
	height: 100%;
	padding: 20px 12px;
	text-align: center;
}

.crt-category-card .fw-bold {
	color: var(--crt-secondary) !important;
	font-size: 0.88rem;
}

.crt-deal-card {
	overflow: hidden;
	height: 100%;
}

.crt-deal-badge,
.crt-badge,
.crt-post-cat,
.crt-blog-card-cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(var(--crt-primary-rgb), 0.34);
	border-radius: 999px;
	background: var(--crt-primary-soft);
	color: #805100;
	font-size: 0.75rem;
	font-weight: 550;
}


.crt-deal-price,
.crt-car-price {
	color: var(--crt-secondary);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

/* Process timeline */
.crt-process-section {
	background:
		radial-gradient(circle at 20% 10%, rgba(var(--crt-primary-rgb), 0.13), transparent 25rem),
		var(--crt-white);
}

.crt-process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.crt-process-timeline::before {
	content: "";
	position: absolute;
	top: 44px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(var(--crt-primary-rgb), 0.75), transparent);
}

.crt-process-card {
	position: relative;
	padding: 22px;
	overflow: hidden;
}

.crt-process-step {
	position: absolute;
	top: 12px;
	right: 16px;
	color: rgba(17, 24, 39, 0.08);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

/* Testimonials, FAQ, blog */
.crt-testimonial-card {
	position: relative;
	height: 100%;
	padding: 20px;
	overflow: hidden;
}

.crt-testimonial-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--crt-gradient);
}

.crt-testimonial-quote {
	color: rgba(var(--crt-primary-rgb), 0.22);
	font-size: 2.5rem;
	line-height: 1;
}

.crt-testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--crt-border);
}

.crt-faq-wrapper {
	padding: 8px;
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius-lg);
	background: var(--crt-white);
	box-shadow: var(--crt-shadow);
}

.crt-faq-item {
	border: 0;
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
	background: transparent;
}

.crt-faq-item:last-child {
	border-bottom: 0;
}

.crt-faq .accordion-button {
	padding: 16px 14px;
	font-size: 0.9rem;
	border: 0;
	background: transparent;
	color: var(--crt-secondary);
	font-weight: 550;
	box-shadow: none;
}

.crt-faq .accordion-button:not(.collapsed) {
	background: var(--crt-primary-soft);
	color: var(--crt-secondary);
	border-radius: 10px;
}

.crt-faq .accordion-body {
	padding: 0 14px 16px;
	font-size: 0.85rem;
}

.crt-blog-card {
	overflow: hidden;
}

.crt-blog-card-thumb {
	position: relative;
	display: block;
	/*aspect-ratio: 16 / 10;*/
	overflow: hidden;
	background: #E2E8F0;
}

.crt-blog-card-thumb img,
.crt-blog-card-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.crt-blog-card:hover .crt-blog-card-thumb img {
	transform: scale(1.04);
}


.crt-blog-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
	color: var(--crt-text-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.crt-blog-card-title {
	margin-bottom: 10px;
	font-size: 1.25rem;
	line-height: 1.25;
}

.crt-blog-card-title a,
.crt-read-more {
	color: var(--crt-secondary);
	text-decoration: none;
}



/* Search results and vehicle details */
.crt-search-results-main,
.crt-vehicle-details-main,
.crt-contact-page {
	padding-top: 48px !important;
	padding-bottom: 80px !important;
	background:
		radial-gradient(circle at 12% 0%, rgba(var(--crt-primary-rgb), 0.10), transparent 26rem),
		var(--crt-bg);
}

.crt-results-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px;
	margin-bottom: 18px;
}

#crt-search-summary {
	justify-content: flex-start;
}

#crt-search-summary span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--crt-primary-soft);
	color: var(--crt-secondary);
	font-weight: 750;
}

.crt-results-sidebar {
	position: sticky;
	top: 104px;
	padding: 22px;
}

.crt-filter-title {
	color: var(--crt-secondary);
	font-weight: 900;
}

.crt-filter-group {
	padding: 18px 0;
	border-top: 1px solid var(--crt-border);
}

.crt-car-card {
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: var(--crt-radius-lg);
	background: var(--crt-white);
	box-shadow: var(--crt-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.crt-car-card:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--crt-primary-rgb), 0.30);
	box-shadow: var(--crt-shadow-lg);
}

.crt-car-card-img {
	display: grid;
	place-items: center;
	min-height: 118px;
	border-radius: 12px;
	background: linear-gradient(145deg, #F8FAFC, #EEF2F7);
}

.crt-car-card-img img {
	max-width: 100%;
	max-height: 110px;
	object-fit: contain;
}

.crt-car-badges,
.crt-car-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.crt-car-badges {
	margin-bottom: 10px;
}

.crt-badge {
	padding: 6px 10px;
}

.crt-badge-success {
	border-color: rgba(34, 197, 94, 0.22);
	background: rgba(34, 197, 94, 0.10);
	color: #166534;
}

.crt-car-name {
	margin-bottom: 8px;
	color: var(--crt-secondary);
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.crt-supplier-block {
	display: flex;
	align-items: center;
	gap: 8px;
}

.crt-supplier-logo {
	max-width: 76px;
	max-height: 28px;
	object-fit: contain;
}

.crt-car-specs {
	margin: 12px 0;
	color: var(--crt-text-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.crt-car-specs span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #F8FAFC;
}

.crt-car-price-col {
	text-align: right;
}

.crt-car-price-sub {
	color: var(--crt-text-muted);
	font-size: 0.9rem;
}

.crt-skeleton {
	min-height: 156px;
	margin-bottom: 18px;
	border-radius: var(--crt-radius-lg);
	background: linear-gradient(90deg, #EEF2F7 0%, #F8FAFC 50%, #EEF2F7 100%);
	background-size: 220% 100%;
	animation: bcrShimmer 1.25s linear infinite;
}

@keyframes bcrShimmer {
	to { background-position: -220% 0; }
}

.crt-alert-empty {
	padding: 40px 24px;
	text-align: center;
}

.crt-loader {
	display: grid;
	place-items: center;
	min-height: 240px;
}

.crt-vd-box {
	margin-bottom: 18px;
	padding: 24px;
}

.crt-vd-gallery-main {
	overflow: hidden;
	border-radius: var(--crt-radius-lg);
	background: var(--crt-white);
	box-shadow: var(--crt-shadow);
}

.crt-vd-gallery-main img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.crt-vd-gallery-thumbs {
	display: flex;
	gap: 10px;
	margin: 14px 0 18px;
	overflow-x: auto;
}

.crt-vd-gallery-thumbs img {
	width: 86px;
	height: 64px;
	border: 1px solid transparent;
	border-radius: 10px;
	object-fit: cover;
	cursor: pointer;
	opacity: 0.72;
}

.crt-vd-gallery-thumbs img.active {
	border-color: var(--crt-primary);
	opacity: 1;
}

.crt-vd-spec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.crt-vd-spec-item {
	padding: 16px;
	border-radius: 10px;
	background: #F8FAFC;
	text-align: center;
}

.crt-vd-spec-item i {
	color: var(--crt-primary-dark);
	font-size: 1.35rem;
}

.crt-vd-feature-list {
	display: grid;
	gap: 10px;
	padding: 0;
	list-style: none;
}

.crt-vd-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.crt-vd-feature-list .bi-check-circle-fill {
	color: #16a34a;
}

.crt-vd-package-card {
	padding: 16px;
	border: 1px solid var(--crt-border);
	border-radius: 10px;
	background: #F8FAFC;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.crt-vd-package-card:hover,
.crt-vd-package-card.active {
	border-color: var(--crt-primary);
	background: var(--crt-primary-soft);
	transform: translateY(-2px);
}

.crt-vd-sticky-summary {
	position: sticky;
	top: 104px;
}

.crt-vd-map {
	overflow: hidden;
	height: 320px;
	border-radius: 12px;
}

/* CTA and footer */
.crt-cta-banner {
	position: relative;
	overflow: hidden;
	padding: clamp(42px, 7vw, 78px) 24px;
	border-radius: 16px;
	background:
		radial-gradient(circle at 18% 18%, rgba(var(--crt-primary-rgb), 0.40), transparent 22rem),
		var(--crt-dark-gradient);
	box-shadow: var(--crt-shadow-lg);
}

.crt-cta-banner::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 280px;
	height: 280px;
	border-radius: 999px;
	background: rgba(var(--crt-primary-rgb), 0.22);
	filter: blur(4px);
}

.crt-cta-banner > * {
	position: relative;
	z-index: 1;
}

.crt-cta-banner h2 {
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.06em;
}

.crt-footer {
	padding-top: 0;
	background:
		radial-gradient(circle at 15% 0%, rgba(var(--crt-primary-rgb), 0.18), transparent 26rem),
		linear-gradient(180deg, var(--crt-ink) 0%, #070B14 100%);
	color: var(--crt-white);
}

.crt-newsletter-strip {
	padding: 36px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.04);
}

.crt-newsletter-strip h3,
.crt-footer-heading {
	color: var(--crt-white);
	font-size: 0.9rem;
}

.crt-newsletter-form .form-control {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.09);
	color: var(--crt-white);
}

.crt-newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.crt-footer .crt-logo-text,
.crt-logo-text-light {
	color: var(--crt-white);
}

.crt-footer-links a,
.crt-footer-contact a,
.crt-legal-links a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	font-size: 0.82rem;
}

.crt-footer-links a:hover,
.crt-footer-contact a:hover,
.crt-legal-links a:hover {
	color: var(--crt-primary);
}




.crt-footer-bottom {
	margin-top: 0;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(0, 0, 0, 0.18);
}

.crt-back-to-top {
	right: 22px;
	bottom: 22px;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--crt-accent) 0%, var(--crt-accent-dark) 100%);
	color: var(--crt-white);
	box-shadow: 0 4px 12px rgba(63, 107, 87, 0.24);
}

/* Content pages, tables, pagination, comments */
.crt-page-title,
.crt-post-title {
	color: var(--crt-secondary);
	font-weight: 900;
	letter-spacing: -0.055em;
}

.crt-entry-content,
.crt-post-content,
.crt-sidebar-widget,
.comments-area,
table {
	border-radius: var(--crt-radius);
}

.crt-sidebar-widget,
.comments-area {
	border: 1px solid var(--crt-border);
	background: var(--crt-white);
	box-shadow: var(--crt-shadow);
}

table {
	overflow: hidden;
	border: 1px solid var(--crt-border);
	background: var(--crt-white);
	box-shadow: var(--crt-shadow-xs);
}

th {
	background: #F8FAFC;
	color: var(--crt-secondary);
}

.crt-pagination .page-numbers,
.pagination .page-link {
	border: 1px solid var(--crt-border);
	border-radius: 8px !important;
	background: var(--crt-white);
	color: var(--crt-secondary);
	font-weight: 200;
}

.crt-pagination .current,
.pagination .active .page-link {
	border-color: var(--crt-primary);
	background: var(--crt-primary);
	color: var(--crt-secondary);
}

.alert {
	border: 0;
	border-radius: var(--crt-radius);
	box-shadow: var(--crt-shadow-xs);
}

/* Motion */
.crt-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.crt-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 991.98px) {
	.crt-header {
		background: var(--crt-header-background);
		color: var(--crt-header-text);
	}

	.crt-navbar .navbar-collapse {
		margin-top: 14px;
		padding: 14px;
		border: 1px solid var(--crt-border);
		border-radius: 12px;
		background: var(--crt-header-background);
		box-shadow: var(--crt-shadow);
	}

	.crt-header-links {
		align-items: stretch;
	}


	.crt-hero {
		margin-top: -70px;
	}
 
 
.crt-search-form {
	background: var(--crt-surface);
	border-radius: var(--crt-radius-lg);
	box-shadow: var(--crt-shadow-xl);
	padding: 1.5rem;
	border: 1px solid rgba(42, 50, 66, 0.06);
}

	.crt-process-timeline::before {
		display: none;
	}

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

	.crt-results-sidebar {
		position: static;
		margin-bottom: 18px;
	}
}

@media (max-width: 767.98px) {
	.crt-section {
		padding: 56px 0;
	}

 

	.crt-hero-title {
		font-size: clamp(2rem, 10vw, 4.25rem);
	}


	.crt-search-wrap {
		padding-left: 12px;
		padding-right: 12px;
		margin-top: -190px;
	}

	.crt-search-form {
		border-radius: 14px;
	}

	.crt-location-card-img,
	.crt-deal-img {
		min-height: 180px;
	}

	.crt-car-price-col {
		text-align: left;
	}

	.crt-results-toolbar {
		align-items: stretch;
	}

	.crt-results-toolbar > * {
		width: 100%;
	}

	.crt-newsletter-form {
		flex-direction: column;
	}

	.crt-vd-spec-grid {
		grid-template-columns: 1fr;
	}

	.crt-footer-bottom .container {
		justify-content: center !important;
		text-align: center;
	}
}

 /* =========================================================
   REUSABLE CAR RENTAL THEME CAR RENTALS
   PREMIUM SINGLE BLOG PAGE
   ========================================================= */

.single-post {
    /* Blog pages inherit the same admin-controlled design tokens as the rest
       of the site. Legacy green aliases are retained for old selectors. */
}


/* =========================================================
   PAGE
   ========================================================= */

.crt-single-page {
    background: var(--crt-bg);
    color: var(--crt-text);
    width: 100%;
    overflow: visible !important;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.crt-blog-container {
    width: calc(100% - 32px);
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.crt-breadcrumb-wrap {
    padding: 10px 0 8px;
}

#breadcrumbs {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--crt-muted);
}

#breadcrumbs a {
    color: var(--crt-green);
    text-decoration: none;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.crt-blog-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        285px;

    gap: 24px;

    align-items: start;

    overflow: visible !important;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.crt-single-article {
    min-width: 0;

    background: var(--crt-card);

    border: 1px solid var(--crt-border);

    border-radius: 6px;

    padding: 20px 22px 28px;

    box-shadow:
        0 2px 10px rgba(45, 72, 59, 0.045);

    overflow: visible;
}


/* =========================================================
   TITLE
   ========================================================= */

.crt-post-title {
    margin: 0 0 9px !important;

    color: var(--crt-heading) !important;

    font-size: 40px !important;

    line-height: 1.2 !important;

    font-weight: 700 !important;

    letter-spacing: -0.02em !important;
}


/* =========================================================
   META
   ========================================================= */

.crt-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px 9px;

    margin-bottom: 12px;

    color: #839088;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   EXCERPT
   ========================================================= */

.crt-post-excerpt {
    margin: 0 0 16px;

    color: #65766E;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.crt-post-thumb {
    width: 100%;

    margin: 0 0 18px;

    overflow: hidden;

    border-radius: 6px;

    border: 1px solid var(--crt-border);

    background: #F1F4F2;
}

.crt-post-thumb img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 470px;

    object-fit: cover;
}


/* =========================================================
   TABLE OF CONTENTS
   ========================================================= */



/* =========================================================
   CONTENT
   ========================================================= */

.crt-entry-content {
    color: var(--crt-text);

    font-size: 14px;

    line-height: 1.75;

    word-break: normal;
}

.crt-entry-content p {
    margin: 0 0 15px;

    color: var(--crt-text);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CONTENT HEADINGS
   ========================================================= */

.crt-entry-content h2 {
    margin: 27px 0 10px;

    color: var(--crt-heading);

    font-size: 28px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.01em;
}

.crt-entry-content h3 {
    margin: 21px 0 8px;

    color: var(--crt-heading);

    font-size: 24px;

    line-height: 1.4;

    font-weight: 700;
}

.crt-entry-content h4 {
    margin: 17px 0 7px;

    color: var(--crt-heading);

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;
}

.crt-entry-content h5 {
    margin: 17px 0 7px;

    color: var(--crt-heading);

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;
}

/* =========================================================
   REMOVE OLD DECORATIVE HEADING
   ========================================================= */

.crt-entry-content h2::after,
.crt-entry-content h3::after {
    display: none !important;
}


/* =========================================================
   LISTS
   ========================================================= */

.crt-entry-content ul,
.crt-entry-content ol {
    margin: 8px 0 17px;

    padding-left: 23px;
}

.crt-entry-content li {
    margin-bottom: 6px;

    color:black;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   LINKS
   ========================================================= */

.crt-entry-content a {
    color: var(--crt-primary) !important;

    text-decoration: none;

    font-weight: 600;
}

.crt-entry-content a:hover {
    color: var(--crt-green-dark);

    text-decoration: underline;
}


/* =========================================================
   TABLE
   ========================================================= */

.crt-entry-content table {
    width: 100%;

    margin: 18px 0 22px;

    border-collapse: collapse;

    background: var(--crt-white);

    border: 1px solid #C9D5CE;

    font-size: 12.5px;

    line-height: 1.5;
}

.crt-entry-content th {
    padding: 10px 11px;

    color: var(--crt-white);

    background: var(--crt-green);

    border: 1px solid var(--crt-green);

    font-size: 12px;

    font-weight: 700;

    text-align: left;
}

.crt-entry-content td {
    padding: 9px 11px;

    color: #56675F;

    background: var(--crt-white);

    border: 1px solid #D7E0DA;

    vertical-align: top;
}

.crt-entry-content tr:nth-child(even) td {
    background: #F7F9F8;
}


/* =========================================================
   TABLE WRAPPER
   ========================================================= */

.crt-entry-content figure.wp-block-table {
    margin: 18px 0 22px;

    overflow-x: auto;

    border-radius: 4px;
}


/* =========================================================
   BLOCKQUOTE
   ========================================================= */

.crt-entry-content blockquote {
    margin: 18px 0;

    padding: 14px 17px;

    background: #F1F5F2;

    border-left: 2px solid var(--crt-green);

    border-radius: 4px;

    color: var(--crt-text);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   IMAGES INSIDE ARTICLE
   ========================================================= */

.crt-entry-content img {
    max-width: 100%;

    height: auto;

    border-radius: 8px;
}

/* =========================================================
   SINGLE BLOG - ALL WP CONTENT ELEMENTS
   ========================================================= */

/* Blockquote */
.crt-entry-content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: #F4F7F5;
    border-left: 3px solid var(--crt-green);
    border-radius: 0 8px 8px 0;
    color: var(--crt-content-text);
    font-size: 15px;
    line-height: 1.7;
}

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

/* Images */
.crt-entry-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.crt-entry-content .alignleft {
    float: left;
    margin-right: 20px;
}

.crt-entry-content .alignright {
    float: right;
    margin-left: 20px;
}

/* Links */
.crt-entry-content a {
    color: var(--crt-green);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.crt-entry-content a:hover {
    color: var(--crt-green-dark);
    text-decoration: underline;
}

/* Strong / Bold */
.crt-entry-content strong,
.crt-entry-content b {
    color: var(--crt-green);
    font-weight: 700;
}

/* Horizontal Rule */
.crt-entry-content hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #E4EAE6;
}

/* Code */
.crt-entry-content code {
    padding: 2px 6px;
    background: #F4F7F5;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--crt-green-dark);
}

.crt-entry-content pre {
    margin: 20px 0;
    padding: 16px;
    background: #F4F7F5;
    border: 1px solid #E4EAE6;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

/* Buttons */
.crt-entry-content .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--crt-green);
    color: var(--crt-white) !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.crt-entry-content .wp-block-button__link:hover {
    background: var(--crt-green-dark);
    transform: translateY(-1px);
}

/* Columns */
.crt-entry-content .wp-block-columns {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.crt-entry-content .wp-block-column {
    flex: 1;
    min-width: 0;
}

/* Highlight / Background paragraphs */
.crt-entry-content p.has-background {
    margin: 20px 0;
    padding: 14px 18px;
    background-color: #F4F7F5 !important;
    border-radius: 8px;
}

/* Separator */
.crt-entry-content .wp-block-separator {
    margin: 30px auto;
    border: 0;
    border-top: 2px solid #E4EAE6;
    width: 100px;
}

/* Embed / Video */
.crt-entry-content .wp-block-embed,
.crt-entry-content .wp-block-video {
    margin: 24px 0;
}

.crt-entry-content iframe,
.crt-entry-content video {
    max-width: 100%;
    border-radius: 8px;
}

/* Gallery */
.crt-entry-content .wp-block-gallery {
    margin: 24px 0;
}

.crt-entry-content .wp-block-gallery img {
    border-radius: 8px;
}

/* File */
.crt-entry-content .wp-block-file {
    margin: 20px 0;
    padding: 12px 16px;
    background: #F4F7F5;
    border-radius: 8px;
}


/* =========================================================
   TAGS
   ========================================================= */

.crt-post-tags {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 7px;

    margin-top: 25px;

    padding-top: 16px;

    border-top: 1px solid #E1E8E3;
}

.crt-tags-label {
    color: #77867F;

    font-size: 11px;

    font-weight: 600;
}

.crt-tag {
    display: inline-flex;

    align-items: center;

    padding: 5px 9px;

    color: var(--crt-green) !important;

    background: #F0F5F2;

    border: 1px solid #DCE6E0;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none !important;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.crt-author-section {
    margin-top: 25px;
}

.crt-author-box {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 15px !important;

    background: #F2F6F3 !important;

    border: 1px solid #DCE6E0 !important;

    border-radius: 6px !important;

    box-shadow: none !important;
}

.crt-author-avatar {
    width: 55px !important;

    height: 55px !important;

    min-width: 55px !important;

    border-radius: 50% !important;
}

.crt-author-name {
    margin: 0 0 5px !important;

    color: var(--crt-green) !important;

    font-size: 14px !important;

    font-weight: 700 !important;
}

.crt-author-bio {
    margin: 0 !important;

    color: #63746C !important;

    font-size: 12px !important;

    line-height: 1.6 !important;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.crt-single-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;

    top: 82px !important;

    align-self: start !important;

    height: max-content !important;
 

    overflow-y: auto;

    overflow-x: hidden;

    z-index: 30;

    scrollbar-width: thin;

    scrollbar-color: #C5D2CA transparent;
}


/* =========================================================
   SIDEBAR SCROLLBAR
   ========================================================= */

.crt-single-sidebar::-webkit-scrollbar {
    width: 4px;
}

.crt-single-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.crt-single-sidebar::-webkit-scrollbar-thumb {
    background: #C5D2CA;

    border-radius: 8px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.crt-blog-sidebar {
    width: 100%;

    position: relative;

    margin: 0;

    padding: 0;
}


/* =========================================================
   SIDEBAR BOX
   ========================================================= */

.crt-sidebar-box {
    margin-bottom: 13px;

    padding: 13px;

    background: var(--crt-white);

    border: 1px solid #DDE6E0;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(43, 67, 55, 0.035);
}


/* =========================================================
   SIDEBAR HEADING
   ========================================================= */

.crt-sidebar-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 0 0 10px;

    padding-bottom: 8px;

    color: var(--crt-green);

    border-bottom: 1px solid #E2E8E4;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================================
   SEARCH
   ========================================================= */






/* =========================================================
   SHARE
   ========================================================= */

.crt-share-buttons {
    display: flex;

    gap: 7px;
}

.crt-share-buttons a {
    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--crt-green);

    background: #F1F5F2;

    border: 1px solid #DDE6E0;

    border-radius: 4px;

    font-size: 11px;

    text-decoration: none;

    transition: all .2s ease;
}

.crt-share-buttons a:hover {
    color: var(--crt-white);

    background: var(--crt-green);

    border-color: var(--crt-green);
}


/* =========================================================
   SIDEBAR TOC
   ========================================================= */

.crt-sidebar-toc-content {
    

    overflow-y: auto;

    padding-right: 3px;
}

.crt-sidebar-toc-content ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.crt-sidebar-toc-content li {
    margin: 0;

    padding: 6px 0;

    border-bottom: 1px solid #EDF1EE;
}

.crt-sidebar-toc-content li:last-child {
    border-bottom: 0;
}

.crt-sidebar-toc-content a {
    display: block;

    color: black;

    font-size: 13px;

    line-height: 1.45;

    text-decoration: none;

    transition: color .2s ease;
}

.crt-sidebar-toc-content a:hover {
    color: var(--crt-green);
}

/* =========================
   Table of Contents
========================= */

.crt-sidebar-toc .crt-toc-list {
	margin: 0;
	padding-left: 18px;
}

 
 
/* TOC links */
.crt-sidebar-toc .crt-toc-list li a {
	display: block;
	padding: 5px 0;
	line-height: 1.5;
}

/* Level 3 items slightly more to the right */
.crt-sidebar-toc .crt-toc-list .crt-toc-level-3 {
	padding-left: 18px;
}
/* =========================================================
   RECENT POSTS
   ========================================================= */

.crt-sidebar-recent {
    margin: 0;

    padding: 0;
}

.crt-sidebar-recent li {
    margin: 0;

    padding: 8px 0;

    border-bottom: 1px solid #E9EEEB;
}

.crt-sidebar-recent li:last-child {
    border-bottom: 0;
}

.crt-sidebar-post {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #596B63;

    font-size: 11px;

    line-height: 1.45;

    text-decoration: none;
}

.crt-sidebar-post:hover {
    color: var(--crt-green);
}

.crt-sidebar-thumb {
    flex: 0 0 52px;

    width: 52px;

    height: 42px;

    object-fit: cover;

    border-radius: 4px;

    border: 1px solid #DDE6E0;
}


/* =========================================================
   RELATED ARTICLES
   ========================================================= */



/* =========================================================
   PREMIUM BLOG COMMENTS
   ========================================================= */

.crt-comments-wrap {
    width: 100% !important;
    margin-top: 22px !important;
    padding: 24px !important;

    background: var(--crt-white) !important;

    border: 1px solid #DDE6E0 !important;
    border-radius: 6px !important;

    box-shadow: 0 2px 10px rgba(45, 72, 59, 0.045) !important;
}

.crt-comments {
    width: 100%;
}


/* =========================================================
   COMMENT TITLE
   ========================================================= */

.crt-comments-title,
#reply-title {
    margin: 0 0 6px !important;

    color: var(--crt-green) !important;

    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    letter-spacing: -0.01em !important;
}

#cancel-comment-reply-link {
    margin-left: 8px;

    color: #7A8982 !important;

    font-size: 11px !important;
    font-weight: 500;

    text-decoration: none;
}


/* =========================================================
   COMMENT NOTE
   ========================================================= */

.comment-notes {
    margin: 0 0 20px !important;

    color: #7A8982 !important;

    font-size: 12px !important;
    line-height: 1.6 !important;
}

.required {
    color: var(--crt-green) !important;
}


/* =========================================================
   ALL COMMENT FORM PARAGRAPHS
   ========================================================= */

.crt-comment-form p {
    margin: 0 0 15px !important;
}


/* =========================================================
   LABELS
   ========================================================= */

.crt-comment-form label {
    display: block !important;

    margin: 0 0 6px !important;

    color: var(--crt-text) !important;

    font-size: 12px !important;
    line-height: 1.4 !important;

    font-weight: 600 !important;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

.crt-comment-form textarea#comment {
    display: block !important;

    width: 100% !important;

    min-width: 100% !important;

    max-width: 100% !important;

    min-height: 145px !important;

    padding: 12px 13px !important;

    color: var(--crt-text) !important;

    background: #FAFCFB !important;

    border: 1px solid #D6E0DA !important;

    border-radius: 6px !important;

    outline: none !important;

    resize: vertical;

    font-family: inherit !important;

    font-size: 13px !important;

    line-height: 1.6 !important;

    box-shadow: none !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.crt-comment-form textarea#comment:focus {
    background: var(--crt-white) !important;

    border-color: var(--crt-green) !important;

    box-shadow: 0 0 0 3px rgba(60, 102, 83, 0.08) !important;
}


/* =========================================================
   NAME / EMAIL / WEBSITE
   ========================================================= */

.crt-comment-form .comment-form-author,
.crt-comment-form .comment-form-email,
.crt-comment-form .comment-form-url {
    width: 100% !important;
}


/* ALL INPUTS */

.crt-comment-form input[type="text"],
.crt-comment-form input[type="email"],
.crt-comment-form input[type="url"] {
    display: block !important;

    width: 100% !important;

    max-width: 100% !important;

    height: 42px !important;

    padding: 9px 12px !important;

    color: var(--crt-text) !important;

    background: #FAFCFB !important;

    border: 1px solid #D6E0DA !important;

    border-radius: 6px !important;

    outline: none !important;

    font-family: inherit !important;

    font-size: 13px !important;

    line-height: 1.4 !important;

    box-shadow: none !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* INPUT FOCUS */

.crt-comment-form input[type="text"]:focus,
.crt-comment-form input[type="email"]:focus,
.crt-comment-form input[type="url"]:focus {
    background: var(--crt-white) !important;

    border-color: var(--crt-green) !important;

    box-shadow: 0 0 0 3px rgba(60, 102, 83, 0.08) !important;
}


/* =========================================================
   COOKIE CHECKBOX
   ========================================================= */

.crt-comment-form .comment-form-cookies-consent {
    display: flex !important;

    align-items: flex-start !important;

    gap: 8px !important;

    margin-top: 3px !important;

    margin-bottom: 18px !important;
}

.crt-comment-form .comment-form-cookies-consent input[type="checkbox"] {
    flex: 0 0 auto;

    width: 15px !important;

    height: 15px !important;

    margin: 2px 0 0 !important;

    accent-color: var(--crt-green);

    cursor: pointer;
}

.crt-comment-form .comment-form-cookies-consent label {
    margin: 0 !important;

    color: #78877F !important;

    font-size: 11px !important;

    line-height: 1.5 !important;

    font-weight: 400 !important;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.crt-comment-form .form-submit {
    margin: 5px 0 0 !important;
}

.crt-comment-form #submit {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-width: 125px !important;

    height: 40px !important;

    padding: 8px 18px !important;

    color: var(--crt-white) !important;

    background: var(--crt-green) !important;

    border: 1px solid var(--crt-green) !important;

    border-radius: 4px !important;

    font-family: inherit !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    line-height: 1 !important;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.crt-comment-form #submit:hover {
    color: var(--crt-white) !important;

    background: var(--crt-primary-hover) !important;

    border-color: var(--crt-primary-hover) !important;

    transform: translateY(-1px);

    box-shadow: 0 3px 8px rgba(60, 102, 83, 0.14) !important;
}

/* Robust comment submit button styling.
   WordPress can render the submit control with different classes/id (e.g. an
   <input> or <button>), so match by type as well. Forces a green background
   with white text (and a green hover) so the button never turns white and
   disappears on the white comment card. */
.crt-comment-form input[type="submit"],
.crt-comment-form button[type="submit"],
.crt-comment-form #submit {
    background: var(--crt-green) !important;
    border-color: var(--crt-green) !important;
    color: var(--crt-white) !important;
}

.crt-comment-form input[type="submit"]:hover,
.crt-comment-form input[type="submit"]:focus,
.crt-comment-form button[type="submit"]:hover,
.crt-comment-form button[type="submit"]:focus,
.crt-comment-form #submit:hover,
.crt-comment-form #submit:focus {
    background: var(--crt-green-dark) !important;
    border-color: var(--crt-green-dark) !important;
    color: var(--crt-white) !important;
}


/* =========================================================
   REMOVE BOOTSTRAP FORM CONTROL CONFLICT
   ========================================================= */

.crt-comment-form .form-control {
    width: 100% !important;

    max-width: 100% !important;

    box-sizing: border-box !important;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.crt-comment-form input::placeholder,
.crt-comment-form textarea::placeholder {
    color: #A0ADA6 !important;

    opacity: 1;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .crt-comments-wrap {
        padding: 17px !important;

        margin-top: 18px !important;
    }

    .crt-comments-title,
    #reply-title {
        font-size: 20px !important;
    }

    .comment-notes {
        font-size: 11px !important;
    }

    .crt-comment-form textarea#comment {
        min-height: 125px !important;
    }

    .crt-comment-form input[type="text"],
    .crt-comment-form input[type="email"],
    .crt-comment-form input[type="url"] {
        height: 40px !important;

        font-size: 13px !important;
    }

    .crt-comment-form #submit {
        width: 100% !important;

        height: 42px !important;
    }
}


/* =========================================================
   FORCE STICKY
   ========================================================= */

.crt-single-page,
.crt-single-page .crt-blog-container,
.crt-single-page .crt-blog-grid,
.crt-single-page .crt-single-sidebar,
.crt-single-page .crt-blog-sidebar {
    overflow: visible !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .crt-blog-container {
        width: calc(100% - 24px);
    }

    .crt-blog-grid {
        grid-template-columns:
            minmax(0, 1fr)
            260px;

        gap: 18px;
    }

    .crt-post-title {
        font-size: 25px !important;
    }

    .crt-related-posts,
    .crt-comments-wrap {
        width: calc(100% - 278px);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .crt-blog-grid {
        grid-template-columns:
            minmax(0, 1fr)
            235px;

        gap: 16px;
    }

    .crt-single-article {
        padding: 17px;
    }

    .crt-post-title {
        font-size: 23px !important;
    }

    .crt-entry-content,
    .crt-entry-content p {
        font-size: 13.5px;
    }

    .crt-related-posts,
    .crt-comments-wrap {
        width: calc(100% - 251px);
    }
}

.crt-toc-title
{
     
    font-size: 22px !important;
}
/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .crt-blog-container {
        width: calc(100% - 20px);
    }

    .crt-blog-grid {
        display: block;
    }

    .crt-single-article {
        padding: 14px;
    }

    .crt-post-title {
        font-size: 22px !important;
    }

    .crt-post-excerpt {
        font-size: 13px;
    }

    .crt-entry-content,
    .crt-entry-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .crt-entry-content h2 {
        font-size: 20px;
    }

    .crt-entry-content h3 {
        font-size: 17px;
    }

    .crt-entry-content table {
        font-size: 11px;
    }

    .crt-entry-content th {
        font-size: 11px;
    }

    .crt-single-sidebar {
        position: static !important;

         

        overflow: visible !important;

        margin-top: 18px;
    }

    .crt-related-posts,
    .crt-comments-wrap {
        width: 100%;
    }
}
/*faq yoast*/
	    /* FAQ Container */
.schema-faq.wp-block-yoast-faq-block {
  max-width: 800px !important;
  margin: 20px auto !important;
  font-family: inherit !important;
}

/* Individual FAQ Item */
.schema-faq-section {
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  background-color: var(--crt-white)fff !important;
  transition: all 0.3s ease !important;
}

/* FAQ Question (Header) */
.schema-faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  background-color: #f9f9f9 !important;
  user-select: none !important;
  transition: background-color 0.2s ease !important;
}

.schema-faq-question:hover {
  background-color: #f0f0f0 !important;
}

/* Add + / - icon dynamically */
.schema-faq-question::after {
  content: '+' !important;
  font-size: 20px !important;
  font-weight: bold !important;
  color: #555555 !important;
  transition: transform 0.3s ease !important;
  margin-left: 10px !important;
}

/* Active State Icon */
.schema-faq-section.active .schema-faq-question::after {
  content: '−' !important;
}

/* FAQ Answer Content */
.schema-faq-answer {
  display: none !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #555555 !important;
  border-top: 1px solid #eeeeee !important;
  background-color: var(--crt-white)fff !important;
}

/* Show Answer when Active */
.schema-faq-section.active .schema-faq-answer {
  display: block !important;
}

/* ---------- Local Guide Section (Premium) ---------- */
.crt-guide-content {
	padding: 1rem;
	background: var(--crt-surface);
	border-radius: var(--crt-radius);
	border: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: var(--crt-shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.crt-guide-content:hover {
	transform: translateY(-4px);
	box-shadow: var(--crt-shadow-lg);
}


.crt-guide-text {
	color: var(--crt-text-muted);
	font-size: 16px !important;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.crt-guide-text:last-child {
	margin-bottom: 0;
	font-weight: 700;
	color: var(--crt-secondary);
	font-size: 16px !important;
}

.crt-map-wrapper {
	border-radius: var(--crt-radius);
	overflow: hidden;
	box-shadow: var(--crt-shadow-lg);
	height: 100%;
	min-height: 420px !important;
	background: #E2E8F0;
	transition: transform 200ms ease, box-shadow 200ms ease;
	
}

.crt-map-wrapper:hover {
	transform: translateY(-4px);
	box-shadow: var(--crt-shadow-xl);
}

.crt-map-wrapper iframe {
	display: block;
	width: 100%;
	 
	min-height: 420px !important;
	object-fit: cover;
}

/* Mobile - Process Cards Stack */
@media (max-width: 767.98px) {
    .crt-process-timeline {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .crt-process-card {
        width: 100%;
        max-width: 100%;
    }
}

   
/* =========================================================
   Reviews Page
   ========================================================= */

.crt-reviews-page {
	background: var(--crt-white);
}

/* Hero */

.crt-reviews-hero {
	padding: 15px 0 80px;
	background: #f7f9fc;
	border-bottom: 1px solid #e9edf3;
}

.crt-reviews-hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.crt-reviews-hero .crt-section-eyebrow {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--crt-indigo);
}

.crt-reviews-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 200;
	line-height: 1.1;
	color: var(--crt-ink);
}

.crt-reviews-hero p {
	max-width: 650px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
	color: var(--crt-muted);
}

/* Overall Rating */

.crt-overall-rating {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 30px;
	padding: 14px 22px;
	background: var(--crt-white);
	border: 1px solid var(--crt-border-soft);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	text-align: left;
}

.crt-overall-rating > strong {
	font-size: 38px;
	line-height: 1;
	color: var(--crt-ink);
}

.crt-overall-rating span {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	color: #6b7280;
}

.crt-rating-stars {
	line-height: 1;
}

/* Section */

.crt-reviews-page .crt-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.crt-reviews-page .crt-section-header {
	margin-bottom: 42px;
	text-align: center;
}

.crt-reviews-page .crt-section-eyebrow {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--crt-indigo);
}

.crt-reviews-page .crt-section-title {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 200;
	line-height: 1.2;
	color: var(--crt-ink);
}

/* Review Card */

.crt-testimonial-card {
	position: relative;
	height: 100%;
	padding: 30px;
	background: var(--crt-white);
	border: 1px solid #e7eaf0;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.crt-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.09);
	border-color: #d8def0;
}

/* Author */

.crt-review-top {
	display: flex;
	align-items: center;
	gap: 14px;
}

.crt-review-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: 0 0 50px;
	border-radius: 50%;
	background: #eef1ff;
	color: var(--crt-indigo);
	font-size: 18px;
	font-weight: 200;
}

.crt-review-author {
	line-height: 1.3;
}

.crt-review-author .fw-bold {
	font-size: 16px;
	color: var(--crt-ink);
}

.crt-verified {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 4px;
	font-size: 12px;
	color: var(--crt-muted);
}

.crt-verified i {
	color: var(--crt-indigo);
}

/* Rating */

.crt-review-rating {
	margin-top: 20px;
}

.crt-review-rating .crt-stars,
.crt-rating-stars .crt-stars {
	display: flex;
	gap: 3px;
}

/* Review Text */

.crt-review-text {
	margin: 18px 0 24px;
	font-size: 16px;
	line-height: 1.75;
	color: #4b5563;
}

/* Footer */

.crt-review-footer {
	display: flex;
	align-items: center;
	gap: 7px;
	padding-top: 18px;
	border-top: 1px solid #edf0f4;
	font-size: 12px;
	font-weight: 600;
	color: #8a94a6;
}

.crt-review-footer i {
	font-size: 15px;
}

/* Load More */

.crt-load-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 45px;
}

.crt-load-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 24px;
	background: var(--crt-ink);
	border: 1px solid var(--crt-ink);
	border-radius: 8px;
	color: var(--crt-white);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.crt-load-more-btn:hover {
	background: #FBC35C;
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(65, 91, 226, 0.2);
}

.crt-load-more-btn i {
	font-size: 15px;
}

/* Tablet */

@media (max-width: 991.98px) {

	.crt-reviews-hero {
		padding: 15px 0 60px;
	}

	.crt-reviews-page .crt-section {
		padding-top: 65px;
		padding-bottom: 65px;
	}

	.crt-testimonial-card {
		padding: 26px;
	}

}

/* Mobile */

@media (max-width: 767.98px) {

	.crt-reviews-hero {
		padding: 15px 0 50px;
	}

	.crt-reviews-hero h1 {
		font-size: 36px;
	}

	.crt-reviews-hero p {
		font-size: 16px;
		line-height: 1.6;
	}

	.crt-overall-rating {
		gap: 14px;
		padding: 12px 16px;
	}

	.crt-overall-rating > strong {
		font-size: 32px;
	}

	.crt-reviews-page .crt-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.crt-reviews-page .crt-section-header {
		margin-bottom: 30px;
	}

	.crt-testimonial-card {
		padding: 22px;
		border-radius: 10px;
	}

	.crt-review-text {
		font-size: 15px;
		line-height: 1.7;
	}

	.crt-load-more-wrapper {
		margin-top: 32px;
	}

	.crt-load-more-btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

}

/* Small Mobile */

@media (max-width: 575.98px) {

	.crt-reviews-hero h1 {
		font-size: 31px;
	}

	.crt-reviews-hero p {
		font-size: 15px;
	}

	.crt-overall-rating {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.crt-overall-rating > strong {
		font-size: 28px;
	}

}
 /* =========================================================
   Services Page
   ========================================================= */

.crt-services-page {
	background: var(--crt-white);
}

/* Hero */

.crt-services-hero {
	padding: 15px 0 90px;
	background: #f7f9fc;
	border-bottom: 1px solid #e8ebf0;
}

.crt-services-hero-content {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.crt-services-hero .crt-section-eyebrow {
	margin-bottom: 12px;
	color: var(--crt-indigo);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.crt-services-hero h1 {
	max-width: 780px;
	margin: 0 auto 20px;
	color: var(--crt-ink);
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 200;
	line-height: 1.1;
}

.crt-services-hero p {
	max-width: 680px;
	margin: 0 auto;
	color: var(--crt-muted);
	font-size: 18px;
	line-height: 1.7;
}


/* Services */

.crt-services-section {
	padding-top: 85px;
	padding-bottom: 90px;
}

.crt-services-section .crt-section-header {
	max-width: 750px;
	margin: 0 auto 48px;
	text-align: center;
}

.crt-services-section .crt-section-eyebrow,
.crt-services-benefits .crt-section-eyebrow,
.crt-services-cta .crt-section-eyebrow {
	margin-bottom: 9px;
	color: var(--crt-indigo);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.crt-services-section .crt-section-title {
	margin: 0;
	color: var(--crt-ink);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 200;
	line-height: 1.2;
}

.crt-services-intro {
	margin: 18px auto 0;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.7;
}


/* Service Card */

.crt-service-card {
	height: 100%;
	padding: 30px;
	border: 1px solid #e6e9ef;
	border-radius: 12px;
	background: var(--crt-white);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.045);
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.crt-service-card:hover {
	transform: translateY(-5px);
	border-color: #d6dcf5;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.09);
}

.crt-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	border-radius: 10px;
	background: #eef1ff;
	color: var(--crt-indigo);
	font-size: 25px;
}

.crt-service-card h3 {
	margin: 0 0 12px;
	color: var(--crt-ink);
	font-size: 21px;
	font-weight: 750;
	line-height: 1.3;
}

.crt-service-card p {
	margin: 0;
	color: var(--crt-muted);
	font-size: 15px;
	line-height: 1.7;
}


/* Benefits */

.crt-services-benefits {
	padding: 90px 0;
	background: #f7f9fc;
	border-top: 1px solid #e8ebf0;
	border-bottom: 1px solid #e8ebf0;
}

.crt-services-benefits h2 {
	max-width: 550px;
	margin: 0 0 18px;
	color: var(--crt-ink);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 200;
	line-height: 1.2;
}

.crt-services-benefits p {
	max-width: 540px;
	margin: 0;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.7;
}

.crt-benefit-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.crt-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid var(--crt-border-soft);
	border-radius: 10px;
	background: var(--crt-white);
}

.crt-benefit-item > i {
	margin-top: 2px;
	color: var(--crt-indigo);
	font-size: 20px;
}

.crt-benefit-item strong {
	display: block;
	margin-bottom: 3px;
	color: var(--crt-ink);
	font-size: 15px;
}

.crt-benefit-item span {
	display: block;
	color: var(--crt-muted);
	font-size: 13px;
	line-height: 1.5;
}


/* Final Section */

.crt-services-cta {
	padding: 90px 0;
}

.crt-services-cta-content {
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}

.crt-services-cta h2 {
	margin: 0 0 15px;
	color: var(--crt-ink);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 200;
	line-height: 1.2;
}

.crt-services-cta p {
	margin: 0;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.7;
}


/* Tablet */

@media (max-width: 991.98px) {

	.crt-services-hero {
		padding: 15px 0 70px;
	}

	.crt-services-section {
		padding-top: 70px;
		padding-bottom: 75px;
	}

	.crt-services-benefits {
		padding: 75px 0;
	}

	.crt-services-cta {
		padding: 75px 0;
	}

}


/* Mobile */

@media (max-width: 767.98px) {

	.crt-services-hero {
		padding: 15px 0 55px;
	}

	.crt-services-hero h1 {
		font-size: 36px;
	}

	.crt-services-hero p {
		font-size: 16px;
	}

	.crt-services-section {
		padding-top: 55px;
		padding-bottom: 60px;
	}

	.crt-services-section .crt-section-header {
		margin-bottom: 32px;
	}

	.crt-service-card {
		padding: 24px;
		border-radius: 10px;
	}

	.crt-services-benefits {
		padding: 60px 0;
	}

	.crt-services-benefits h2 {
		font-size: 32px;
	}

	.crt-services-cta {
		padding: 60px 0;
	}

	.crt-services-cta h2 {
		font-size: 32px;
	}

}


/* Small Mobile */

@media (max-width: 575.98px) {

	.crt-services-hero h1 {
		font-size: 31px;
	}

	.crt-services-hero p {
		font-size: 15px;
	}

	.crt-service-card {
		padding: 22px;
	}

}

/* =========================================================
   Vehicle Types Page
   ========================================================= */

.crt-vehicle-types-page {
	background: var(--crt-white);
}

/* Hero */



.crt-vehicle-types-hero .crt-section-eyebrow,
.crt-vehicle-types-section .crt-section-eyebrow {
	margin-bottom: 10px;
	color: var(--crt-indigo);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}




/* Section */






/* Card */




/* Image Placeholder */




/* Vehicle Type */

.crt-vehicle-type {
	margin-bottom: 7px;
	color: var(--crt-indigo);
	font-size: 12px;
	font-weight: 200;
	letter-spacing: .7px;
	text-transform: uppercase;
}




/* Specs */





/* Meta */





/* Tablet */

@media (max-width: 991.98px) {



}


/* Mobile */

@media (max-width: 767.98px) {










}


/* Small Mobile */

@media (max-width: 575.98px) {






}


/* =========================================================
   Car Rental Page
   ========================================================= */

.crt-car-rental-page {
	background: var(--crt-white);
}


/* Hero */



.crt-car-rental-hero .crt-section-eyebrow,
.crt-car-rental-section .crt-section-eyebrow,
.crt-car-rental-info .crt-section-eyebrow {
	margin-bottom: 10px;
	color: var(--crt-indigo);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}




/* Locations */

.crt-car-rental-section {
	padding: 80px 0 90px;
	background: var(--crt-white);
}

.crt-car-rental-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.crt-car-rental-header h2 {
	margin: 0;
	color: var(--crt-ink);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 200;
	line-height: 1.2;
}

.crt-location-count {
	padding: 10px 15px;
	border: 1px solid var(--crt-border-soft);
	border-radius: 8px;
	background: var(--crt-surface-soft);
	color: var(--crt-muted);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}


/* Location Card */

.crt-location-card {
	height: 100%;
	/*padding: 28px;*/
	border: 1px solid var(--crt-border-soft);
	border-radius: 12px;
	background: var(--crt-white);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.045);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.crt-location-card:hover {
	transform: translateY(-5px);
	border-color: #d7ddf3;
	box-shadow: 0 9px 22px rgba(15, 23, 42, 0.09);
}




.crt-location-card h3 {
	margin: 0 0 16px;
	color: var(--crt-ink);
	font-size: 21px;
	font-weight: 200;
	line-height: 1.3;
}





/* Information */






/* Tablet */

@media (max-width: 991.98px) {


	.crt-car-rental-section {
		padding: 65px 0 75px;
	}


}


/* Mobile */

@media (max-width: 767.98px) {




	.crt-car-rental-section {
		padding: 55px 0 60px;
	}

	.crt-car-rental-header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.crt-car-rental-header h2 {
		font-size: 32px;
	}

	.crt-location-card {
		/*padding: 23px;*/
		border-radius: 10px;
	}

	.crt-location-card h3 {
		font-size: 20px;
	}



}


/* Small Mobile */

@media (max-width: 575.98px) {



	.crt-location-card {
		/*padding: 20px;*/
	}




}


/* =========================================================
   SINGLE VEHICLE PAGE
   ========================================================= */

.crt-single-vehicle-page {
	background: var(--crt-white);
	color: #172033;
}


/* Hero */

.crt-single-vehicle-page .crt-sv-hero {
	padding: 20px 0 20px;
	background: #f7f9fc;
}


/* Image */

.crt-single-vehicle-page .crt-sv-image-wrap {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	border-radius: 14px;
	background: #eef1f5;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
}

.crt-single-vehicle-page .crt-sv-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.crt-single-vehicle-page .crt-sv-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #98a2b3;
	font-size: 80px;
}


/* Content */

.crt-single-vehicle-page .crt-sv-content {
	padding-left: 35px;
}

.crt-single-vehicle-page .crt-sv-eyebrow {
	margin-bottom: 12px;
	color: var(--crt-accent-dark);
	font-size: 13px;
	font-weight: 200;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.crt-single-vehicle-page .crt-sv-title {
	margin: 0 0 12px;
	color: var(--crt-ink);
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 200;
	line-height: 1.05;
}

.crt-single-vehicle-page .crt-sv-model {
	margin: 0 0 28px;
	color: var(--crt-muted);
	font-size: 18px;
	line-height: 1.6;
}


/* Specs */

.crt-single-vehicle-page .crt-sv-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.crt-single-vehicle-page .crt-sv-spec-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 12px 15px;
	border: 1px solid #e6e9ee;
	border-radius: 8px;
	background: var(--crt-white);
	color: #344054;
	font-size: 14px;
	font-weight: 600;
}

.crt-single-vehicle-page .crt-sv-spec-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
	flex: 0 0 31px;
	border-radius: 6px;
	background: var(--crt-accent-light);
	color: var(--crt-accent-dark);
}


/* Price */

.crt-single-vehicle-page .crt-sv-price {
	margin-top: 28px;
	color: var(--crt-ink);
	font-size: 27px;
	font-weight: 200;
}


/* Details */

.crt-single-vehicle-page .crt-sv-details {
	padding: 85px 0;
	background: var(--crt-white);
}

.crt-single-vehicle-page .crt-sv-section-title {
	margin: 0 0 25px;
	color: var(--crt-ink);
	font-size: 32px;
	font-weight: 200;
}

.crt-single-vehicle-page .crt-sv-description-section {
	border: 1px solid #E4EAE6;
	border-radius: 10px;
	padding: 24px;
	background: var(--crt-white);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.crt-single-vehicle-page .crt-sv-description {
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.8;
}

.crt-single-vehicle-page .crt-sv-description p {
	margin-bottom: 18px;
	color: var(--crt-content-text);
}

/* =========================================================
   SINGLE VEHICLE DESCRIPTION - PREMIUM CONTENT STYLES
   ========================================================= */

.crt-single-vehicle-page .crt-sv-description h2,
.crt-single-vehicle-page .crt-sv-description h3,
.crt-single-vehicle-page .crt-sv-description h4 {
	color: var(--crt-ink);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.crt-single-vehicle-page .crt-sv-description h2 {
	margin: 30px 0 14px;
	font-size: 22px;
	line-height: 1.3;
}

.crt-single-vehicle-page .crt-sv-description h3 {
	margin: 24px 0 12px;
	font-size: 18px;
	line-height: 1.35;
}

.crt-single-vehicle-page .crt-sv-description h4 {
	margin: 20px 0 10px;
	font-size: 16px;
	line-height: 1.4;
}

/* Lists - default bullets */
.crt-single-vehicle-page .crt-sv-description ul,
.crt-single-vehicle-page .crt-sv-description ol {
	margin: 18px 0 26px;
	padding-left: 24px;
	list-style: disc;
}

.crt-single-vehicle-page .crt-sv-description ul li,
.crt-single-vehicle-page .crt-sv-description ol li {
	margin-bottom: 8px;
	color: var(--crt-muted);
}

/* Premium table */
.crt-single-vehicle-page .crt-sv-description figure.wp-block-table {
	width: 100%;
	margin: 26px 0 40px;
	overflow-x: auto;
	border: 1px solid #E4EAE6;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	background: var(--crt-white);
	font-size: 14px;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table thead th {
	padding: 12px 16px;
	background: #F4F7F5;
	color: var(--crt-green);
	border-bottom: 2px solid #DCE5DF;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: left;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table td {
	padding: 11px 16px;
	color: var(--crt-content-text);
	border-bottom: 1px solid #EDF1EE;
	font-size: 14px;
	line-height: 1.5;
	vertical-align: middle;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table td:first-child {
	width: 65%;
	color: var(--crt-green);
	font-weight: 600;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table td:last-child {
	width: 35%;
	color: var(--crt-green);
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table tbody tr:nth-child(even) td {
	background: #FAFCFB;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table tbody tr {
	transition: background .2s ease;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table tbody tr:hover td {
	background: #F2F7F4;
}

.crt-single-vehicle-page .crt-sv-description figure.wp-block-table tr:last-child td {
	border-bottom: 0;
}

/* =========================================================
   SINGLE VEHICLE DESCRIPTION - ALL WP CONTENT ELEMENTS
   ========================================================= */

/* Blockquote */
.crt-single-vehicle-page .crt-sv-description blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	background: #F4F7F5;
	border-left: 3px solid var(--crt-green);
	border-radius: 0 8px 8px 0;
	color: var(--crt-content-text);
	font-size: 15px;
	line-height: 1.7;
}

.crt-single-vehicle-page .crt-sv-description blockquote p {
	margin-bottom: 0;
}

/* Images */
.crt-single-vehicle-page .crt-sv-description img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.crt-single-vehicle-page .crt-sv-description .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.crt-single-vehicle-page .crt-sv-description .alignleft {
	float: left;
	margin-right: 20px;
}

.crt-single-vehicle-page .crt-sv-description .alignright {
	float: right;
	margin-left: 20px;
}

/* Links */
.crt-single-vehicle-page .crt-sv-description a {
	color: var(--crt-green);
	font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}

.crt-single-vehicle-page .crt-sv-description a:hover {
	color: var(--crt-green-dark);
	text-decoration: underline;
}

/* Strong / Bold */
.crt-single-vehicle-page .crt-sv-description strong,
.crt-single-vehicle-page .crt-sv-description b {
	color: var(--crt-green);
	font-weight: 700;
}

/* Horizontal Rule */
.crt-single-vehicle-page .crt-sv-description hr {
	margin: 30px 0;
	border: 0;
	border-top: 1px solid #E4EAE6;
}

/* Code */
.crt-single-vehicle-page .crt-sv-description code {
	padding: 2px 6px;
	background: #F4F7F5;
	border-radius: 4px;
	font-size: 0.9em;
	color: var(--crt-green-dark);
}

.crt-single-vehicle-page .crt-sv-description pre {
	margin: 20px 0;
	padding: 16px;
	background: #F4F7F5;
	border: 1px solid #E4EAE6;
	border-radius: 8px;
	overflow-x: auto;
	font-size: 14px;
	line-height: 1.6;
}

/* Buttons */
.crt-single-vehicle-page .crt-sv-description .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: var(--crt-green);
	color: var(--crt-white) !important;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}

.crt-single-vehicle-page .crt-sv-description .wp-block-button__link:hover {
	background: var(--crt-green-dark);
	transform: translateY(-1px);
}

/* Columns */
.crt-single-vehicle-page .crt-sv-description .wp-block-columns {
	display: flex;
	gap: 24px;
	margin: 24px 0;
}

.crt-single-vehicle-page .crt-sv-description .wp-block-column {
	flex: 1;
	min-width: 0;
}

/* Highlight / Background paragraphs */
.crt-single-vehicle-page .crt-sv-description p.has-background {
	margin: 20px 0;
	padding: 14px 18px;
	background-color: #F4F7F5 !important;
	border-radius: 8px;
}

/* Separator */
.crt-single-vehicle-page .crt-sv-description .wp-block-separator {
	margin: 30px auto;
	border: 0;
	border-top: 2px solid #E4EAE6;
	width: 100px;
}

/* Embed / Video */
.crt-single-vehicle-page .crt-sv-description .wp-block-embed,
.crt-single-vehicle-page .crt-sv-description .wp-block-video {
	margin: 24px 0;
}

.crt-single-vehicle-page .crt-sv-description iframe,
.crt-single-vehicle-page .crt-sv-description video {
	max-width: 100%;
	border-radius: 8px;
}

/* Gallery */
.crt-single-vehicle-page .crt-sv-description .wp-block-gallery {
	margin: 24px 0;
}

.crt-single-vehicle-page .crt-sv-description .wp-block-gallery img {
	border-radius: 8px;
}

/* File */
.crt-single-vehicle-page .crt-sv-description .wp-block-file {
	margin: 20px 0;
	padding: 12px 16px;
	background: #F4F7F5;
	border-radius: 8px;
}

/* Info Card */

.crt-single-vehicle-page .crt-sv-info-card {
	position: sticky;
	top: 30px;
	padding: 28px;
	border: 1px solid #e6e9ee;
	border-radius: 14px;
	background: var(--crt-surface-soft);
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.crt-single-vehicle-page .crt-sv-info-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid var(--crt-border-soft);
}

.crt-single-vehicle-page .crt-sv-info-row:first-child {
	padding-top: 0;
}

.crt-single-vehicle-page .crt-sv-info-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.crt-single-vehicle-page .crt-sv-info-row strong {
	color: #344054;
	font-size: 14px;
}

.crt-single-vehicle-page .crt-sv-info-row span {
	color: var(--crt-muted);
	font-size: 14px;
	font-weight: 600;
	text-align: right;
}


/* Tablet */

@media (max-width: 991.98px) {

	.crt-single-vehicle-page .crt-sv-hero {
		padding: 20px 0 60px;
	}

	.crt-single-vehicle-page .crt-sv-image-wrap {
		height: 430px;
		margin-bottom: 20px;
	}

	.crt-single-vehicle-page .crt-sv-content {
		padding-left: 0;
	}

	.crt-single-vehicle-page .crt-sv-info-card {
		position: static;
		margin-top: 20px;
	}

}


/* Mobile */

@media (max-width: 767.98px) {

	.crt-single-vehicle-page .crt-sv-hero {
		padding: 20px 0 45px;
	}

	.crt-single-vehicle-page .crt-sv-image-wrap {
		height: 280px;
		border-radius: 12px;
	}

	.crt-single-vehicle-page .crt-sv-title {
		font-size: 36px;
	}

	.crt-single-vehicle-page .crt-sv-model {
		font-size: 16px;
	}

	.crt-single-vehicle-page .crt-sv-specs {
		grid-template-columns: 1fr;
	}

	.crt-single-vehicle-page .crt-sv-price {
		font-size: 23px;
	}

	.crt-single-vehicle-page .crt-sv-details {
		padding: 45px 0;
	}

	.crt-single-vehicle-page .crt-sv-section-title {
		font-size: 27px;
	}

	.crt-single-vehicle-page .crt-sv-info-card {
		padding: 20px;
	}

}


/* Small Mobile */

@media (max-width: 575.98px) {

	.crt-single-vehicle-page .crt-sv-image-wrap {
		height: 240px;
		border-radius: 10px;
	}

	.crt-single-vehicle-page .crt-sv-title {
		font-size: 32px;
	}

}

/* =========================================================
   SINGLE VEHICLE PRICE
   ========================================================= */

.crt-single-vehicle-page .crt-sv-price-box {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	padding: 18px 20px;
	border: 1px solid var(--crt-border-soft);
	border-radius: 10px;
	background: var(--crt-white);
	box-shadow: 0 3px 12px rgba(16, 24, 40, 0.05);
}

.crt-single-vehicle-page .crt-sv-price-label {
	width: 100%;
	margin-bottom: -2px;
	color: var(--crt-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.crt-single-vehicle-page .crt-sv-price {
	margin: 0;
	color: var(--crt-ink);
	font-size: 30px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.crt-single-vehicle-page .crt-sv-price-unit {
	color: var(--crt-muted);
	font-size: 14px;
	font-weight: 600;
}


/* Mobile */

@media (max-width: 767.98px) {

	.crt-single-vehicle-page .crt-sv-price-box {
		margin-top: 22px;
		padding: 16px;
	}

	.crt-single-vehicle-page .crt-sv-price {
		font-size: 26px;
	}

}

/* =========================================================
   VEHICLE TYPES / LISTING PAGE
   Prefix: crt-vt-
   ========================================================= */

.crt-vehicle-types-page {
	background: var(--crt-white);
	color: #172033;
}


/* =========================================================
   HERO
   ========================================================= */

.crt-vehicle-types-page .crt-vt-hero {
	padding: 15px 0 90px;
	background: #f7f9fc;
}

.crt-vehicle-types-page .crt-vt-hero-content {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.crt-vehicle-types-page .crt-vt-eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--crt-accent-dark);
	font-size: 13px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.crt-vehicle-types-page .crt-vt-hero-title {
	margin: 0 0 18px;
	color: var(--crt-ink);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 200;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.crt-vehicle-types-page .crt-vt-hero-text {
	max-width: 680px;
	margin: 0 auto;
	color: var(--crt-muted);
	font-size: 17px;
	line-height: 1.75;
}


/* =========================================================
   VEHICLE SECTION
   ========================================================= */

.crt-vehicle-types-page .crt-vt-section {
	padding: 85px 0;
	background: var(--crt-white);
}

.crt-vehicle-types-page .crt-vt-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 38px;
}

.crt-vehicle-types-page .crt-vt-section-title {
	margin: 0;
	color: var(--crt-ink);
	font-size: 34px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.crt-vehicle-types-page .crt-vt-count {
	padding: 10px 17px;
	border: 1px solid #e6e9ee;
	border-radius: 16px;
	background: var(--crt-surface-soft);
	color: #475467;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}


/* =========================================================
   VEHICLE CARD
   ========================================================= */

.crt-vehicle-types-page .crt-vt-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid #e7e9ee;
	border-radius: 14px;
	background: var(--crt-white);
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.crt-vehicle-types-page .crt-vt-card:hover {
	transform: translateY(-6px);
	border-color: var(--crt-accent-light);
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.11);
}


/* =========================================================
   VEHICLE IMAGE
   ========================================================= */

.crt-vehicle-types-page .crt-vt-image-link {
	display: block;
	text-decoration: none;
}

.crt-vehicle-types-page .crt-vt-image {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f3f5f7;
}

.crt-vehicle-types-page .crt-vt-image-element {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.crt-vehicle-types-page .crt-vt-card:hover .crt-vt-image-element {
	transform: scale(1.04);
}


/* Image placeholder */

.crt-vehicle-types-page .crt-vt-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 250px;
	background: #f3f5f7;
	color: #98a2b3;
	font-size: 60px;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.crt-vehicle-types-page .crt-vt-card-body {
	display: flex;
	flex-direction: column;
	min-height: 290px;
	padding: 25px;
}

.crt-vehicle-types-page .crt-vt-type {
	margin-bottom: 8px;
	color: var(--crt-accent-dark);
	font-size: 12px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.crt-vehicle-types-page .crt-vt-card-title {
	margin: 0 0 7px;
	font-size: 24px;
	font-weight: 200;
	line-height: 1.2;
}

.crt-vehicle-types-page .crt-vt-card-title a {
	color: var(--crt-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.crt-vehicle-types-page .crt-vt-card-title a:hover {
	color: var(--crt-accent-dark);
}

.crt-vehicle-types-page .crt-vt-model {
	margin: 0 0 20px;
	color: var(--crt-muted);
	font-size: 14px;
	line-height: 1.5;
}


/* =========================================================
   SPECS
   ========================================================= */

.crt-vehicle-types-page .crt-vt-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
}

.crt-vehicle-types-page .crt-vt-spec {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid #edf0f4;
	border-radius: 8px;
	background: #f9fafb;
	color: #475467;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.crt-vehicle-types-page .crt-vt-spec i {
	flex: 0 0 auto;
	color: var(--crt-accent);
	font-size: 15px;
}


/* =========================================================
   FUEL META
   ========================================================= */

.crt-vehicle-types-page .crt-vt-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	color: var(--crt-muted);
	font-size: 13px;
	font-weight: 600;
}

.crt-vehicle-types-page .crt-vt-meta i {
	color: var(--crt-accent);
	font-size: 16px;
}


/* =========================================================
   ACTION
   ========================================================= */

.crt-vehicle-types-page .crt-vt-action {
	margin-top: auto;
	padding-top: 22px;
}

.crt-vehicle-types-page .crt-vt-action .btn {
	width: 100%;
	padding: 11px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.crt-vehicle-types-page .crt-vt-action .btn:hover {
	transform: translateY(-1px);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.crt-vehicle-types-page .crt-vt-empty {
	max-width: 600px;
	margin: 0 auto;
	padding: 60px 30px;
	border: 1px solid #e6e9ee;
	border-radius: 14px;
	background: var(--crt-surface-soft);
	text-align: center;
}

.crt-vehicle-types-page .crt-vt-empty .crt-vt-image-placeholder {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
	border-radius: 14px;
	font-size: 40px;
}

.crt-vehicle-types-page .crt-vt-empty h3 {
	margin: 0 0 10px;
	color: var(--crt-ink);
	font-size: 24px;
	font-weight: 200;
}

.crt-vehicle-types-page .crt-vt-empty p {
	margin: 0;
	color: var(--crt-muted);
	font-size: 15px;
	line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

	.crt-vehicle-types-page .crt-vt-hero {
		padding: 15px 0 70px;
	}

	.crt-vehicle-types-page .crt-vt-section {
		padding: 65px 0;
	}

	.crt-vehicle-types-page .crt-vt-header {
		margin-bottom: 30px;
	}

	.crt-vehicle-types-page .crt-vt-image,
	.crt-vehicle-types-page .crt-vt-image-placeholder {
		height: 230px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

	.crt-vehicle-types-page .crt-vt-hero {
		padding: 15px 0 55px;
	}

	.crt-vehicle-types-page .crt-vt-hero-title {
		font-size: 36px;
	}

	.crt-vehicle-types-page .crt-vt-hero-text {
		font-size: 15px;
		line-height: 1.7;
	}

	.crt-vehicle-types-page .crt-vt-section {
		padding: 50px 0;
	}

	.crt-vehicle-types-page .crt-vt-header {
		display: block;
		margin-bottom: 28px;
	}

	.crt-vehicle-types-page .crt-vt-section-title {
		font-size: 29px;
	}

	.crt-vehicle-types-page .crt-vt-count {
		display: inline-block;
		margin-top: 15px;
	}

	.crt-vehicle-types-page .crt-vt-image,
	.crt-vehicle-types-page .crt-vt-image-placeholder {
		height: 230px;
	}

	.crt-vehicle-types-page .crt-vt-card-body {
		min-height: 0;
		padding: 22px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

	.crt-vehicle-types-page .crt-vt-hero {
		padding: 15px 0 45px;
	}

	.crt-vehicle-types-page .crt-vt-hero-title {
		font-size: 31px;
	}

	.crt-vehicle-types-page .crt-vt-section-title {
		font-size: 26px;
	}

	.crt-vehicle-types-page .crt-vt-card {
		border-radius: 10px;
	}

	.crt-vehicle-types-page .crt-vt-image,
	.crt-vehicle-types-page .crt-vt-image-placeholder {
		height: 210px;
	}

	.crt-vehicle-types-page .crt-vt-card-body {
		padding: 20px;
	}

	.crt-vehicle-types-page .crt-vt-card-title {
		font-size: 22px;
	}

	.crt-vehicle-types-page .crt-vt-specs {
		grid-template-columns: 1fr;
	}

}

 
/* =========================================================
   SINGLE CAR RENTAL PAGE
   Unique Prefix: crt-sh-
   ========================================================= */

.crt-single-car-rental-page {
	background: var(--crt-white)fff;
	color: #172033;
}


/* =========================================================
   HERO
   ========================================================= */

.crt-single-car-rental-page .crt-sh-hero {
	padding: 20px 0 80px;
	background: #f7f9fc;
}

.crt-single-car-rental-page .crt-sh-content {
	padding-left: 35px;
}

.crt-single-car-rental-page .crt-sh-eyebrow {
	display: inline-block;
	margin-bottom: 13px;
	color: var(--crt-indigo);
	font-size: 13px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.crt-single-car-rental-page .crt-sh-title {
	margin: 0 0 20px;
	color: var(--crt-ink);
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 200;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.crt-single-car-rental-page .crt-sh-address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.7;
}

.crt-single-car-rental-page .crt-sh-address i {
	flex: 0 0 auto;
	margin-top: 4px;
	color: var(--crt-indigo);
	font-size: 19px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.crt-single-car-rental-page .crt-sh-image-wrap {
	position: relative;
	width: 100%;
	height: 470px;
	overflow: hidden;
	border-radius: 14px;
	background: #eef1f5;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.10);
}

.crt-single-car-rental-page .crt-sh-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.crt-single-car-rental-page .crt-sh-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #eef1f5;
	color: #98a2b3;
	font-size: 75px;
}


/* =========================================================
   DETAILS
   ========================================================= */

.crt-single-car-rental-page .crt-sh-details {
	padding: 85px 0;
	background: var(--crt-white)fff;
}

.crt-single-car-rental-page .crt-sh-main-content {
	max-width: 800px;
}

.crt-single-car-rental-page .crt-sh-section-title {
	margin: 0 0 25px;
	color: var(--crt-ink);
	font-size: 34px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: -0.02em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.crt-single-car-rental-page .crt-sh-description {
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.8;
}

.crt-single-car-rental-page .crt-sh-description p {
	margin: 0 0 18px;
}

.crt-single-car-rental-page .crt-sh-description p:last-child {
	margin-bottom: 0;
}

.crt-single-car-rental-page .crt-sh-description h2,
.crt-single-car-rental-page .crt-sh-description h3,
.crt-single-car-rental-page .crt-sh-description h4 {
	margin: 30px 0 14px;
	color: var(--crt-ink);
	font-weight: 200;
}

.crt-single-car-rental-page .crt-sh-description ul,
.crt-single-car-rental-page .crt-sh-description ol {
	margin: 20px 0;
	padding-left: 22px;
}

.crt-single-car-rental-page .crt-sh-description li {
	margin-bottom: 8px;
}


/* =========================================================
   INFO CARD
   ========================================================= */

.crt-single-car-rental-page .crt-sh-info-card {
	position: sticky;
	top: 30px;
	padding: 28px;
	border: 1px solid var(--crt-border-soft);
	border-radius: 14px;
	background: var(--crt-surface-soft);
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.crt-single-car-rental-page .crt-sh-info-heading {
	margin-bottom: 5px;
}

.crt-single-car-rental-page .crt-sh-info-heading h3 {
	margin: 0;
	color: var(--crt-ink);
	font-size: 21px;
	font-weight: 200;
}


/* =========================================================
   INFO ROW
   ========================================================= */

.crt-single-car-rental-page .crt-sh-info-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 17px 0;
	border-bottom: 1px solid var(--crt-border-soft);
}

.crt-single-car-rental-page .crt-sh-info-row:last-of-type {
	border-bottom: 0;
}

.crt-single-car-rental-page .crt-sh-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 8px;
	background: #eef1ff;
	color: var(--crt-indigo);
	font-size: 17px;
}

.crt-single-car-rental-page .crt-sh-info-content {
	min-width: 0;
	padding-top: 1px;
}

.crt-single-car-rental-page .crt-sh-info-label {
	display: block;
	margin-bottom: 4px;
	color: #344054;
	font-size: 12px;
	font-weight: 200;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.crt-single-car-rental-page .crt-sh-info-value {
	display: block;
	overflow-wrap: anywhere;
	color: var(--crt-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-decoration: none;
}

.crt-single-car-rental-page a.crt-sh-info-value:hover {
	color: var(--crt-indigo);
}


/* =========================================================
   CALL BUTTON
   ========================================================= */

.crt-single-car-rental-page .crt-sh-cta {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--crt-border-soft);
}

.crt-single-car-rental-page .crt-sh-call-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	padding: 13px 18px;
	border: 1px solid var(--crt-indigo);
	border-radius: 8px;
	background: var(--crt-indigo);
	color: var(--crt-white)fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	transition: all 0.2s ease;
}

.crt-single-car-rental-page .crt-sh-call-button:hover {
	border-color: #3048c8;
	background: #3048c8;
	color: var(--crt-white)fff;
	transform: translateY(-1px);
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.crt-single-car-rental-page .crt-sh-about {
	padding: 75px 0;
	background: #f7f9fc;
}

.crt-single-car-rental-page .crt-sh-about-content {
	max-width: 850px;
}

.crt-single-car-rental-page .crt-sh-about-title {
	margin: 0 0 18px;
	color: var(--crt-ink);
	font-size: 34px;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.crt-single-car-rental-page .crt-sh-about-text {
	margin: 0;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

	.crt-single-car-rental-page .crt-sh-hero {
		padding: 20px 0 65px;
	}

	.crt-single-car-rental-page .crt-sh-image-wrap {
		height: 400px;
	}

	.crt-single-car-rental-page .crt-sh-content {
		padding-left: 0;
	}

	.crt-single-car-rental-page .crt-sh-info-card {
		position: static;
	}

	.crt-single-car-rental-page .crt-sh-details {
		padding: 65px 0;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

	.crt-single-car-rental-page .crt-sh-hero {
		padding: 20px 0 50px;
	}

	.crt-single-car-rental-page .crt-sh-image-wrap {
		height: 280px;
		border-radius: 12px;
	}

	.crt-single-car-rental-page .crt-sh-content {
		padding-top: 5px;
	}

	.crt-single-car-rental-page .crt-sh-title {
		font-size: 36px;
	}

	.crt-single-car-rental-page .crt-sh-address {
		font-size: 15px;
	}

	.crt-single-car-rental-page .crt-sh-details {
		padding: 50px 0;
	}

	.crt-single-car-rental-page .crt-sh-section-title {
		font-size: 28px;
	}

	.crt-single-car-rental-page .crt-sh-info-card {
		padding: 22px;
		border-radius: 10px;
	}

	.crt-single-car-rental-page .crt-sh-about {
		padding: 50px 0;
	}

	.crt-single-car-rental-page .crt-sh-about-title {
		font-size: 28px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

	.crt-single-car-rental-page .crt-sh-image-wrap {
		height: 230px;
		border-radius: 10px;
	}

	.crt-single-car-rental-page .crt-sh-title {
		font-size: 31px;
	}

	.crt-single-car-rental-page .crt-sh-eyebrow {
		font-size: 11px;
	}

	.crt-single-car-rental-page .crt-sh-info-card {
		padding: 18px;
	}

	.crt-single-car-rental-page .crt-sh-info-row {
		padding: 14px 0;
	}

	.crt-single-car-rental-page .crt-sh-about-title {
		font-size: 25px;
	}

}
 

/* =========================================================
   your city LOCATION CARDS
   ========================================================= */

.crt-locations-section {
	padding: 20px 0;
}

.crt-section-description {
	max-width: 680px;
	color: var(--crt-muted);
	font-size: 16px;
	line-height: 1.7;
}


/* Card */

.crt-location-card {
	background: var(--crt-white);
	border: 1px solid #e9edf2;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crt-location-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
}


/* Link */

.crt-location-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}


/* Image */

.crt-location-card-img {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: #f3f5f7;
}

.crt-location-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.crt-location-card:hover .crt-location-image {
	transform: scale(1.06);
}


/* Placeholder */

.crt-location-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f4f6f8, #e9edf2);
	color: #98a2b3;
	font-size: 46px;
}


/* Badge */

.crt-location-badge {
	position: absolute;
	top: 16px;
	left: 16px;

	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 7px 12px;

	background: rgba(255, 255, 255, 0.95);
	color: #1d2939;

	border-radius: 16px;

	font-size: 12px;
	font-weight: 600;

	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


/* Body */

.crt-location-card-body {
	padding: 22px;
}


/* Title */

.crt-location-card-title {
	margin: 0 0 16px;

	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;

	color: #101828;
}


/* Meta */




/* Footer */



.crt-location-card:hover .crt-location-card-footer i {
	transform: translateX(5px);
}


/* Mobile */

@media (max-width: 767px) {

	.crt-locations-section {
		padding: 60px 0;
	}

	.crt-location-card-img {
		height: 200px;
	}

	.crt-location-card-body {
		padding: 18px;
	}

	.crt-location-card-title {
		font-size: 18px;
	}

}


/* ==========================================================================
   your city Car Rentals — brand refinement layer
   (applied after all base rules so it safely wins the cascade)
   ========================================================================== */

.crt-hero-title {
	text-shadow: 0 1px 6px rgba(10, 46, 56, 0.35);
	line-height: 1.12;
	letter-spacing: -0.01em;
}

.crt-section-eyebrow {
	font-weight: 200;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: var(--crt-accent-dark);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.crt-section-eyebrow::after {
	content: "";
	width: 34px;
	height: 3px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--crt-accent), var(--accent-dark));
}

.crt-search-wrap {
	border-radius: var(--crt-radius-lg);
	box-shadow: var(--crt-shadow-xl);
	border: 1px solid rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.crt-search-form .form-control:focus {
	border-color: var(--crt-accent);
	box-shadow: 0 0 0 0.25rem rgba(63, 107, 87, 0.18);
}

.crt-location-card,
.crt-deal-card,
.crt-feature-card,
.crt-testimonial-card,
.crt-service-card,
.crt-vt-card,
.crt-blog-card {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
}

.crt-location-card:hover,
.crt-deal-card:hover,
.crt-feature-card:hover,
.crt-testimonial-card:hover,
.crt-service-card:hover,
.crt-vt-card:hover,
.crt-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--crt-shadow-xl);
	border-color: rgba(15, 122, 146, 0.25);
}

.crt-cta-banner {
	background: linear-gradient(135deg, var(--crt-navy) 0%, var(--crt-navy-light) 50%, var(--secondary) 100%);
	background-size: 160% 160%;
	animation: bcrGlowShift 12s ease-in-out infinite;
	border-radius: var(--crt-radius-lg);
	box-shadow: var(--crt-shadow-xl);
}

@keyframes bcrGlowShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
  
/* =========================================
   COMMENTS - PREMIUM DESIGN
========================================= */

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


/* =========================================
   COMMENT ITEM
========================================= */

.crt-comment-list > .comment {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}


/* =========================================
   COMMENT BODY
========================================= */

.crt-comment-list .comment-body {
	position: relative;

	padding: 24px 26px;

	background: var(--crt-white)fff;

	border: 1px solid #e8ece9;
	border-radius: 10px;

	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.crt-comment-list .comment-body:hover {
	transform: translateY(-2px);

	border-color: #dce5df;

	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}


/* =========================================
   COMMENT HEADER
========================================= */

.crt-comment-list .comment-meta {
	margin: 0;
	padding: 0;
}


/* =========================================
   AUTHOR
========================================= */

.crt-comment-list .comment-author {
	display: flex;
	align-items: center;
	gap: 14px;

	margin: 0;
	padding: 0;
}


/* =========================================
   AVATAR
========================================= */

.crt-comment-list .comment-author .avatar {
	width: 56px;
	height: 56px;

	flex: 0 0 56px;

	object-fit: cover;

	border-radius: 50%;

	border: 1px solid #eef4f0;

	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}


/* =========================================
   AUTHOR NAME
========================================= */

.crt-comment-list .comment-author .fn {
	display: block;

	font-size: 15px;
	line-height: 1.4;

	font-weight: 800;

	color: #17201b;
}

.crt-comment-list .comment-author .fn a {
	color: #17201b;
	text-decoration: none;
}

.crt-comment-list .comment-author .fn a:hover {
	color: var(--crt-primary);
}


/* =========================================
   SAYS
========================================= */

.crt-comment-list .comment-author .says {
	font-size: 13px;
	color: #8a928d;
	font-weight: 400;
}


/* =========================================
   COMMENT DATE
========================================= */

.crt-comment-list .comment-metadata {
	margin-top: 6px;
	margin-left: 70px;

	font-size: 12px;
	line-height: 1.5;
}

.crt-comment-list .comment-metadata a {
	color: #89918c;
	text-decoration: none;
}

.crt-comment-list .comment-metadata a:hover {
	color: var(--crt-brand);
}


/* =========================================
   MODERATION MESSAGE
========================================= */

.crt-comment-list .comment-awaiting-moderation {
	display: inline-block;

	margin-top: 14px;
	margin-left: 70px;

	padding: 7px 11px;

	border-radius: 6px;

	background: var(--crt-white)7e6;

	color: #9a6a16;

	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
}


/* =========================================
   COMMENT CONTENT
========================================= */

.crt-comment-list .comment-content {
	margin-top: 20px;
	padding: 0;
}

.crt-comment-list .comment-content p {
	margin: 0;

	font-size: 15px;
	line-height: 1.75;

	color: #4f5953;
}

.crt-comment-list .comment-content p + p {
	margin-top: 12px;
}


/* =========================================
   REPLY
========================================= */

.crt-comment-list .reply {
	margin-top: 18px;
	padding-top: 16px;

	border-top: 1px solid #edf0ee;
}

.crt-comment-list .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 8px 15px;

	border-radius: 6px;

	background: #eef4f0;

	color: var(--crt-brand);

	font-size: 13px;
	font-weight: 700;

	text-decoration: none;

	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.crt-comment-list .comment-reply-link:hover {
	background: var(--crt-primary) !important;
	color: var(--crt-white) !important;

	transform: translateY(-1px);
}


/* =========================================
   NESTED COMMENTS
========================================= */

.crt-comment-list .children {
	margin: 20px 0 0 55px;
	padding: 0;

	list-style: none;
}

.crt-comment-list .children .comment-body {
	background: #f8faf9;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

	.crt-comment-list .comment-body {
		padding: 20px;
		border-radius: 10px;
	}

	.crt-comment-list .comment-author {
		gap: 11px;
	}

	.crt-comment-list .comment-author .avatar {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	.crt-comment-list .comment-author .fn {
		font-size: 14px;
	}

	.crt-comment-list .comment-metadata {
		margin-left: 59px;
		font-size: 11px;
	}

	.crt-comment-list .comment-awaiting-moderation {
		margin-left: 59px;
		font-size: 11px;
	}

	.crt-comment-list .comment-content {
		margin-top: 17px;
	}

	.crt-comment-list .comment-content p {
		font-size: 14px;
		line-height: 1.7;
	}

	.crt-comment-list .children {
		margin-left: 15px;
	}

}
/* =========================================================
   SINGLE CAR RENTAL — HOME-STYLE HERO + SEARCH
   ========================================================= */

.crt-single-car-rental-page > .crt-breadcrumb-wrap {
	padding: 12px 0 10px;
	background: #f7f9fc;
	border-bottom: 1px solid #e9edf3;
}

.crt-single-car-rental-page .crt-sh-page-head-inner {
	max-width: 820px;
}

.crt-single-car-rental-page .crt-sh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--crt-white)fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.crt-single-car-rental-page .crt-sh-title {
	margin: 0 0 14px;
	color: var(--crt-white)fff;
	font-size: clamp(34px, 4.5vw, 52px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.crt-single-car-rental-page .crt-sh-address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 16px;
	line-height: 1.7;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.crt-single-car-rental-page .crt-sh-address i {
	flex: 0 0 auto;
	margin-top: 4px;
	color: var(--crt-white)fff;
	font-size: 19px;
}


/* Hero — banner + overlapping search card (like home page) */

.crt-single-car-rental-page .crt-sh-hero {
	padding: 0 0 90px;
	background: var(--crt-white);
}

.crt-single-car-rental-page .crt-sh-hero-banner {
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #2a3242;
}

.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-overlay {
	display: block;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(42, 50, 66, 0.78) 0%,
		rgba(42, 50, 66, 0.5) 55%,
		rgba(58, 68, 84, 0.6) 100%
	);
}

.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
	min-height: 300px;
	padding-top: 0;
}

.crt-single-car-rental-page .crt-sh-search-wrap {
	position: relative;
	z-index: 5;
	margin-top: -58px;
}

.crt-single-car-rental-page .crt-sh-search-wrap .crt-search-form {
	padding: 1.4rem;
}


/* =========================================================
   SINGLE CAR RENTAL — DETAILS + INFO CARD
   ========================================================= */

.crt-single-car-rental-page .crt-sh-details {
	padding: 80px 0;
	background: var(--crt-white)fff;
}

.crt-single-car-rental-page .crt-sh-main-content {
	width: 100%;
	max-width: 100%;
}

.crt-single-car-rental-page .crt-sh-main-content > .crt-sh-eyebrow {
	margin-bottom: 18px;
}

.crt-single-car-rental-page .crt-sh-info-card {
	position: sticky;
	top: 30px;
	padding: 26px;
	border: 1px solid var(--crt-border-soft);
	border-radius: 14px;
	background: var(--crt-surface-soft);
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.crt-single-car-rental-page .crt-sh-info-heading h3 {
	margin: 0 0 6px;
	color: var(--crt-ink);
	font-size: 20px;
	font-weight: 700;
}

.crt-single-car-rental-page .crt-sh-info-row {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 15px 0;
	border-bottom: 1px solid var(--crt-border-soft);
}

.crt-single-car-rental-page .crt-sh-info-row:last-of-type {
	border-bottom: 0;
}

.crt-single-car-rental-page .crt-sh-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 8px;
	background: #e3ede7;
	color: #2f5342;
	font-size: 17px;
}

.crt-single-car-rental-page .crt-sh-info-content {
	min-width: 0;
	padding-top: 1px;
}

.crt-single-car-rental-page .crt-sh-info-label {
	display: block;
	margin-bottom: 4px;
	color: #344054;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.crt-single-car-rental-page .crt-sh-info-value {
	display: block;
	overflow-wrap: anywhere;
	color: var(--crt-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-decoration: none;
}

.crt-single-car-rental-page a.crt-sh-info-value:hover {
	color: #2f5342;
}

.crt-single-car-rental-page .crt-sh-cta {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--crt-border-soft);
}

.crt-single-car-rental-page .crt-sh-call-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	padding: 13px 18px;
	border: 1px solid #3f6b57;
	border-radius: 8px;
	background: #3f6b57;
	color: var(--crt-white)fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	transition: all 0.2s ease;
}

.crt-single-car-rental-page .crt-sh-call-button:hover {
	border-color: #2f5342;
	background: #2f5342;
	color: var(--crt-white)fff;
	transform: translateY(-1px);
}
/* =========================================================
   SINGLE CAR RENTAL — CONTENT STYLING (tables, lists, headings)
   ========================================================= */

.crt-single-car-rental-page .crt-sh-main-content p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5752;
}

.crt-single-car-rental-page .crt-sh-main-content h2,
.crt-single-car-rental-page .crt-sh-main-content h3,
.crt-single-car-rental-page .crt-sh-main-content h4 {
	color: #263f35;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.crt-single-car-rental-page .crt-sh-main-content h2 {
	font-size: 27px;
	margin: 40px 0 16px;
}

.crt-single-car-rental-page .crt-sh-main-content h3 {
	font-size: 21px;
	margin: 36px 0 14px;
}

.crt-single-car-rental-page .crt-sh-main-content h4 {
	font-size: 18px;
	margin: 33px 0 14px;
}

.crt-single-car-rental-page .crt-sh-main-content a {
	color: #3f6b57;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.crt-single-car-rental-page .crt-sh-main-content a:hover {
	color: #263f35;
	text-decoration: underline;
}


/* Tables */

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table {
	width: 100%;
	margin: 25px 0 32px;
	overflow-x: auto;
	border-radius: 8px;
	background: var(--crt-white)fff;
	box-shadow: 0 2px 10px rgba(38, 63, 53, 0.08);
	-webkit-overflow-scrolling: touch;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	font-size: 14px;
	background: var(--crt-white)fff;
	border: 1px solid #e4ebe7;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table thead th {
	background: var(--crt-brand);
	color: var(--crt-white)fff;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 15px;
	text-align: left;
	vertical-align: middle;
	border: 0;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table td,
.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table th {
	padding: 12px 15px;
	text-align: left;
	vertical-align: top;
	border-right: 1px solid #e8eeeb;
	border-bottom: 1px solid #e8eeeb;
	line-height: 1.55;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table td:last-child,
.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table th:last-child {
	border-right: 0;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table tbody tr {
	transition: background 0.2s ease;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table tbody tr:first-child td {
	border-top: 0;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table tbody tr:last-child td {
	border-bottom: 0;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table tbody tr:nth-child(even) {
	background: #f7faf8;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table tbody tr:hover {
	background: #edf5f0;
}

.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table td strong {
	color: #263f35;
	font-weight: 700;
}
/* Lists */

.crt-single-car-rental-page .crt-sh-main-content ul,
.crt-single-car-rental-page .crt-sh-main-content ol {
	margin: 15px 0 28px;
	padding-left: 24px;
	color: #4b5752;
}

.crt-single-car-rental-page .crt-sh-main-content ul li,
.crt-single-car-rental-page .crt-sh-main-content ol li {
	margin-bottom: 10px;
	padding-left: 5px;
	font-size: 15.5px;
	line-height: 1.7;
}

.crt-single-car-rental-page .crt-sh-main-content ul li::marker {
	color: var(--crt-brand);
}

.crt-single-car-rental-page .crt-sh-main-content ol li::marker {
	color: var(--crt-brand);
	font-weight: 700;
}


/* Images / alignments */

.crt-single-car-rental-page .crt-sh-main-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.crt-single-car-rental-page .crt-sh-main-content .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.crt-single-car-rental-page .crt-sh-main-content .alignwide,
.crt-single-car-rental-page .crt-sh-main-content .alignfull {
	max-width: 100%;
}


/* Highlight / FAQ boxes */

.crt-single-car-rental-page .crt-sh-main-content p.has-background {
	margin: 25px 0 30px !important;
	padding: 15px 18px !important;
	background-color: #aed6c3 !important;
	color: #263f35;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.65;
	box-shadow: 0 5px 18px rgba(60, 102, 83, 0.08);
}

.crt-single-car-rental-page .crt-sh-main-content p.has-background strong {
	color: #263f35;
}

.crt-single-car-rental-page .crt-sh-main-content h4.has-text-align-center.has-background {
	text-align: center;
	padding: 14px 16px !important;
}

.crt-single-car-rental-page .crt-sh-main-content .schema-faq {
	margin: 25px 0;
}

.crt-single-car-rental-page .crt-sh-main-content .schema-faq-section {
	display: block;
	margin-bottom: 10px;
	padding: 16px 18px;
	border: 1px solid #e4ebe7;
	border-radius: 8px;
	background: #f8faf9;
}

.crt-single-car-rental-page .crt-sh-main-content .schema-faq-section strong.schema-faq-question {
	display: block;
	margin-bottom: 6px;
	color: #263f35;
	font-size: 15px;
}

.crt-single-car-rental-page .crt-sh-main-content .schema-faq-section p.schema-faq-answer {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
	color: #4b5752;
}


/* Mobile content */

@media (max-width: 767.98px) {

	.crt-single-car-rental-page > .crt-breadcrumb-wrap {
		padding: 10px 0 8px;
	}

	.crt-single-car-rental-page .crt-sh-title {
		font-size: 30px;
	}

	.crt-single-car-rental-page .crt-sh-hero {
		padding-bottom: 70px;
	}

	.crt-single-car-rental-page .crt-sh-hero-banner,
	.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
		min-height: 220px;
	}

	.crt-single-car-rental-page .crt-sh-search-wrap {
		margin-top: -45px;
	}

	.crt-single-car-rental-page .crt-sh-details {
		padding: 55px 0;
	}

	.crt-single-car-rental-page .crt-sh-info-card {
		position: static;
		top: auto;
		padding: 22px;
		border-radius: 10px;
	}

	.crt-single-car-rental-page .crt-sh-main-content p {
		font-size: 15px;
		line-height: 1.75;
	}

	.crt-single-car-rental-page .crt-sh-main-content h2 {
		font-size: 23px;
		margin: 32px 0 14px;
	}

	.crt-single-car-rental-page .crt-sh-main-content h3 {
		font-size: 19px;
		margin: 28px 0 12px;
	}

	.crt-single-car-rental-page .crt-sh-main-content h4 {
		font-size: 18px;
	}

	.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table {
		margin: 20px 0 26px;
		border-radius: 8px;
	}

	.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table table {
		min-width: 600px;
		font-size: 13px;
	}

	.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table td,
	.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table th {
		padding: 10px 12px;
	}

	.crt-single-car-rental-page .crt-sh-main-content figure.wp-block-table thead th {
		font-size: 13px;
		padding: 11px 12px;
	}

	.crt-single-car-rental-page .crt-sh-main-content ul,
	.crt-single-car-rental-page .crt-sh-main-content ol {
		padding-left: 22px;
	}

	.crt-single-car-rental-page .crt-sh-main-content ul li,
	.crt-single-car-rental-page .crt-sh-main-content ol li {
		font-size: 14.5px;
		line-height: 1.65;
		margin-bottom: 8px;
	}

	.crt-single-car-rental-page .crt-sh-main-content p.has-background {
		padding: 13px 15px !important;
		font-size: 13.5px;
	}
}

/* ========================================================================
   Migrated template styles: author.php
   ======================================================================== */
    /* =========================================
   AUTHOR PAGE
========================================= */

.crt-author-page {
	padding: 50px 0 90px;
	background: var(--crt-surface-soft);
}

.crt-author-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 55px;
	align-items: start;
}


/* =========================================
   AUTHOR PROFILE
========================================= */

.crt-author-profile {
	background: var(--crt-white)fff;
	padding: 40px;
	border-radius: 14px;
	box-shadow: 0 3px 12px rgba(15, 23, 42, 0.07);
}

.crt-author-profile-image {
	margin-bottom: 25px;
}

.crt-author-profile-image img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.crt-author-label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--crt-brand);
}

.crt-author-title {
	margin: 0 0 10px;
	font-size: 38px;
	line-height: 1.15;
	font-weight: 800;
	color: #17201b;
}

.crt-author-role {
	margin: 0 0 25px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	color: var(--crt-brand);
}

 

.crt-author-description p {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.8;
	color: #59615c;
}

.crt-author-description a {
	color: var(--crt-primary-hover);
	font-weight: 700;
}

.crt-author-info-section {
	margin-top: 32px;
}

.crt-author-info-section h3 {
	margin: 0 0 15px;
	font-size: 21px;
	font-weight: 800;
	color: #17201b;
}

.crt-author-info-section p,
.crt-author-info-section li {
	font-size: 15px;
	line-height: 1.75;
	color: #59615c;
}

.crt-author-info-section ul {
	margin: 0;
	padding-left: 20px;
}

.crt-author-info-section li {
	margin-bottom: 8px;
}


/* =========================================
   EXPERTISE
========================================= */

.crt-author-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.crt-author-expertise span {
	padding: 8px 13px;
	border-radius: 16px;
	background: #eef4f0;
	color: var(--crt-brand);
	font-size: 13px;
	font-weight: 700;
}


/* =========================================
   POSTS SECTION
========================================= */




.crt-author-post-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}


/* =========================================
   POST CARD
========================================= */

.crt-author-post-card {
	background: var(--crt-white)fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crt-author-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.crt-author-post-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 8;
}

.crt-author-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.crt-author-post-card:hover .crt-author-post-image img {
	transform: scale(1.04);
}

.crt-author-post-content {
	padding: 22px 24px 25px;
}

.crt-author-post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	color: #7a827d;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


.crt-author-post-content h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
}

.crt-author-post-content h3 a {
	color: #17201b;
	text-decoration: none;
}

.crt-author-post-content h3 a:hover {
	color: var(--crt-brand);
}

.crt-author-post-content p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #69716c;
}

.crt-author-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: var(--crt-brand);
	text-decoration: none;
}

.crt-author-read-more span {
	transition: transform 0.2s ease;
}

.crt-author-read-more:hover span {
	transform: translateX(4px);
}


/* =========================================
   PAGINATION
========================================= */




.crt-author-pagination .page-numbers.current,


/* =========================================
   NO POSTS
========================================= */

.crt-author-no-posts {
	padding: 40px;
	background: var(--crt-white)fff;
	border-radius: 12px;
	text-align: center;
}

.crt-author-no-posts h3 {
	margin: 0 0 8px;
	color: #17201b;
}

.crt-author-no-posts p {
	margin: 0;
	color: #69716c;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

	.crt-author-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.crt-author-profile {
		padding: 32px;
	}

	.crt-author-title {
		font-size: 34px;
	}

}


@media (max-width: 575px) {

	.crt-author-page {
		padding: 30px 0 60px;
	}

	.crt-author-profile {
		padding: 25px 20px;
		border-radius: 10px;
	}

	.crt-author-profile-image img {
		width: 110px;
		height: 110px;
	}

	.crt-author-title {
		font-size: 30px;
	}

	.crt-author-role {
		font-size: 18px;
	}

	.crt-author-description p {
		font-size: 15px;
	}


	.crt-author-post-content {
		padding: 18px;
	}

	.crt-author-post-content h3 {
		font-size: 20px;
	}

}

/* =========================================
   AUTHOR - VIEW ALL ARTICLES BUTTON
========================================= */

.crt-author-view-all {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 30px;
}

.crt-author-view-all-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	padding: 14px 24px;

	border-radius: 8px;
	background: var(--crt-brand);
	color: var(--crt-white)fff !important;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.2px;

	text-decoration: none !important;

	box-shadow: 0 4px 12px rgba(60, 102, 83, 0.18);

	transition:
		background-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.crt-author-view-all-btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;
	line-height: 1;

	transition: transform 0.25s ease;
}

.crt-author-view-all-btn:hover {
	background: #2f5141;
	color: var(--crt-white)fff !important;

	transform: translateY(-2px);

	box-shadow: 0 3px 10px rgba(60, 102, 83, 0.25);
}

.crt-author-view-all-btn:hover span {
	transform: translateX(5px);
}

.crt-author-view-all-btn:focus-visible {
	outline: 3px solid rgba(60, 102, 83, 0.25);
	outline-offset: 3px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

	.crt-author-view-all {
		margin-top: 24px;
	}

	.crt-author-view-all-btn {
		width: 100%;
		padding: 14px 20px;
		font-size: 14px;
	}

}

/* ========================================================================
   Migrated template styles: single-car_rental-crt-airport.php
   ======================================================================== */
    /* =========================================================
   BCR PAGE CONTENT
   Premium / Clean Content Styling
   ========================================================= */

.crt-page-content {
	width: 100%;
	padding: 70px 20px 80px;
	background: var(--crt-white)fff;
}

.crt-page-content-inner {
	max-width: 1050px;
	margin: 0 auto;
	color: #26332e;
	font-family: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.crt-page-content-inner p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5752;
}

.crt-page-content-inner h2,
.crt-page-content-inner h3,
.crt-page-content-inner h4 {
	color: #263f35;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.crt-page-content-inner h2 {
	font-size: 28px;
	margin: 42px 0 18px;
}

.crt-page-content-inner h3 {
	font-size: 22px;
	margin: 38px 0 16px;
}

.crt-page-content-inner h4 {
	font-size: 19px;
	margin: 35px 0 18px;
}


/* =========================================================
   FIRST PARAGRAPH
   ========================================================= */

.crt-page-content-inner > p:first-child {
	font-size: 17px;
	line-height: 1.85;
	color: #35453e;
	margin-bottom: 30px;
}


/* =========================================================
   LINKS
   ========================================================= */

.crt-page-content-inner a {
	color: var(--crt-primary-hover) !important;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.crt-page-content-inner a:hover {
	color: #263f35;
	text-decoration: underline;
}


/* =========================================================
   TABLES
   ========================================================= */

.crt-page-content-inner figure.wp-block-table {
	width: 100%;
	margin: 25px 0 32px;
	overflow-x: auto;
	border-radius: 8px;
	background: var(--crt-white)fff;
	box-shadow: 0 2px 10px rgba(38, 63, 53, 0.08);
	-webkit-overflow-scrolling: touch;
}

.crt-page-content-inner figure.wp-block-table table {
	width: 100%;
	min-width: 620px;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	font-size: 14px;
	background: var(--crt-white)fff;
	border: 1px solid #e4ebe7;
	/*border-radius: 8px;*/
	overflow: hidden;
	border: 1px solid black;
}

/* Table Header */

.crt-page-content-inner figure.wp-block-table thead th {
	background: var(--crt-brand);
	color: var(--crt-white)fff;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 15px;
	text-align: left;
	vertical-align: middle;
	border: 0;
}

/* First row when there is no thead */

.crt-page-content-inner figure.wp-block-table tbody tr:first-child td {
	border-top: 0;
}

/* Table cells */

.crt-page-content-inner figure.wp-block-table td,
.crt-page-content-inner figure.wp-block-table th {
	padding: 12px 15px;
	text-align: left;
	vertical-align: top;
	border-right: 1px solid #e8eeeb;
	border-bottom: 1px solid #e8eeeb;
	line-height: 1.55;
}

/* Remove right border */

.crt-page-content-inner figure.wp-block-table td:last-child,
.crt-page-content-inner figure.wp-block-table th:last-child {
	border-right: 0;
}

/* Remove bottom border */

.crt-page-content-inner figure.wp-block-table tbody tr:last-child td {
	border-bottom: 0;
}

/* Alternate rows */

.crt-page-content-inner figure.wp-block-table tbody tr:nth-child(even) {
	background: #f7faf8;
}

/* Hover */

.crt-page-content-inner figure.wp-block-table tbody tr {
	transition: background 0.2s ease;
}

.crt-page-content-inner figure.wp-block-table tbody tr:hover {
	background: #edf5f0;
}

/* Strong text inside tables */

.crt-page-content-inner figure.wp-block-table td strong {
	color: #263f35;
	font-weight: 700;
}


/* =========================================================
   NOTE / HIGHLIGHT BOX
   Existing Gutenberg background color
   ========================================================= */

.crt-page-content-inner p.has-background {
	margin: 25px 0 30px !important;
	padding: 15px 18px !important;
	background-color: #aed6c3 !important;
	color: #263f35;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.65;
	box-shadow: 0 5px 18px rgba(60, 102, 83, 0.08);
}

.crt-page-content-inner p.has-background strong {
	color: #263f35;
}


/* =========================================================
   LISTS
   ========================================================= */

.crt-page-content-inner ul,
.crt-page-content-inner ol {
	margin: 15px 0 28px;
	padding-left: 24px;
	color: #4b5752;
}

.crt-page-content-inner ul li,
.crt-page-content-inner ol li {
	margin-bottom: 10px;
	padding-left: 5px;
	font-size: 15.5px;
	line-height: 1.7;
}

.crt-page-content-inner ul li::marker {
	color: var(--crt-brand);
}

.crt-page-content-inner ol li::marker {
	color: var(--crt-brand);
	font-weight: 700;
}

 

/* =========================================================
   IMAGES
   ========================================================= */

.crt-page-content-inner img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}


/* =========================================================
   WORDPRESS ALIGNMENTS
   ========================================================= */

.crt-page-content-inner .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.crt-page-content-inner .alignwide {
	max-width: 100%;
}

.crt-page-content-inner .alignfull {
	max-width: 100%;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.crt-page-content {
		padding: 45px 15px 55px;
	}

	.crt-page-content-inner p {
		font-size: 15px;
		line-height: 1.75;
	}

	.crt-page-content-inner > p:first-child {
		font-size: 15.5px;
		line-height: 1.75;
	}

	.crt-page-content-inner h2 {
		font-size: 23px;
		margin: 32px 0 15px;
	}

	.crt-page-content-inner h3 {
		font-size: 19px;
		margin: 30px 0 14px;
	}

	.crt-page-content-inner h4 {
		font-size: 18px;
	}

	.crt-page-content-inner figure.wp-block-table {
		margin: 20px 0 28px;
		border-radius: 8px;
	}

	.crt-page-content-inner figure.wp-block-table table {
		min-width: 600px;
		font-size: 13px;
	}

	.crt-page-content-inner figure.wp-block-table td,
	.crt-page-content-inner figure.wp-block-table th {
		padding: 10px 12px;
	}

	.crt-page-content-inner figure.wp-block-table thead th {
		font-size: 13px;
		padding: 11px 12px;
	}

	.crt-page-content-inner ul,
	.crt-page-content-inner ol {
		padding-left: 22px;
	}

	.crt-page-content-inner ul li,
	.crt-page-content-inner ol li {
		font-size: 14.5px;
		line-height: 1.65;
		margin-bottom: 8px;
	}

	.crt-page-content-inner p.has-background {
		padding: 13px 15px !important;
		font-size: 13.5px;
	}

	.crt-page-content-inner h4.has-text-align-center {
		margin-top: 42px !important;
		padding: 14px 15px !important;
		font-size: 18px;
	}

	.crt-page-content-inner   {
		padding: 16px 48px 16px 16px;
		font-size: 14px;
	}

	.crt-page-content-inner:after {
		right: 15px;
		width: 24px;
		height: 24px;
	}

	.crt-page-content-inner   {
		padding: 0 16px 17px !important;
		font-size: 13.5px !important;
	}

}

/* ========================================================================
   Migrated template styles: template-parts/airport/app-promo.php
   ======================================================================== */

/* =========================================================
   your city Airport Location Guide
========================================================= */

.crt-airport-guide-section {
	padding: 20px 0 70px;
	background: var(--crt-white);
}

.crt-airport-guide-heading {
	margin-bottom: 12px;
}

.crt-airport-guide-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--crt-ink);
}


/* =========================================================
   Main Card
========================================================= */

.crt-airport-guide-card {
	background: var(--crt-white);
	border: 1px solid #cfd2d6;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}


/* =========================================================
   Panels
========================================================= */

.crt-airport-location-panel,
.crt-airport-hours-panel {
	padding: 25px 22px;
	height: 100%;
}

.crt-airport-panel-title {
	margin: 0 0 17px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--crt-ink);
}


/* =========================================================
   Map
========================================================= */

.crt-airport-map-box {
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #f1f3f5;
	margin-bottom: 14px;
}

.crt-airport-map-box iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}


/* =========================================================
   Contact Details
========================================================= */

.crt-airport-contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.crt-airport-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--crt-ink);
	font-size: 12px;
	line-height: 1.45;
}

.crt-airport-contact-icon {
	width: 16px;
	min-width: 16px;
	padding-top: 1px;
	color: var(--crt-ink);
	font-size: 13px;
	text-align: center;
}

.crt-airport-contact-content {
	flex: 1;
}

.crt-airport-address {
	color: var(--crt-ink);
}

.crt-airport-directions-link,
.crt-airport-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
	color: #087f3e;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.crt-airport-directions-link:hover,
.crt-airport-phone-link:hover {
	color: #056b34;
}

.crt-airport-directions-link i {
	font-size: 10px;
}


/* =========================================================
   Hours
========================================================= */

.crt-airport-date-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
	margin-bottom: 0;
	border-bottom: 1px solid #dfe2e5;
}

.crt-airport-date-arrow {
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #687078;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 15px;
}

.crt-airport-date-arrow:last-child {
	color: #008844;
}

.crt-airport-current-date {
	font-size: 12px;
	font-weight: 700;
	color: var(--crt-ink);
}

.crt-airport-hours-list {
	width: 100%;
}

.crt-airport-hours-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 41px;
	padding: 6px 12px;
	font-size: 11px;
	color: var(--crt-ink);
}

.crt-airport-hours-row:nth-child(odd) {
	background: #f1f1f1;
}

.crt-airport-hours-active {
	background: #ededed;
}

.crt-airport-day {
	font-weight: 500;
}

.crt-airport-time {
	text-align: right;
	font-weight: 600;
	line-height: 1.35;
}


/* =========================================================
   Service Status
========================================================= */

.crt-airport-service-status {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 15px;
}

.crt-airport-service-item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #59616a;
	font-size: 11px;
	line-height: 1.4;
}

.crt-airport-service-item > i:first-child {
	font-size: 12px;
}

.crt-airport-service-item > i:last-child {
	color: #008844;
	font-size: 11px;
}

.crt-airport-service-available {
	color: var(--crt-ink);
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

	.crt-airport-location-panel {
		border-bottom: 1px solid #cfd2d6;
	}

	.crt-airport-hours-panel {
		padding-top: 22px;
	}

}


@media (max-width: 575.98px) {

	.crt-airport-guide-section {
		padding: 15px 0 50px;
	}

	.crt-airport-guide-title {
		font-size: 20px;
	}

	.crt-airport-location-panel,
	.crt-airport-hours-panel {
		padding: 20px 16px;
	}

	.crt-airport-map-box {
		height: 220px;
	}

	.crt-airport-hours-row {
		padding-left: 9px;
		padding-right: 9px;
		font-size: 10px;
	}

}


/* ========================================================================
   Migrated template styles: template-parts/airport/car-option.php
   ======================================================================== */
    /* =========================================================
   your cityAirport Rental Company Comparison
   Horizontal Supplier Table
   Accent: #325746
========================================================= */

.crt-airport-rental-list-section {
	padding: 60px 0;
	background: white;
}

.crt-airport-rental-list-header {
	max-width: 820px;
	margin: 0 auto 40px;
	text-align: center;
}

.crt-airport-rental-list-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	color: #325746;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-transform: uppercase;
}

.crt-airport-rental-list-eyebrow i {
	font-size: 14px;
}

.crt-airport-rental-list-title {
	margin: 0 0 14px;
	color: var(--crt-ink);
	font-size: clamp(20px, 3vw, 30px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.crt-airport-rental-list-description {
	max-width: 760px;
	margin: 0 auto;
	color: var(--crt-muted);
	font-size: 15px;
	line-height: 1.75;
}


/* =========================================================
   Table Wrapper
========================================================= */

.crt-airport-rental-table {
	overflow: hidden;
	background: var(--crt-white);
	border: 1px solid #e2e5e9;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(16, 24, 40, 0.04);
}


/* =========================================================
   Table Header
========================================================= */

.crt-airport-rental-table-head {
	display: grid;
	grid-template-columns: 55px minmax(260px, 2fr) 1.2fr 1.25fr minmax(250px, 1.6fr);
	align-items: center;
	min-height: 48px;
	padding: 0 22px;
	background: #f7f8fa;
	border-bottom: 1px solid var(--crt-border-soft);
	color: var(--crt-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}


/* =========================================================
   Table Row
========================================================= */

.crt-airport-rental-table-row {
	position: relative;
	display: grid;
	grid-template-columns: 55px minmax(260px, 2fr) 1.2fr 1.25fr minmax(250px, 1.6fr);
	align-items: center;
	min-height: 50px;
	padding: 8px 10px;
	border-bottom: 1px solid #edf0f2;
	background: var(--crt-white);
	transition:
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.crt-airport-rental-table-row:last-child {
	border-bottom: 0;
}

.crt-airport-rental-table-row:hover {
	background: var(--crt-white)df8;
	box-shadow: inset 3px 0 0 #325746;
}


/* =========================================================
   Serial Number
========================================================= */

.crt-airport-rental-number {
	color: #98a2b3;
	font-size: 13px;
	font-weight: 700;
}


/* =========================================================
   Company
========================================================= */

.crt-airport-rental-company {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.crt-airport-rental-company-logo {
	width: 112px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 8px 12px;
	background: var(--crt-white);
	border: 1px solid #edf0f2;
	border-radius: 6px;
}

.crt-airport-rental-company-logo img {
	display: block;
	max-width: 88px;
	max-height: 40px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.crt-airport-rental-company-fallback {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	color: var(--crt-ink);
	font-size: 11px;
	font-weight: 700;
}

.crt-airport-rental-company-name {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.crt-airport-rental-company-name strong {
	display: block;
	color: var(--crt-ink);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
}

.crt-airport-rental-company-name span {
	display: block;
	color: #8a93a0;
	font-size: 11px;
	line-height: 1.3;
}


/* =========================================================
   Rating
========================================================= */

.crt-airport-rental-rating {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.crt-airport-rental-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	color: #325746;
	font-size: 11px;
	line-height: 1;
}

.crt-airport-rental-stars i {
	display: block;
}

.crt-airport-rental-rating-score {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.crt-airport-rental-rating-score strong {
	color: var(--crt-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.crt-airport-rental-rating-score span {
	color: #7c8591;
	font-size: 11px;
}


/* =========================================================
   Price
========================================================= */

.crt-airport-rental-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.crt-airport-rental-price-label {
	color: #8a93a0;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
}

.crt-airport-rental-price-value {
	display: flex;
	align-items: baseline;
	gap: 3px;
	line-height: 1;
}

.crt-airport-rental-currency {
	color: var(--crt-ink);
	font-size: 16px;
	font-weight: 700;
}

.crt-airport-rental-price-value strong {
	color: var(--crt-ink);
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.crt-airport-rental-price-unit {
	color: #7c8591;
	font-size: 10px;
	font-weight: 500;
}


/* =========================================================
   Actions
========================================================= */

.crt-airport-rental-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.crt-airport-rental-info-btn,
.crt-airport-rental-book-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 38px;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}


/* More Information */

.crt-airport-rental-info-btn {
	background: var(--crt-white);
	border: 1px solid #d9dde3;
	color: #475467;
}

.crt-airport-rental-info-btn:hover {
	background: #f7f8fa;
	border-color: #c9ced6;
	color: var(--crt-ink);
}


/* Search & Book */

.crt-airport-rental-book-btn {
	background: var(--crt-header-background);
	border: 1px solid #325746;
	color: white;
}

.crt-airport-rental-book-btn:hover {
	background: #325746d1;
	border-color: #325746d1;
	color: white;
	transform: translateY(-1px);
}

.crt-airport-rental-book-btn i {
	font-size: 11px;
}


/* =========================================================
   Note
========================================================= */

.crt-airport-rental-list-note {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	max-width: 850px;
	margin: 22px auto 0;
}

.crt-airport-rental-list-note > i {
	flex-shrink: 0;
	margin-top: 2px;
	color: #325746;
	font-size: 14px;
}

.crt-airport-rental-list-note p {
	margin: 0;
	color: #737d89;
	font-size: 12px;
	line-height: 1.65;
}


/* =========================================================
   Large Tablet
========================================================= */

@media (max-width: 1199.98px) {

	.crt-airport-rental-table-head,
	.crt-airport-rental-table-row {
		grid-template-columns:
			45px
			minmax(220px, 2fr)
			1fr
			1fr
			minmax(210px, 1.5fr);
	}

	.crt-airport-rental-company-logo {
		width: 95px;
	}

	.crt-airport-rental-actions {
		gap: 7px;
	}

	.crt-airport-rental-info-btn,
	.crt-airport-rental-book-btn {
		padding-left: 10px;
		padding-right: 10px;
	}

}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991.98px) {

	.crt-airport-rental-list-section {
		padding: 70px 0;
	}

	.crt-airport-rental-table {
		overflow-x: auto;
	}

	.crt-airport-rental-table-head,
	.crt-airport-rental-table-row {
		min-width: 850px;
	}

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {

	.crt-airport-rental-list-section {
		padding: 60px 0;
	}

	.crt-airport-rental-list-header {
		margin-bottom: 30px;
	}

	.crt-airport-rental-list-title {
		font-size: 28px;
	}

	.crt-airport-rental-list-description {
		font-size: 14px;
	}

	.crt-airport-rental-table {
		border-radius: 8px;
	}

	.crt-airport-rental-table-head,
	.crt-airport-rental-table-row {
		min-width: 780px;
	}

}


/* =========================================================
   Accessibility
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.crt-airport-rental-table-row,
	.crt-airport-rental-info-btn,
	.crt-airport-rental-book-btn {
		transition: none;
	}

}
 

/* ========================================================================
   Migrated template styles: template-parts/homepage/content-section.php
   ======================================================================== */
/* =========================================================
   REUSABLE CAR RENTAL THEME CAR RENTALS
   PREMIUM SOFT GREEN CONTENT DESIGN
   NO PURE WHITE / NO DARK BLACK
   ========================================================= */

.tcr-home-content-card {
    --green: var(--crt-green);
    --green-2: #527C69;
    --green-3: #6F9583;

    --text: #4B6258;
    --text-soft: #71837A;

    --bg: #F4F7F4;
    --surface: #F9FBF9;
    --surface-2: #EEF4F0;

    --border: #DCE7E0;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(32px, 4vw, 52px);

    box-sizing: border-box;

    color: var(--text);

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(60, 102, 83, 0.04),
            transparent 32%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(111, 149, 131, 0.03),
            transparent 30%
        ),
        #FBFDFB;

    border: 1px solid #E8EFEA;
    border-radius: 14px;

    box-shadow:
        0 6px 16px rgba(60, 102, 83, 0.04),
        0 2px 8px rgba(60, 102, 83, 0.02);
}


/* =========================================================
   CONTENT
   ========================================================= */

.tcr-home-content-body {
    width: 100%;

    color: var(--text);

    font-size: 15px;
    line-height: 1.75;
}

.tcr-home-content-body p {
    margin: 0 0 18px;
    color: var(--text-soft);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.tcr-home-content-heading-wrap {
    display: none;
}

.tcr-home-content-heading-wrap::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--border),
            transparent
        );
}

.tcr-home-content-heading {
    margin: 0;

    color: var(--crt-ink);

    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.01em;
}

.tcr-home-content-heading-line {
    display: none;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.tcr-home-content-body h2,
.tcr-home-content-body h3,
.tcr-home-content-body h4 {
    color: var(--crt-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
}


/* H2 */

.tcr-home-content-body h2 {
    margin: 30px 0 14px;

    font-size: 22px;
    line-height: 1.3;
}


/* H3 */

.tcr-home-content-body h3 {
    margin: 24px 0 12px;

    font-size: 18px;
    line-height: 1.35;
}


/* H4 */

.tcr-home-content-body h4 {
    margin: 20px 0 10px;

    font-size: 16px;
    line-height: 1.4;
}


/* Remove decorative heading accent */

.tcr-home-content-body h2::before,
.tcr-home-content-body h3::before {
    display: none;
}


/* =========================================================
   LISTS
   ========================================================= */

.tcr-home-content-body ul,
.tcr-home-content-body ol {
    margin: 18px 0 26px;
    padding-left: 24px;

    list-style: disc;
}

.tcr-home-content-body ul li,
.tcr-home-content-body ol li {
    margin-bottom: 8px;

    color: var(--text);
}


/* =========================================================
   PREMIUM TABLE WRAPPER
   ========================================================= */

.tcr-home-content-body figure.wp-block-table {
    width: 100%;

    margin: 26px 0 40px;

    overflow-x: auto;

    border: 1px solid #E4EAE6;
    border-radius: 10px;

    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.05);
}


/* =========================================================
   TABLE
   ========================================================= */

.tcr-home-content-body figure.wp-block-table table {
    width: 100%;

    margin: 0;

    border-collapse: collapse;

    background: var(--crt-white);

    font-size: 14px;
}


/* =========================================================
   TABLE HEADER
   ========================================================= */

.tcr-home-content-body
figure.wp-block-table
thead th {
    padding: 12px 16px;

    background: #F4F7F5;

    color: var(--crt-green);

    border-bottom: 2px solid #DCE5DF;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    text-align: left;
}


/* =========================================================
   TABLE BODY
   ========================================================= */

.tcr-home-content-body
figure.wp-block-table
td {
    padding: 11px 16px;

    color: var(--crt-content-text);

    border-bottom: 1px solid #EDF1EE;

    font-size: 14px;

    line-height: 1.5;

    vertical-align: middle;
}


/* Vehicle */

.tcr-home-content-body
figure.wp-block-table
td:first-child {
    width: 65%;

    color: var(--crt-green);

    font-weight: 600;
}


/* Price */

.tcr-home-content-body
figure.wp-block-table
td:last-child {
    width: 35%;

    color: var(--crt-green);

    font-weight: 700;

    text-align: right;
    white-space: nowrap;
}


/* Alternating rows */

.tcr-home-content-body
figure.wp-block-table
tbody tr:nth-child(even) td {
    background: #FAFCFB;
}


/* Hover */

.tcr-home-content-body
figure.wp-block-table
tbody tr {
    transition: background .2s ease;
}

.tcr-home-content-body
figure.wp-block-table
tbody tr:hover td {
    background: #F2F7F4;
}


/* Last row */

.tcr-home-content-body
figure.wp-block-table
tr:last-child td {
    border-bottom: 0;
}


/* =========================================================
   FAQ HEADER
   ========================================================= */

.tcr-home-content-body
h4.has-text-align-center.has-background {
    margin: 48px 0 20px !important;

    padding: 16px 22px !important;

    background:
        linear-gradient(
            135deg,
            #E6EFE9,
            #DCEBE2
        ) !important;

    color: var(--green) !important;

    border: 1px solid var(--border);

    border-radius: 13px;

    font-size: 19px;

    font-weight: 750;

    box-shadow:
        0 6px 18px rgba(60, 102, 83, 0.045);
}

 

 
 
 

/* =========================================================
   STRONG
   ========================================================= */

.tcr-home-content-body strong {
    color: var(--green);

    font-weight: 700;
}


/* =========================================================
   LINKS
   ========================================================= */

.tcr-home-content-body a {
    color: var(--green);

    font-weight: 650;

    text-decoration: none;

    transition: color .2s ease;
}

.tcr-home-content-body a:hover {
    color: var(--green-2);
}


/* =========================================================
   BLOCKQUOTE
   ========================================================= */

.tcr-home-content-body blockquote {
    margin: 28px 0;

    padding: 18px 22px;

    background:
        linear-gradient(
            135deg,
            #EDF4F0,
            #F7FAF8
        );

    border: 1px solid var(--border);
    border-left: 2px solid var(--green);

    border-radius: 0 12px 12px 0;

    color: var(--text);
}


/* =========================================================
   DIVIDERS
   ========================================================= */

.tcr-home-content-body hr {
    margin: 34px 0;

    border: 0;

    border-top: 1px solid var(--border);
}

/* =========================================================
   HOME CONTENT - ALL WP CONTENT ELEMENTS
   ========================================================= */

/* Blockquote */
.tcr-home-content-body blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: #F4F7F5;
    border-left: 3px solid var(--crt-green);
    border-radius: 0 8px 8px 0;
    color: var(--crt-content-text);
    font-size: 15px;
    line-height: 1.7;
}

.tcr-home-content-body blockquote p {
    margin-bottom: 0;
}

/* Images */
.tcr-home-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.tcr-home-content-body .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.tcr-home-content-body .alignleft {
    float: left;
    margin-right: 20px;
}

.tcr-home-content-body .alignright {
    float: right;
    margin-left: 20px;
}

/* Links */
.tcr-home-content-body a {
    color: var(--crt-green);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.tcr-home-content-body a:hover {
    color: var(--crt-green-dark);
    text-decoration: underline;
}

/* Strong / Bold */
.tcr-home-content-body strong,
.tcr-home-content-body b {
    color: var(--crt-green);
    font-weight: 700;
}

/* Code */
.tcr-home-content-body code {
    padding: 2px 6px;
    background: #F4F7F5;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--crt-green-dark);
}

.tcr-home-content-body pre {
    margin: 20px 0;
    padding: 16px;
    background: #F4F7F5;
    border: 1px solid #E4EAE6;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

/* Buttons */
.tcr-home-content-body .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--crt-green);
    color: var(--crt-white) !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.tcr-home-content-body .wp-block-button__link:hover {
    background: var(--crt-green-dark);
    transform: translateY(-1px);
}

/* Columns */
.tcr-home-content-body .wp-block-columns {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.tcr-home-content-body .wp-block-column {
    flex: 1;
    min-width: 0;
}

/* Highlight / Background paragraphs */
.tcr-home-content-body p.has-background {
    margin: 20px 0;
    padding: 14px 18px;
    background-color: #F4F7F5 !important;
    border-radius: 8px;
}

/* Separator */
.tcr-home-content-body .wp-block-separator {
    margin: 30px auto;
    border: 0;
    border-top: 2px solid #E4EAE6;
    width: 100px;
}

/* Embed / Video */
.tcr-home-content-body .wp-block-embed,
.tcr-home-content-body .wp-block-video {
    margin: 24px 0;
}

.tcr-home-content-body iframe,
.tcr-home-content-body video {
    max-width: 100%;
    border-radius: 8px;
}

/* Gallery */
.tcr-home-content-body .wp-block-gallery {
    margin: 24px 0;
}

.tcr-home-content-body .wp-block-gallery img {
    border-radius: 8px;
}

/* File */
.tcr-home-content-body .wp-block-file {
    margin: 20px 0;
    padding: 12px 16px;
    background: #F4F7F5;
    border-radius: 8px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tcr-home-content-card {
        padding: 25px 17px;

        border-radius: 17px;
    }

    .tcr-home-content-heading {
        font-size: 27px;
    }

    .tcr-home-content-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .tcr-home-content-body h2 {
        margin-top: 34px;

        font-size: 21px;
    }

    .tcr-home-content-body h3 {
        margin-top: 28px;

        font-size: 18px;
    }

    .tcr-home-content-body h4 {
        font-size: 16px;
    }


    /* Lists */

    .tcr-home-content-body ul li,
    .tcr-home-content-body ol li {
        padding-left: 0;
    }


    /* Table */

    .tcr-home-content-body
    figure.wp-block-table {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        border-radius: 8px;
    }

    .tcr-home-content-body
    figure.wp-block-table table {
        min-width: 470px;

        font-size: 13px;
    }

    .tcr-home-content-body
    figure.wp-block-table
    thead th {
        padding: 10px 13px;

        font-size: 11px;
    }

    .tcr-home-content-body
    figure.wp-block-table
    td {
        padding: 9px 13px;

        font-size: 13px;
    }


    /* FAQ */

    .tcr-home-content-body
    h4.has-text-align-center.has-background {
        margin-top: 36px !important;

        padding: 14px 16px !important;

        font-size: 17px;
    }

    .tcr-home-content-body
    .schema-faq-section {
        padding: 14px 16px;
    }

    .tcr-home-content-body
    .schema-faq-question {
        font-size: 14px;
    }

    .tcr-home-content-body
    .schema-faq-answer {
        font-size: 13px;
    }
}

/* Final shared button pass: keep every site action visually consistent. */
.tcr-home-content-section {
	padding: 2.5rem 1rem 3.5rem;
	background: #f7faf8;
}

/* Keep the pickup location field neutral like the other form controls. */
.crt-search-pickup-field {
	background: var(--crt-input) !important;
}

.tcr-home-content-card {
	width: 100%;
	max-width: 1280px;
	padding: clamp(1.5rem, 3vw, 2.75rem);
	background: #fff;
	border: 1px solid #e5ece7;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(30, 70, 52, .06);
}

.tcr-home-content-body {
	max-width: 980px;
	margin: 0 auto !important;
	font-size: 1rem;
	line-height: 1.7;
}

.tcr-home-content-body h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	color: var(--crt-heading);
}

.tcr-home-content-body h2 {
	margin: 2rem 0 .65rem;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.tcr-home-content-body h3 {
	margin: 1.35rem 0 .45rem;
	font-size: 1.1rem;
}

.tcr-home-content-body p {
	margin: 0 0 .85rem;
}

.tcr-home-content-body ul,
.tcr-home-content-body ol {
	margin: .75rem 0 1.25rem;
}

.tcr-home-content-body figure.wp-block-table {
	margin: 1rem 0 1.5rem;
	border: 1px solid #e5ece7;
	border-radius: 8px;
	box-shadow: none;
}

@media (max-width: 767px) {
	.tcr-home-content-section {
		padding: 1.5rem .75rem 2.5rem;
	}

	.tcr-home-content-card {
		padding: 1.25rem;
		border-radius: 10px;
	}
}

.crt-btn-primary,
.crt-btn-accent,
.crt-load-more-btn,
.crt-author-view-all-btn,
.crt-sh-call-button,
.crt-airport-rental-book-btn {
	min-height: 44px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--crt-accent);
	border-radius: var(--crt-radius-sm);
	background: var(--crt-accent);
	color: var(--crt-white) !important;
	font-family: var(--crt-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
}

.crt-btn-primary:hover,
.crt-btn-primary:focus-visible,
.crt-btn-accent:hover,
.crt-btn-accent:focus-visible,
.crt-load-more-btn:hover,
.crt-load-more-btn:focus-visible,
.crt-author-view-all-btn:hover,
.crt-author-view-all-btn:focus-visible,
.crt-sh-call-button:hover,
.crt-sh-call-button:focus-visible,
.crt-airport-rental-book-btn:hover,
.crt-airport-rental-book-btn:focus-visible {
	border-color: var(--crt-accent-dark);
	background: var(--crt-accent-dark);
	color: var(--crt-white) !important;
}

.crt-btn-outline,
.crt-airport-rental-info-btn {
	min-height: 44px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--crt-accent);
	border-radius: var(--crt-radius-sm);
	background: transparent;
	color: var(--crt-accent) !important;
	font-family: var(--crt-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
}

.crt-btn-outline:hover,
.crt-btn-outline:focus-visible,
.crt-airport-rental-info-btn:hover,
.crt-airport-rental-info-btn:focus-visible {
	border-color: var(--crt-accent);
	background: var(--crt-accent-light);
	color: var(--crt-accent-dark) !important;
}

/* Travel-guide cards use the shared compact corner radius. */
.crt-blog-card,
.crt-blog-card::after {
	border-radius: 8px !important;
}

/* ========================================================================
   Responsive hero system
   Shared by the homepage and airport hero templates.
   ======================================================================== */
.crt-hero {
	margin-top: 0;
	overflow: visible;
}

.crt-hero-banner {
	min-height: clamp(390px, 62vh, 620px);
	display: flex;
	align-items: center;
}

.crt-hero-inner {
	min-height: 0;
	padding-top: clamp(96px, 12vw, 150px);
	padding-bottom: clamp(150px, 16vw, 210px);
}

.crt-hero-content {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.crt-hero-title {
	max-width: 820px;
	margin: 0 auto 1rem;
	font-size: clamp(2rem, 5vw, 3.75rem);
	line-height: 1.1;
	text-wrap: balance;
}

.crt-hero-content > p {
	max-width: 680px;
	margin: 0 auto;
	font-size: clamp(0.95rem, 1.8vw, 1.125rem);
	line-height: 1.6;
}

.crt-search-wrap {
	width: 100%;
	margin-top: clamp(-170px, -14vw, -90px);
	margin-bottom: 16px;
	padding-right: 1.5rem;
	padding-bottom: 2rem;
	padding-left: 1.5rem;
}

.crt-search-form {
	width: 100%;
	padding: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 991.98px) {
	.crt-hero-banner {
		min-height: 460px;
	}

	.crt-hero-inner {
		padding-top: 100px;
		padding-bottom: 170px;
	}

	.crt-search-wrap {
		margin-top: -135px;
	}
}

@media (max-width: 767.98px) {
	.crt-hero-banner {
		min-height: 410px;
	}

	.crt-hero-inner {
		padding-top: 88px;
		padding-bottom: 145px;
	}

	.crt-hero-title {
		font-size: clamp(1.8rem, 8vw, 2.7rem);
	}

	.crt-hero-content > p {
		font-size: 0.95rem;
	}

	.crt-search-wrap {
		margin-top: -105px;
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.crt-search-form {
		padding: 1rem;
	}
}

@media (max-width: 575.98px) {
	.crt-hero-banner {
		min-height: 385px;
	}

	.crt-hero-inner {
		padding-top: 82px;
		padding-bottom: 132px;
	}

	.crt-hero-title {
		font-size: clamp(1.7rem, 8.5vw, 2.25rem);
	}

	.crt-search-wrap {
		margin-top: -92px;
	}

	.crt-search-form .row {
		--bs-gutter-y: 0.75rem;
	}
}

/* Responsive treatment for the other page-specific hero layouts. */
.crt-services-hero,
.crt-reviews-hero {
	padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.crt-services-hero-content,
.crt-reviews-hero-content {
	width: min(100%, 850px);
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
	text-align: center;
}

.crt-services-hero h1,
.crt-reviews-hero h1 {
	font-size: clamp(2rem, 6vw, 3.75rem);
	line-height: 1.1;
	text-wrap: balance;
}

.crt-services-hero p,
.crt-reviews-hero p {
	font-size: clamp(0.95rem, 2vw, 1.125rem);
	line-height: 1.65;
}

.crt-single-vehicle-page .crt-sv-hero {
	padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.crt-single-vehicle-page .crt-sv-image-wrap {
	height: clamp(300px, 45vw, 520px);
}

.crt-single-car-rental-page .crt-sh-hero-banner,
.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
	min-height: clamp(250px, 40vh, 380px);
}

.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.crt-single-car-rental-page .crt-sh-search-wrap {
	margin-top: clamp(-70px, -8vw, -42px);
}

@media (max-width: 991.98px) {
	.crt-single-vehicle-page .crt-sv-content {
		padding-left: 0;
	}
}

@media (max-width: 767.98px) {
	.crt-services-hero,
	.crt-reviews-hero {
		padding: 2.5rem 0 3rem;
	}

	.crt-single-vehicle-page .crt-sv-image-wrap {
		height: min(78vw, 380px);
	}

	.crt-single-car-rental-page .crt-sh-hero-banner,
	.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
		min-height: 245px;
	}

	.crt-single-car-rental-page .crt-sh-title {
		font-size: clamp(1.8rem, 8vw, 2.6rem);
		line-height: 1.15;
	}

	.crt-single-car-rental-page .crt-sh-search-wrap {
		margin-top: -48px;
	}
}

@media (max-width: 575.98px) {
	.crt-services-hero,
	.crt-reviews-hero {
		padding: 2rem 0 2.5rem;
	}

	.crt-services-hero-content,
	.crt-reviews-hero-content {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.crt-single-car-rental-page .crt-sh-hero-banner,
	.crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
		min-height: 225px;
	}
}

/* Overlay the global navbar on pages that begin with a hero. */
body:has(.crt-hero) .crt-header,
body:has(.crt-sh-hero) .crt-header,
body:has(.crt-services-hero) .crt-header,
body:has(.crt-reviews-hero) .crt-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

.crt-header-over-hero {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

body:has(.crt-hero) .crt-navbar,
body:has(.crt-sh-hero) .crt-navbar,
body:has(.crt-services-hero) .crt-navbar,
body:has(.crt-reviews-hero) .crt-navbar {
	background: transparent;
}

.crt-header-over-hero .crt-navbar {
	background: transparent;
}

body:has(.crt-services-hero) .crt-services-hero,
body:has(.crt-reviews-hero) .crt-reviews-hero {
	padding-top: clamp(7rem, 11vw, 9rem);
}

body:has(.crt-sh-hero) .crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
	padding-top: clamp(6rem, 10vw, 8rem);
	padding-bottom: 3rem;
}

@media (max-width: 767.98px) {
	body:has(.crt-services-hero) .crt-services-hero,
	body:has(.crt-reviews-hero) .crt-reviews-hero {
		padding-top: 6.5rem;
	}

	body:has(.crt-sh-hero) .crt-single-car-rental-page .crt-sh-hero-banner .crt-hero-inner {
		padding-top: 5.5rem;
		padding-bottom: 2rem;
	}
}

/* Blog/archive/search listings use the same hero layout as the homepage. */
.crt-blog-listing:has(.crt-blog-archive-hero) {
	padding-top: 0 !important;
}

.crt-blog-archive-hero .crt-hero-banner {
	min-height: clamp(360px, 54vh, 540px);
}

.crt-blog-archive-hero .crt-hero-inner {
	padding-top: clamp(7rem, 12vw, 10rem);
	padding-bottom: clamp(5rem, 10vw, 8rem);
}

.crt-blog-archive-hero .crt-hero-title,
.crt-blog-archive-hero .crt-hero-content > p {
	color: var(--crt-white) !important;
}

.crt-blog-archive-hero + .container {
	padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.crt-blog-archive-hero + .container .crt-pagination {
	position: relative;
	clear: both;
	margin-top: 3rem !important;
	padding-bottom: 1rem;
}

/* Inner pages use the same full-width hero treatment as the blog page. */
main:has(.crt-inner-page-hero) {
	padding-top: 0 !important;
}

.crt-inner-page-hero .crt-hero-banner {
	min-height: clamp(360px, 54vh, 540px);
}

.crt-inner-page-hero .crt-hero-inner {
	padding-top: clamp(7rem, 12vw, 10rem);
	padding-bottom: clamp(5rem, 10vw, 8rem);
}

.crt-inner-page-hero .crt-hero-title,
.crt-inner-page-hero .crt-hero-content > p {
	color: var(--crt-white) !important;
}

.crt-inner-page-hero + .crt-breadcrumb-wrap,
.crt-inner-page-hero + .container {
	padding-top: .65rem;
	padding-bottom: .35rem;
}

/* Keep the first content section close to the compact hero. */
.crt-car-rental-page .crt-car-rental-section,
.crt-vehicle-types-page .crt-vt-section {
	padding-top: 2.75rem;
}

/* Compact, styled hero treatment for the main and legal pages. */
.crt-blog-archive-hero .crt-hero-banner,
.crt-inner-page-hero .crt-hero-banner {
	min-height: clamp(250px, 32vh, 360px);
	box-shadow: 0 14px 35px rgba(15, 23, 42, .16);
	overflow: hidden;
}

/* Keep transparent hero headers completely clean—no bottom separator line. */
body:has(.crt-hero) .crt-header,
.crt-header-over-hero {
	border-bottom: 0 !important;
}

.crt-blog-archive-hero .crt-hero-inner,
.crt-inner-page-hero .crt-hero-inner {
	padding-top: clamp(5rem, 8vw, 7rem);
	padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.crt-blog-archive-hero .crt-hero-content,
.crt-inner-page-hero .crt-hero-content {
	position: relative;
	z-index: 1;
}

/* Float the search card over the lower edge of the banner image. */
.crt-hero > .crt-search-wrap {
	margin-top: -170px !important;
}

@media (max-width: 767.98px) {
	.crt-hero > .crt-search-wrap {
		margin-top: -220px !important;
	}
}

@media (max-width: 575.98px) {
	.crt-hero > .crt-search-wrap {
		margin-top: -250px !important;
	}
}

/* ========================================================================
   WordPress editor content
   One shared style for content entered through WP Admin/Gutenberg.
   The scope prevents these rules from changing navigation, cards or forms.
   ======================================================================== */
.crt-wp-content {
	color: var(--crt-ink) !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
	word-break: normal;
}

.crt-wp-content > :first-child {
	margin-top: 0 !important;
}

.crt-wp-content p {
	margin: 0 0 1rem !important;
	color: var(--crt-ink) !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
}

.crt-wp-content h1,
.crt-wp-content h2,
.crt-wp-content h3,
.crt-wp-content h4,
.crt-wp-content h5,
.crt-wp-content h6 {
	margin: 2rem 0 0.75rem !important;
	color: var(--crt-ink) !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.015em !important;
}

.crt-wp-content h1 { font-size: clamp(1.75rem, 4vw, 2.5rem) !important; }
.crt-wp-content h2 { font-size: clamp(1.5rem, 3vw, 2rem) !important; }
.crt-wp-content h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem) !important; }
.crt-wp-content h4 { font-size: 1.25rem !important; }
.crt-wp-content h5 { font-size: 1.1rem !important; }
.crt-wp-content h6 { font-size: 1rem !important; }

.crt-wp-content ul,
.crt-wp-content ol {
	margin: 0 0 1.25rem !important;
	padding-left: 1.5rem !important;
	color: var(--crt-ink) !important;
}

.crt-wp-content ul { list-style: disc !important; }
.crt-wp-content ol { list-style: decimal !important; }

.crt-wp-content li {
	margin: 0 0 0.4rem !important;
	padding-left: 0.15rem !important;
	color: var(--crt-ink) !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
}

.crt-wp-content li::marker {
	color: var(--crt-brand) !important;
}

.crt-wp-content a:not(.btn) {
	color: var(--crt-brand) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.crt-wp-content a:not(.btn):hover,
.crt-wp-content a:not(.btn):focus-visible {
	color: var(--crt-ink) !important;
}

.crt-wp-content strong,
.crt-wp-content b {
	font-weight: 700 !important;
}

.crt-wp-content figure,
.crt-wp-content .wp-block-image,
.crt-wp-content .wp-block-embed,
.crt-wp-content .wp-block-gallery {
	margin: 1.5rem 0 !important;
}

.crt-wp-content img,
.crt-wp-content video,
.crt-wp-content iframe {
	max-width: 100%;
	height: auto;
}

.crt-wp-content img {
	display: block;
	border-radius: var(--crt-radius-sm);
}

.crt-wp-content .aligncenter {
	margin-right: auto !important;
	margin-left: auto !important;
}

.crt-wp-content .alignwide,
.crt-wp-content .alignfull {
	max-width: 100%;
}

.crt-wp-content blockquote {
	margin: 1.5rem 0 !important;
	padding: 1rem 1.25rem !important;
	border-left: 3px solid var(--crt-brand) !important;
	border-radius: var(--crt-radius-sm);
	background: var(--crt-surface-soft) !important;
	color: var(--crt-muted) !important;
}

.crt-wp-content blockquote p:last-child {
	margin-bottom: 0 !important;
}

.crt-wp-content hr {
	margin: 2rem 0 !important;
	border-top: 1px solid var(--crt-border-soft) !important;
	opacity: 1;
}

.crt-wp-content figure.wp-block-table,
.crt-wp-content .wp-block-table {
	max-width: 100%;
	margin: 1.5rem 0 !important;
	overflow-x: auto;
}

.crt-wp-content table {
	width: 100%;
	margin: 0 !important;
	border: 1px solid var(--crt-border-soft) !important;
	border-collapse: collapse !important;
	border-radius: var(--crt-radius-sm);
	background: var(--crt-white) !important;
	box-shadow: none !important;
	font-size: 0.95rem !important;
}

.crt-wp-content th,
.crt-wp-content td {
	padding: 0.7rem 0.8rem !important;
	border: 1px solid var(--crt-border-soft) !important;
	text-align: left;
	vertical-align: top;
	line-height: 1.5 !important;
}

.crt-wp-content th {
	background: var(--crt-brand) !important;
	color: var(--crt-white) !important;
	font-weight: 700 !important;
}

.crt-wp-content tr:nth-child(even) td {
	background: var(--crt-surface-soft) !important;
}

.crt-wp-content code,
.crt-wp-content pre {
	font-size: 0.9em;
}

.crt-wp-content pre {
	max-width: 100%;
	padding: 1rem;
	overflow-x: auto;
	border: 1px solid var(--crt-border-soft);
	border-radius: var(--crt-radius-sm);
	background: var(--crt-surface-soft);
}

.crt-wp-content .wp-block-button__link {
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.crt-wp-content table {
		min-width: 560px;
	}

	.crt-wp-content th,
	.crt-wp-content td {
		padding: 0.6rem !important;
	}
}

/* Compact, uniform search card spacing and corners. */
.crt-search-wrap {
	padding: 15px !important;
	border-radius: 8px !important;
}

.crt-search-wrap .crt-search-form {
	padding: 15px !important;
	border-radius: 8px !important;
}

/* Keep breadcrumbs below the complete hero/search area on location pages. */
.crt-single-car-rental-page > .crt-breadcrumb-wrap,
.crt-front-page > .crt-breadcrumb-wrap {
	position: relative;
	z-index: 2;
	clear: both;
	margin-top: 0 !important;
	background: var(--crt-surface-soft);
}

@media (max-width: 767.98px) {
	.crt-blog-archive-hero .crt-hero-banner {
		min-height: 250px;
	}

	.crt-blog-archive-hero .crt-hero-inner {
		padding-top: 4.5rem;
		padding-bottom: 3rem;
	}

	.crt-blog-archive-hero + .container {
		padding-top: 2rem;
	}

	.crt-inner-page-hero .crt-hero-banner {
		min-height: 250px;
	}

	.crt-inner-page-hero .crt-hero-inner {
		padding-top: 4.5rem;
		padding-bottom: 3rem;
	}

	.crt-inner-page-hero + .crt-breadcrumb-wrap,
	.crt-inner-page-hero + .container {
		padding-top: .5rem;
		padding-bottom: .25rem;
	}
}

/* =========================================================
   SINGLE VEHICLE VISUAL CONSISTENCY
   ========================================================= */

.crt-single-vehicle-page {
	background: var(--crt-surface-soft);
	color: var(--crt-ink);
}

.crt-single-vehicle-page .crt-sv-hero {
	background: var(--crt-surface-soft);
}

.crt-single-vehicle-page .crt-sv-hero .crt-breadcrumb-wrap {
	margin-bottom: 1.5rem;
	background: transparent;
}

.crt-single-vehicle-page .crt-sv-hero #breadcrumbs,
.crt-single-vehicle-page .crt-sv-hero #breadcrumbs a {
	color: var(--crt-muted);
}

.crt-single-vehicle-page .crt-sv-hero #breadcrumbs a:hover {
	color: var(--crt-accent-dark);
}

.crt-single-vehicle-page .crt-sv-eyebrow {
	color: var(--crt-accent-dark);
	font-weight: 700;
}

.crt-single-vehicle-page .crt-sv-title,
.crt-single-vehicle-page .crt-sv-section-title,
.crt-single-vehicle-page .crt-sv-description h2,
.crt-single-vehicle-page .crt-sv-description h3,
.crt-single-vehicle-page .crt-sv-description h4 {
	color: var(--crt-ink);
	font-weight: 700;
}

.crt-single-vehicle-page .crt-sv-model,
.crt-single-vehicle-page .crt-sv-description,
.crt-single-vehicle-page .crt-sv-description p {
	color: var(--crt-muted);
}

.crt-single-vehicle-page .crt-sv-spec-item {
	border-color: var(--crt-border-soft);
	background: var(--crt-white);
	color: var(--crt-ink);
	box-shadow: none;
}

.crt-single-vehicle-page .crt-sv-spec-item i {
	background: var(--crt-accent-light);
	color: var(--crt-accent-dark);
}

.crt-single-vehicle-page .crt-sv-price-box,
.crt-single-vehicle-page .crt-sv-info-card {
	border-color: var(--crt-border-soft);
	border-radius: 8px;
	background: var(--crt-white);
	box-shadow: none;
}

.crt-single-vehicle-page .crt-sv-price,
.crt-single-vehicle-page .crt-sv-info-row strong {
	color: var(--crt-ink);
}

.crt-single-vehicle-page .crt-sv-price-label,
.crt-single-vehicle-page .crt-sv-price-unit,
.crt-single-vehicle-page .crt-sv-info-row span {
	color: var(--crt-muted);
}

.crt-single-vehicle-page .crt-sv-details {
	background: var(--crt-white);
}

.crt-single-vehicle-page .crt-sv-description a {
	color: var(--crt-accent-dark);
	font-weight: 600;
}

/* The vehicle template contains a shared hero class for breadcrumbs, but its
 * hero is not an image banner. Keep the navigation solid on this page. */
body:has(.crt-single-vehicle-page) .crt-header {
	position: sticky;
	background: var(--crt-header-background);
	border-bottom-color: rgba(17, 24, 39, 0.08);
	box-shadow: 0 1px 0 rgba(42, 50, 66, 0.06);
}

body:has(.crt-single-vehicle-page) .crt-navbar {
	background: var(--crt-header-background);
}

@media (max-width: 767.98px) {
	.crt-single-vehicle-page .crt-sv-hero .crt-breadcrumb-wrap {
		margin-bottom: 1rem;
	}

	.crt-single-vehicle-page .crt-sv-title {
		font-size: clamp(2rem, 9vw, 2.75rem);
	}
}

/* ========================================================================
   MOBILE / iPhone ONLY hero fix.
   Keeps the search form BELOW the hero heading so it never rides up over
   the text on phones. Laptops / tablets keep the original -170px float
   (older "float search card" margin) unchanged.
   These rules use the same selector + !important as the original and are
   last in the file, so for phones they win; for desktop (no media query)
   nothing here applies and the original -170px stays.
   ======================================================================== */

/* Only applies to mobile/phone widths. Desktop/tablet are untouched. */
@media (max-width: 767.98px) {
	/* Give the heading real space above the form on small screens. */
	.crt-hero .crt-hero-content {
		margin-bottom: 2rem;
	}

	.crt-hero .crt-hero-inner {
		padding-bottom: clamp(140px, 26vw, 210px);
	}

	/* Tuck the form under the banner without overlapping the heading
	   (replaces the original -220px on phones). */
	.crt-hero > .crt-search-wrap {
		margin-top: -70px !important;
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
}

@media (max-width: 575.98px) {
	.crt-hero .crt-hero-content {
		margin-bottom: 1.5rem;
	}

	/* Replace the original -250px iPhone margin with a gentle tuck. */
	.crt-hero > .crt-search-wrap {
		margin-top: -55px !important;
		margin-bottom: 1.25rem;
	}

	.crt-search-form .row {
		--bs-gutter-y: 0.6rem;
	}
}

/* WordPress editor tables: consistent, readable and responsive. */
.wp-block-table,
.crt-entry-content figure.wp-block-table {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.wp-block-table table,
.crt-entry-content table {
	width: 100%;
	min-width: 680px;
	margin: 1.25rem 0;
	border: 1px solid var(--crt-border) !important;
	border-collapse: collapse;
	background: var(--crt-card) !important;
	box-shadow: var(--crt-shadow-xs);
}

.wp-block-table th,
.crt-entry-content th {
	padding: 0.85rem 0.9rem;
	border: 1px solid var(--crt-primary) !important;
	background: var(--crt-primary) !important;
	color: var(--crt-button-text) !important;
	font-weight: 700;
	text-align: left;
	vertical-align: middle;
}

.wp-block-table td,
.crt-entry-content td {
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--crt-border) !important;
	background: var(--crt-card) !important;
	color: var(--crt-text) !important;
	vertical-align: top;
}

.wp-block-table tbody tr:nth-child(even) td,
.crt-entry-content tbody tr:nth-child(even) td {
	background: var(--crt-section) !important;
}

.wp-block-table a,
.crt-entry-content table a {
	color: var(--crt-link) !important;
}

.wp-block-table a:hover,
.crt-entry-content table a:hover {
	color: var(--crt-link-hover) !important;
}
