/* =================================================================
   CSS CUSTOM PROPERTIES
   ================================================================= */
:root {
	/* --- Layout ---
       Change these values here — they cascade everywhere automatically */
	--header-h: 52px;
	--aside-w: 22.5%;
	--col-header-w: 30%;
	/* ^ faq-category-header width within faq-content
         faq-category-body takes the remaining ~70%
         Valid range: 25%–35% */

	--sticky-gap: 1.5rem;
	/* ^ breathing room above sticky faq-category-header
         set to 0rem to remove the gap entirely */

	--sticky-top: calc(var(--header-h) + var(--sticky-gap));

	/* --- Typography --- */
	--font-display: 'Lora', Georgia, serif;
	--font-ui: 'Inter', system-ui, sans-serif;
	--font-body: 'DM Sans', system-ui, sans-serif;

	/* --- Base colors --- */
	--clr-bg: #fdfdfd;
	--clr-surface: #f7f8fa;
	--clr-border: #e2e6ec;
	--clr-border-soft: rgba(0, 0, 0, 0.06);
	--clr-text: #0f1117;
	--clr-muted: #64748b;
	--clr-subtle: #94a3b8;

	/* --- Transition shorthand --- */
	--ease: 0.22s ease;
}

/* -----------------------------------------------------------------
   PER-CATEGORY ACCENT COLORS
   Set via data-category attribute on each .faq-category section.
   --cat-color      → title, topic dash, icon/track on hover, nav active text/border
   --cat-color-soft → nav active background
   ----------------------------------------------------------------- */
.faq-category[data-category='adjusters'] {
	--cat-color: #2563eb;
	--cat-color-soft: #eff4ff;
}
.faq-category[data-category='policyholders'] {
	--cat-color: #0d9488;
	--cat-color-soft: #f0fdfa;
}
.faq-category[data-category='relocation-agents'] {
	--cat-color: #7c3aed;
	--cat-color-soft: #f5f3ff;
}
.faq-category[data-category='lease-legal'] {
	--cat-color: #b45309;
	--cat-color-soft: #fffbeb;
}
.faq-category[data-category='emergency-support'] {
	--cat-color: #dc2626;
	--cat-color-soft: #fef2f2;
}
.faq-category[data-category='travelers'] {
	--cat-color: #16a34a;
	--cat-color-soft: #f0fdf4;
}

/* =================================================================
   RESET & BASE
   ================================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	/* Lenis owns smooth scrolling — keep native scroll instant */
	scroll-behavior: auto;
	/* overflow-x: clip (not hidden) — clips visual overflow without creating a
	   scroll container. overflow: hidden would make html a scroll container, which
	   on iOS Safari locks ALL scroll (x + y) and breaks position: fixed elements.
	   The site-wide baseline (body { overflow-x: clip }) in site-header.css covers
	   most cases; this rule catches any overflow on the html element itself. */
	overflow-x: clip;
}

body {
	font-family: var(--font-body);
	background-color: var(--clr-bg);
	color: var(--clr-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}

/* Header styles live in ../site-header.css (shared component).
   FAQ-page-specific overrides below keep the header light and sticky,
   which is already the default in site-header.css — no extra rules needed. */

/* =================================================================
   FAQ PAGE — three-column flex container
   IMPORTANT: Do NOT add overflow: hidden to this element.
   overflow: hidden on any ancestor will break position: sticky
   on .faq-aside-inner and .faq-category-header.
   ================================================================= */
/* Mobile-only section title — hidden on desktop, shown centered on ≤1024px */
.faq-section-title {
	display: none;
}

.faq-page {
	display: flex;
	align-items: stretch; /* aside stretches to full content height — required for sticky */
	max-width: 1440px;
	margin: 0 auto;
	min-height: calc(100vh - var(--header-h));
}

/* =================================================================
   ASIDE — sticky left column for the entire page scroll duration
   ================================================================= */
.faq-aside {
	width: var(--aside-w);
	flex-shrink: 0;
	border-right: 1px solid var(--clr-border);
	/* aside stretches to content height via parent align-items: stretch */
}

/*
   The inner wrapper is what actually sticks.
   The aside is as tall as all FAQ content; the inner sticks within it.
*/
.faq-aside-inner {
	position: sticky;
	top: var(--header-h); /* clears the site header */
	height: calc(100vh - var(--header-h)); /* fills remaining viewport height */
	overflow-y: auto;
	padding: 2.5rem 1.25rem 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	/* GPU hint — tells the browser this element will move */
	will-change: transform;
	/* Prevents CSS transitions from fighting GSAP */
	transition: none !important;

	scrollbar-width: thin;
	scrollbar-color: var(--clr-border) transparent;
}

.faq-aside-inner::-webkit-scrollbar {
	width: 3px;
}
.faq-aside-inner::-webkit-scrollbar-track {
	background: transparent;
}
.faq-aside-inner::-webkit-scrollbar-thumb {
	background: var(--clr-border);
	border-radius: 2px;
}

/* "Frequently / Asked / Questions" — stacked typographic heading */
.faq-aside-heading {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--clr-border);
}

.faq-aside-heading span {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(1.4rem, 2.2vw, 2.25rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--clr-text);
}

/* "Asked" — indented and muted */
.faq-aside-heading span:nth-child(2) {
	padding-left: 1rem;
	color: var(--clr-muted);
}

.faq-aside-heading span:nth-child(3) {
	font-weight: 600;
}

/* =================================================================
   FAQ NAV — category links inside the aside
   Active state colors are injected by JS via --active-color / --active-bg
   so each link inherits its category's accent color when active.
   ================================================================= */
.faq-nav ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.faq-nav-link {
	display: block;
	padding: 0.5rem 0.875rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--clr-muted);
	border-left: 2px solid transparent;
	border-radius: 0 6px 6px 0;
	transition:
		background var(--ease),
		color var(--ease),
		border-color var(--ease);
}

.faq-nav-link:hover {
	background: var(--clr-surface);
	color: var(--clr-text);
}

.faq-nav-link.active {
	background: var(--active-bg, #eff4ff);
	color: var(--active-color, #2563eb);
	font-weight: 500;
	border-left-color: var(--active-color, #2563eb);
}

/* =================================================================
   FAQ CONTENT — right of aside, holds all category sections
   IMPORTANT: Do NOT add overflow: hidden — breaks position: sticky
   on .faq-category-header elements inside.
   ================================================================= */
.faq-content {
	flex: 1;
	min-width: 0; /* prevents flex overflow on narrow viewports */
	padding-top: 2rem;
}

/* =================================================================
   FAQ CATEGORY — one <section> per faqData entry
   Two-column flex row: sticky header (left) + scrolling body (right)
   IMPORTANT: Do NOT add overflow: hidden — breaks position: sticky
   ================================================================= */
.faq-category {
	display: flex;
	align-items: flex-start; /* CRITICAL: allows sticky on faq-category-header */
	border-bottom: 1px solid var(--clr-border-soft);
	padding: 3.5rem 0;
	/* Scroll margin accounts for sticky site header + small gap */
	scroll-margin-top: calc(var(--header-h) + 1rem);
}

.faq-category:last-child {
	border-bottom: none;
}

/* =================================================================
   FAQ CATEGORY HEADER — sticky left column, ~30% of faq-content
   Sticks within its parent .faq-category — unsticks automatically
   when the section bottom approaches, no JS required.
   ================================================================= */
.faq-category-header {
	width: var(--col-header-w);
	flex-shrink: 0;
	position: sticky;
	top: var(
		--sticky-top
	); /* header-h + sticky-gap — adjust --sticky-gap in :root */
	align-self: flex-start; /* CRITICAL: without this, sticky won't trigger in flex */
	padding: 0 2rem 0 2rem;
}

.faq-category-title {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 1.8vw, 1.875rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 0.75rem;
	/* Category accent color — set via data-category on parent section */
	color: var(--cat-color, var(--clr-text));
}

.faq-category-desc {
	font-size: 0.875rem;
	color: var(--clr-muted);
	line-height: 1.65;
	max-width: 240px;
}

/* =================================================================
   FAQ CATEGORY BODY — scrolling right column, ~70% of faq-content
   ================================================================= */
.faq-category-body {
	flex: 1;
	min-width: 0;
	padding-right: 3rem;
}

/* =================================================================
   FAQ TOPIC — sub-category group within a body
   ================================================================= */
.faq-topic {
	margin-top: 2.25rem;
}

.faq-topic-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--font-ui);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--clr-subtle);
	margin-bottom: 0.875rem;
}

/* The "—" dash from the ASCII layout brief, colored by category */
.faq-topic-title::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 1.5px;
	background: var(--cat-color, var(--clr-subtle));
	border-radius: 1px;
	flex-shrink: 0;
}

/* =================================================================
   FAQ ITEM — individual Q&A accordion unit
   ================================================================= */
.faq-item {
	position: relative;
	cursor: pointer;
	padding-left: 1.5rem;
	margin-bottom: 0.25rem;
}

/* Question row — click target for accordion */
.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.75rem;
	padding-bottom: 1rem;
}

.faq-question {
	font-family: var(--font-ui);
	font-size: clamp(0.9rem, 1.1vw, 1.05rem);
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	transition: color var(--ease);
}

.faq-item:hover .faq-question,
.faq-item[aria-expanded='true'] .faq-question {
	color: var(--cat-color, var(--clr-text));
}

/* Answer wrapper — height controlled by GSAP, set to 0 initially */
.faq-a {
	height: 0;
	overflow: hidden;
}

.faq-answer {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--clr-muted);
	line-height: 1.75;
	margin: 0;
	padding: 0.25rem 0 0.75rem;
}

.faq-answer-list {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--clr-muted);
	line-height: 1.75;
	margin: 0 0 0.75rem 0;
	padding-left: 1.5rem;
	list-style-type: disc;
}

.faq-answer-list li {
	margin-bottom: 0.2rem;
}

.faq-answer-ol {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--clr-muted);
	line-height: 1.75;
	margin: 0 0 0.75rem 0;
	padding-left: 1.5rem;
	list-style-type: decimal;
}

.faq-answer-ol > li {
	margin-bottom: 1.25rem;
}

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

.faq-answer-ol .faq-answer {
	padding: 0 0 0.35rem;
}

.faq-answer-ol .faq-answer-list {
	margin-bottom: 0.35rem;
}

.faq-a > *:last-child {
	padding-bottom: 1.5rem;
	margin-bottom: 0;
}

/* =================================================================
   FAQ ICON — plus / minus toggle
   -----------------------------------------------------------------
   SIMPLIFIED vs. landing page implementation:
   .faq-icon-line.vertical uses height > width so it is naturally
   vertical at rotation: 0. This makes GSAP values intuitive:
     rotation: 0  → vertical   → "+" → CLOSED  (0 = default/closed)
     rotation: 90 → horizontal → "−" → OPEN    (90 = rotated/open)

   Landing page reverses this (pre-rotates in CSS, animates back to 0)
   because .plus-line is naturally horizontal (width > height).
   Same visual result — values just read in the natural direction here.
   ================================================================= */
.faq-icon {
	width: 24px;
	height: 24px;
	border: 1px solid var(--clr-border);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-shrink: 0;
	transition: border-color var(--ease);
}

.faq-item:hover .faq-icon,
.faq-item[aria-expanded='true'] .faq-icon {
	border-color: var(--cat-color, var(--clr-text));
}

.faq-icon-line {
	background-color: var(--clr-subtle);
	border-radius: 2px;
	position: absolute;
	transition: background-color var(--ease);
}

.faq-item:hover .faq-icon-line,
.faq-item[aria-expanded='true'] .faq-icon-line {
	background-color: var(--cat-color, var(--clr-text));
}

/* Horizontal bar — always stays horizontal, never animated */
.faq-icon-line.horizontal {
	width: 10px;
	height: 1.5px;
}

/* Vertical bar — naturally vertical (height > width), no CSS pre-rotation
   GSAP animates: rotation 0 (closed/plus) ↔ rotation 90 (open/minus) */
.faq-icon-line.vertical {
	width: 1.5px;
	height: 10px;
}

/* =================================================================
   FAQ TRACK — thin progress line at the bottom of each item
   Width animated by GSAP on hover and accordion open/close
   ================================================================= */
.faq-track {
	width: 100%;
	height: 1px;
	position: relative;
	margin-top: 0.25rem;
}

.faq-track-line {
	position: absolute;
	inset: 0;
	background: var(--clr-border);
}

.faq-track-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	/* Category accent color — no CSS transition, GSAP handles animation */
	background: var(--cat-color, var(--clr-text));
}

/* =================================================================
   SITE FOOTER
   ================================================================= */
.site-footer {
	border-top: 1px solid var(--clr-border);
	background: var(--clr-surface);
}

.footer-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1.25rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8125rem;
	color: var(--clr-muted);
}

.footer-links {
	display: flex;
	gap: 1.5rem;
}
.footer-links a:hover {
	color: var(--clr-text);
}

/* =================================================================
   RESPONSIVE — Tablet (≤ 1024px)
   Aside collapses to horizontal sticky pill nav at top.
   Category header/body stack vertically within each section.
   ================================================================= */
@media (max-width: 1024px) {
	/* Fixed-band heights — change these to tune spacing */
	:root {
		--faq-title-h: 5rem;     /* Bebas Neue 3-line title + padding */
		--faq-nav-h:   3.5rem;   /* pill nav row */
		--faq-band-h:  calc(var(--header-h) + var(--faq-title-h) + var(--faq-nav-h));
	}

	/* Footer accounts for all three fixed bands, not just the header */
	.footer-container-wrapper {
		min-height: calc(100svh - var(--faq-band-h));
	}

	.faq-page {
		flex-direction: column;
		/* Push content below the three fixed elements */
		padding-top: var(--faq-band-h);
	}

	/* FAQ title band — fixed below the site header */
	.faq-section-title {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		height: var(--faq-title-h);
		z-index: 95;
		background: var(--clr-bg);
		border-bottom: 1px solid var(--clr-border);
		/* Layout */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 0 1.5rem;
	}

	/* Bebas Neue — matches landing page FAQ heading style */
	.faq-section-title span {
		font-family: 'Bebas Neue', sans-serif;
		font-size: 1.25rem;
		font-weight: 400; /* Bebas Neue is Regular-only */
		line-height: 1.1;
		letter-spacing: 0.18rem;
		text-transform: uppercase;
		color: var(--clr-text);
	}

	/* Keep the typographic stagger but drop italic/muted — Bebas Neue has no italic */
	.faq-section-title span:nth-child(2) {
		padding-left: 0.75rem;
		color: var(--clr-text);
		font-style: normal;
	}

	.faq-section-title span:nth-child(3) {
		font-weight: 400;
	}

	/* Pill nav band — fixed below the FAQ title */
	.faq-aside {
		position: fixed;
		top: calc(var(--header-h) + var(--faq-title-h));
		left: 0;
		right: 0;
		width: 100%; /* overrides desktop width: var(--aside-w) = 22.5%; without this, left+width wins and right: 0 is ignored */
		height: var(--faq-nav-h);
		z-index: 90;
		background: var(--clr-bg);
		border-right: none;
		border-bottom: 1px solid var(--clr-border);
	}

	.faq-aside-inner {
		/* No longer sticky — the aside itself is fixed */
		position: static;
		height: 100%;
		overflow: hidden; /* .faq-nav is now the scroll container */
		flex-direction: row;
		align-items: center;
		padding: 0.75rem 0 0.75rem 1.25rem;
		gap: 0;
	}

	/* .faq-nav is the scroll container — mirrors landing page .faq-aside-nav pattern */
	.faq-nav {
		flex: 1;
		min-width: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-webkit-mask-image: linear-gradient(
			to right,
			black calc(100% - 3rem),
			transparent 100%
		);
		mask-image: linear-gradient(
			to right,
			black calc(100% - 3rem),
			transparent 100%
		);
	}

	.faq-nav::-webkit-scrollbar {
		display: none;
	}

	/* Hide the decorative heading — only nav pills show */
	.faq-aside-heading {
		display: none;
	}

	.faq-nav ul {
		/* Drop flex entirely — block + white-space: nowrap lets inline-block li
		   elements lay out horizontally without any flex sizing constraint */
		display: block;
		white-space: nowrap;
		padding-right: 3rem;
	}

	.faq-nav ul li {
		display: inline-block;
		margin-right: 0.375rem;
	}

	.faq-nav ul li:last-child {
		margin-right: 0;
	}

	/* Pill style for nav links — matches landing page FAQ pill style */
	.faq-nav-link {
		display: inline-block;
		padding: 0.375rem 1rem;
		border-radius: 99px;
		border-left: none;
		border: 1px solid rgba(0, 0, 0, 0.15);
		font-size: 0.8125rem;
		color: var(--clr-muted);
		white-space: nowrap;
	}

	/* Active pill: border + text take category accent color — same visual language as
	   the category header cards (colored border, no heavy fill) */
	.faq-nav-link.active {
		border-color: var(--active-color, #2563eb);
		color: var(--active-color, #2563eb);
		font-weight: 500;
	}

	.faq-content {
		padding-top: 0;
	}

	/* Site header: fixed on mobile (eliminates jitter from browser-chrome animation) */
	.site-header {
		position: fixed;
	}

	/* Stack header above body within each category */
	.faq-category {
		flex-direction: column;
		padding: 2.5rem 1.5rem;
		scroll-margin-top: calc(var(--faq-band-h) + 1rem);
	}

	/* Category header: remove sticky, add colored block matching landing page */
	.faq-category-header {
		box-sizing: border-box;
		width: 100%;
		position: static;
		align-self: stretch;
		padding: 1rem 1rem 1.25rem;
		margin-bottom: 1.5rem;
		background-color: var(--cat-color-soft, var(--clr-surface));
		border-left: 3px solid var(--cat-color, var(--clr-border));
		border-radius: 0.375rem;
		border-bottom: none;
	}

	.faq-category-desc {
		max-width: none;
	}

	.faq-category-body {
		padding-right: 0;
	}
}

/* =================================================================
   RESPONSIVE — Small Mobile (≤ 768px)
   ================================================================= */
@media (max-width: 768px) {
	.header-inner {
		padding: 0 1rem;
	}

	/* Keep only the CTA in the header nav */
	.header-nav a:not(.header-cta) {
		display: none;
	}

	.faq-section-title { 
		margin-top: 0.1rem;
	}

	.faq-category {
		padding: 2rem 1rem;
	}

	/* Remove left indent — tighter on small screens */
	.faq-item {
		padding-left: 0;
		margin-bottom: 1.5rem;
	}

	.faq-question {
		font-size: clamp(0.9rem, 3.5vw, 1rem);
	}

	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1rem;
	}
}

/* =================================================================
   JS-MODE MOBILE — two-row site header offset correction
   At ≤ 768px in JS mode, .site-header grows to height: auto
   (nav row + badge row). All fixed bands using top: var(--header-h)
   are too high by ~1.5rem. Correct them here.
   ================================================================= */
@media (max-width: 768px) {
	html.js :root {
		--faq-band-h: calc(var(--header-h-mobile-js) + var(--faq-title-h) + var(--faq-nav-h));
	}
	html.js .faq-section-title {
		top: var(--header-h-mobile-js);
	}
	html.js .faq-aside {
		top: calc(var(--header-h-mobile-js) + var(--faq-title-h));
	}
}

/* =================================================================
   NO-JS OVERRIDES — <details>/<summary> native accordion
   ================================================================= */

/* .faq-a base rule sets height: 0; override so open <details> shows answer */
html.no-js .faq-a {
	height: auto;
	overflow: visible;
}

/* <summary> default display is list-item — override to match .faq-q flex layout */
html.no-js details.faq-item > summary.faq-q {
	display: flex;
	list-style: none;
	cursor: pointer;
}

/* Remove WebKit/Blink disclosure triangle */
html.no-js details.faq-item > summary.faq-q::-webkit-details-marker {
	display: none;
}

/* Custom +/− icon — mirrors the .faq-icon circle visually */
html.no-js details.faq-item > summary.faq-q::after {
	content: '+';
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border: 1px solid var(--clr-border);
	border-radius: 50%;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--clr-subtle);
	font-weight: 400;
}

/* Open state: switch to − and apply category accent color */
html.no-js details[open].faq-item > summary.faq-q::after {
	content: '−';
	border-color: var(--cat-color, var(--clr-text));
	color: var(--cat-color, var(--clr-text));
}

/* Hover: tint the icon border and color */
html.no-js details.faq-item > summary.faq-q:hover::after {
	border-color: var(--cat-color, var(--clr-text));
	color: var(--cat-color, var(--clr-text));
}

/* Hover / open: tint the question text */
html.no-js details.faq-item > summary.faq-q:hover .faq-question,
html.no-js details[open].faq-item > summary.faq-q .faq-question {
	color: var(--cat-color, var(--clr-text));
}

/* Separator line — replaces the JS-only .faq-track */
html.no-js details.faq-item {
	border-bottom: 1px solid var(--clr-border);
	margin-bottom: 0;
}

/* No-JS mobile: the 3-row header is ~6rem tall (vs --header-h: 52px).
   Shift the fixed title/nav bands down and update the content offset. */
@media (max-width: 1024px) {
	.faq-section-title { 
		margin-top: 0.1rem;
	}

	html.no-js .faq-section-title {
		top: 6rem;
	}
	html.no-js .faq-aside {
		top: calc(6rem + var(--faq-title-h));
	}
	html.no-js .faq-page {
		padding-top: calc(6rem + var(--faq-title-h) + var(--faq-nav-h));
	}
}

.faq-availability-badge {
	display: inline-flex;
	align-items: baseline;
	padding: 0.35rem 0.875rem;
	border-radius: 2rem;
	margin-bottom: 0.875rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.faq-availability-badge[data-status="available"] {
	background: rgba(34, 197, 94, 0.1);
	color: #15803d;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.faq-availability-badge[data-status="coming-soon"] {
	background: rgba(234, 179, 8, 0.1);
	color: #854d0e;
	border: 1px solid rgba(234, 179, 8, 0.3);
}

.faq-availability-badge[data-status="occupied"] {
	background: rgba(239, 68, 68, 0.1);
	color: #b91c1c;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.faq-availability-detail {
	font-weight: 400;
	opacity: 0.85;
}
