/**
 * Busca Apps — theme styles.
 * Design tokens ported from the original "Nocturne" design system (light theme).
 */

/* ---------------------------------------------------------------- tokens */
:root {
	--busa-bg: #fbfcff;
	--busa-surface: #f3f5fe;
	--busa-text: #292b31;
	--busa-text-soft: rgba(41, 43, 49, 0.78);
	--busa-text-mute: rgba(41, 43, 49, 0.64);
	--busa-accent: #000552;
	--busa-accent-strong: #1a2270;
	--busa-accent-soft: #aab6ff;
	--busa-accent-chip-bg: #dbe0ff;
	--busa-accent-chip-text: #000552;
	--busa-divider: rgba(41, 43, 49, 0.16);

	--busa-neutral-200: #e4e7f5;
	--busa-neutral-300: #cfd3e5;
	--busa-neutral-400: #b2b6ca;

	/* Indigo feature bands (stats / pricing). */
	--busa-section: #000552;
	--busa-section-glow: #1a2380;
	--busa-on-section: #e9e9ed;
	--busa-on-section-soft: rgba(233, 233, 237, 0.78);

	--busa-font: "Inter", system-ui, -apple-system, sans-serif;
	--busa-heading-weight: 500;

	--busa-radius-sm: 4px;
	--busa-radius-md: 8px;
	--busa-radius-lg: 14px;

	--busa-shadow-sm: 0 1px 2px rgba(41, 43, 49, 0.08);
	--busa-shadow-md: 0 2px 8px rgba(41, 43, 49, 0.10);
	--busa-shadow-lg: 0 8px 28px rgba(41, 43, 49, 0.14);

	--busa-gutter: clamp(20px, 5vw, 72px);
	--busa-max: 1200px;
}

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

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

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

body {
	margin: 0;
	font-family: var(--busa-font);
	font-size: 15px;
	line-height: 1.55;
	color: var(--busa-text);
	text-wrap: pretty;
	background:
		radial-gradient(1200px 720px at 82% -160px, rgba(219, 224, 255, 0.8), transparent 60%),
		radial-gradient(1100px 800px at -10% 100%, rgba(228, 231, 245, 0.5), transparent 55%),
		var(--busa-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--busa-font);
	font-weight: var(--busa-heading-weight);
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0 0 0.4em;
}

a { color: var(--busa-text); text-underline-offset: 3px; }
a:hover { color: var(--busa-accent); }

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

::selection { background: var(--busa-accent-chip-bg); }

.busa-container {
	max-width: var(--busa-max);
	margin: 0 auto;
	padding-left: var(--busa-gutter);
	padding-right: var(--busa-gutter);
}

.busa-kicker {
	display: block;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--busa-accent);
}

.busa-hairline {
	height: 1px;
	border: 0;
	margin: 0;
	background: linear-gradient(to right, transparent, var(--busa-divider) 48px calc(100% - 48px), transparent);
}

/* Accessibility helpers. */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}

.busa-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10001;
	padding: 10px 16px;
	background: var(--busa-surface);
	color: var(--busa-text);
	border-radius: var(--busa-radius-md);
	box-shadow: var(--busa-shadow-md);
}
.busa-skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
	outline: 2px solid var(--busa-accent);
	outline-offset: 2px;
}

/* --------------------------------------------------------------- buttons */
.busa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	text-decoration: none;
	font-family: var(--busa-font);
	font-weight: var(--busa-heading-weight);
	font-size: 14px;
	line-height: 1.2;
	color: var(--busa-text);
	background: transparent;
	border: 1px solid transparent;
	padding: 8px 14px;
	border-radius: var(--busa-radius-md);
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.busa-btn-primary {
	color: var(--busa-accent);
	border-color: var(--busa-accent);
}
.busa-btn-primary:hover {
	color: var(--busa-accent-strong);
	background: rgba(0, 5, 82, 0.12);
}

.busa-btn-ghost { color: var(--busa-accent); padding-inline: 6px; }
.busa-btn-ghost:hover { background: rgba(0, 5, 82, 0.10); }

.busa-btn-solid {
	color: #fff;
	background: var(--busa-accent);
	border-color: var(--busa-accent);
}
.busa-btn-solid:hover {
	color: #fff;
	background: var(--busa-accent-strong);
	border-color: var(--busa-accent-strong);
}

/* ---------------------------------------------------------------- header */
.busa-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--busa-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: box-shadow 0.2s ease;
}
.busa-header.is-scrolled { box-shadow: var(--busa-shadow-md); }

.busa-header-inner {
	max-width: var(--busa-max);
	margin: 0 auto;
	padding: 12px var(--busa-gutter);
	display: flex;
	align-items: center;
	gap: 24px;
}

.busa-brand { margin-right: auto; display: flex; align-items: center; }
.busa-brand img { max-height: 44px; width: auto; display: block; }
.busa-brand-logo { display: block; line-height: 0; }
.busa-brand-name {
	font-weight: var(--busa-heading-weight);
	font-size: 18px;
	text-decoration: none;
	letter-spacing: -0.01em;
}
.busa-brand-name:hover { color: var(--busa-text); }

.busa-nav { display: flex; align-items: center; gap: 24px; }

.busa-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.busa-menu a {
	font-size: 14px;
	text-decoration: none;
	color: inherit;
}
.busa-menu a:hover,
.busa-menu .current-menu-item > a { color: var(--busa-accent); }

.busa-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--busa-divider);
	border-radius: var(--busa-radius-md);
	cursor: pointer;
}
.busa-nav-toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--busa-text);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.busa-nav-toggle[aria-expanded="true"] .busa-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.busa-nav-toggle[aria-expanded="true"] .busa-nav-toggle-bar:nth-child(2) { opacity: 0; }
.busa-nav-toggle[aria-expanded="true"] .busa-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
	.busa-nav-toggle { display: flex; }

	.busa-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 12px var(--busa-gutter) 20px;
		background: var(--busa-bg);
		border-bottom: 1px solid var(--busa-divider);
		box-shadow: var(--busa-shadow-md);
		display: none;
	}
	.busa-nav.is-open { display: flex; }

	.busa-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.busa-menu a {
		display: block;
		padding: 12px 4px;
		font-size: 15px;
		border-bottom: 1px solid var(--busa-divider);
	}
	.busa-header-cta { margin-top: 12px; justify-content: center; }
}

/* ------------------------------------------------------------ hero slider
 * The homepage hero is a normal Elementor section (.busa-hero) whose inner
 * sections carry .busa-hero-slide. On the frontend the theme stacks the
 * slides and rotates them; inside the Elementor editor they stay stacked
 * and fully editable.
 */
.busa-hero {
	overflow: hidden;
	margin-top: 14px;
}

/* Slide content sits on the same 1200px grid as the rest of the page;
 * z-index keeps it above any Elementor background overlay. */
.busa-hero-slide > .elementor-container {
	max-width: var(--busa-max);
	width: 100%;
	margin: 0 auto;
	padding-inline: var(--busa-gutter);
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

/* Default hero backgrounds — one image per slide, with a navy gradient
 * baked in from the left so the headline zone stays readable over bright
 * photos. Replaced the moment you set a Background image on a slide in
 * Elementor (Slide > Style > Background), because Elementor's generated
 * CSS has higher specificity. */
.busa-hero .busa-hero-slide {
	background-size: cover;
	background-position: center right;
}
.busa-hero .busa-hero-slide:nth-of-type(1) {
	background-image:
		linear-gradient(90deg, rgba(2, 8, 56, 0.82), rgba(2, 8, 56, 0.45) 55%, rgba(2, 8, 56, 0.18)),
		url(../img/hero-1.jpg);
}
.busa-hero .busa-hero-slide:nth-of-type(2) {
	background-image:
		linear-gradient(90deg, rgba(2, 8, 56, 0.72), rgba(2, 8, 56, 0.35) 55%, rgba(2, 8, 56, 0.12)),
		url(../img/hero-2.jpg);
}
.busa-hero .busa-hero-slide:nth-of-type(3) {
	background-image:
		linear-gradient(90deg, rgba(2, 8, 56, 0.82), rgba(2, 8, 56, 0.45) 55%, rgba(2, 8, 56, 0.18)),
		url(../img/hero-3.jpg);
}

/* Slider dots over the dark hero image. */
.busa-hero .busa-hero-dots button { background: rgba(255, 255, 255, 0.38); }
.busa-hero .busa-hero-dots button[aria-current="true"] { background: #fff; }

/* Floating phone mockups on the hero slides, hugging the right edge.
 * .busa-hero-phone = transparent cutout; .busa-hero-shot = rounded card. */
.busa-hero-phone img,
.busa-hero-shot img {
	display: block;
	margin-left: auto;
}
.busa-hero-phone img {
	max-height: 440px;
	width: auto;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}
.busa-hero-shot img {
	max-height: 430px;
	width: auto;
	border-radius: 26px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
/* Mobile hero: keep the desktop side-by-side composition (copy + phone) but
 * scaled down so the whole slide fits full-width in a compact height, instead
 * of a tall stacked layout. The columns stay side-by-side because their
 * _inline_size_mobile (62/38) is set; here we just shrink the pieces. */
@media (max-width: 767px) {
	.busa-hero .busa-hero-slide {
		padding-top: 26px;
		padding-bottom: 30px;
	}
	.busa-hero-slide > .elementor-container {
		flex-wrap: nowrap !important;
		align-items: center;
		gap: 10px;
	}
	.elementor-widget.busa-hero-phone,
	.elementor-widget.busa-hero-shot { display: block; }
	.busa-hero-phone img,
	.busa-hero-shot img {
		margin: 0 auto;
		max-height: 320px;
		max-width: 100%;
	}
	/* Store badges live in the footer too — drop them here to save height. */
	.busa-hero-badges { display: none !important; }
	.busa-hero-kick .elementor-heading-title { font-size: 10px !important; letter-spacing: 0.4px !important; }
	.busa-hero-text .elementor-widget-container { font-size: 12.5px !important; }
	.busa-hero-text .elementor-widget-container p { line-height: 1.5 !important; }
	.busa-hero-slide .elementor-widget-button .elementor-button {
		font-size: 12px;
		padding: 8px 12px;
	}
}

/* Measure caps — target the inner element so `ch` computes at its own
 * font size, not the widget wrapper's. */
.busa-hero-title .elementor-heading-title { max-width: 16ch; }
.busa-hero-text .elementor-widget-container { max-width: 52ch; }
.busa-lead .elementor-widget-container { max-width: 58ch; }

/* Floating app phone on the right of each hero slide (busca-apps.com's
 * composition, in the navy brand). Hidden on small screens. */
.busa-hero-phone {
	display: flex;
	align-items: center;
	justify-content: center;
}
.busa-hero-phone .busa-device-frame {
	animation: busa-float 5.5s ease-in-out infinite;
}
@keyframes busa-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
	.busa-hero-phone .busa-device-frame { animation: none; }
}
@media (max-width: 767px) {
	.busa-hero-phone { display: flex !important; justify-content: center; align-items: center; }
}

/* Inline (width:auto) buttons sit side by side — give them breathing room. */
.elementor-widget-button.elementor-widget__width-auto:not(:last-child) {
	margin-right: 10px;
}

/* Until the slider script kicks in, only the first slide occupies the page
 * (prevents a triple-height flash; with JS off the hero is simply static). */
body:not(.elementor-editor-active) .busa-hero:not(.busa-slider-ready) .busa-hero-slide:not(:first-of-type) {
	display: none;
}

body:not(.elementor-editor-active) .busa-hero > .elementor-container { position: relative; }

body:not(.elementor-editor-active) .busa-hero .busa-hero-slide {
	min-height: clamp(480px, 62vh, 640px);
	display: flex;
	align-items: center;
}

body:not(.elementor-editor-active) .busa-hero.busa-slider-ready .busa-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.9s ease;
}
body:not(.elementor-editor-active) .busa-hero.busa-slider-ready .busa-hero-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.busa-hero-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}
.busa-hero-dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: var(--busa-neutral-400);
	transition: background 0.2s ease, transform 0.2s ease;
}
.busa-hero-dots button[aria-current="true"] {
	background: var(--busa-accent);
	transform: scale(1.2);
}

/* Inside the Elementor editor, hint the slide boundaries. */
body.elementor-editor-active .busa-hero-slide {
	outline: 1px dashed rgba(0, 5, 82, 0.4);
	outline-offset: -1px;
}

/* --------------------------------------------------------- demo showcase
 * .busa-demo-row — horizontally scrollable phone mock-ups with snap,
 * exactly like the source page's showcase.
 */
.busa-demo-row > .elementor-container {
	flex-wrap: nowrap !important;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 16px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--busa-neutral-300) transparent;
}
.busa-demo-row .elementor-column {
	flex: 0 0 auto !important;
	width: 248px !important;
	scroll-snap-align: start;
}
/* Download button under a demo mockup (e.g. Restaurant live preview) —
 * full-width widget, button centered within the phone-mockup column. */
.busa-demo-row .elementor-widget-button.busa-demo-download {
	margin-top: 16px;
	width: 100%;
	text-align: center;
}
.busa-demo-row .busa-demo-download .elementor-widget-container,
.busa-demo-row .busa-demo-download .elementor-button-wrapper {
	text-align: center;
}
.busa-demo-row .busa-demo-download .elementor-button {
	display: inline-flex;
	box-shadow: var(--busa-shadow-sm);
}

/* Phone frame — applied to the Spacer widget that holds the screen. */
.elementor-widget.busa-demo-screen,
.busa-demo-screen {
	width: 216px;
	border-radius: 34px;
	border: 1px solid var(--busa-neutral-300);
	background: var(--busa-surface);
	background-clip: padding-box;
	background-size: cover;
	background-position: center;
	padding: 10px;
	box-shadow: var(--busa-shadow-md);
	margin: 0 auto;
	overflow: hidden;
}
.busa-demo-screen .elementor-widget-container {
	border-radius: 26px;
	background: linear-gradient(180deg, var(--busa-neutral-200), var(--busa-surface));
	background-size: cover;
	background-position: center;
	height: 100%;
}

/* ------------------------------------------------------------ logo wall */
.busa-logo .elementor-widget-container,
.busa-logo.elementor-widget-spacer .elementor-widget-container {
	background-color: var(--busa-surface);
	border-radius: var(--busa-radius-md);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-origin: content-box;
	padding: 12px;
	mix-blend-mode: multiply;
}

/* ------------------------------------------- custom widget: Device Mockup */
.busa-device {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.busa-device-frame {
	width: 216px;
	max-width: 100%;
	border-radius: 34px;
	border: 1px solid var(--busa-neutral-300);
	background: var(--busa-surface);
	padding: 10px;
	box-shadow: var(--busa-shadow-md);
}

.busa-device-screen {
	height: 420px;
	border-radius: 26px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--busa-neutral-200), var(--busa-surface));
}
.busa-device-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Empty-state screen: faint UI skeleton so frames look intentional
 * before a screenshot is chosen. */
.busa-device-placeholder {
	height: 100%;
	padding: 26px 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.busa-device-placeholder span {
	display: block;
	height: 12px;
	border-radius: 6px;
	background: var(--busa-neutral-300);
	opacity: 0.55;
}
.busa-device-placeholder span:nth-child(1) { width: 70%; background: var(--busa-accent-soft); }
.busa-device-placeholder span:nth-child(2) { width: 50%; }
.busa-device-placeholder span:nth-child(3) { width: 60%; }

.busa-device-caption {
	margin-top: 16px;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--busa-text-mute);
}

/* Video-enabled screen: whole mockup is the tap target, play button
 * centered on the screen (YouTube-thumbnail pattern). */
a.busa-device-screen {
	display: block;
	text-decoration: none;
}
.busa-device-video {
	position: relative;
	cursor: pointer;
}
.busa-device-video img,
.busa-device-video .busa-device-placeholder {
	transition: opacity 0.2s ease;
}
.busa-device-video:hover img,
.busa-device-video:hover .busa-device-placeholder {
	opacity: 0.85;
}

.busa-device-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--busa-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 3px;
	box-shadow: 0 6px 18px rgba(0, 5, 82, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.busa-device-video:hover .busa-device-play,
.busa-device-video:focus-visible .busa-device-play {
	transform: scale(1.1);
	box-shadow: 0 8px 22px rgba(0, 5, 82, 0.45), 0 0 0 8px rgba(255, 255, 255, 0.45);
}

/* ----------------------------------------------- custom widget: Video Card */
.busa-video-card { display: flex; flex-direction: column; }

.busa-video-thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	border-radius: var(--busa-radius-lg);
	overflow: hidden;
	cursor: pointer;
	background: radial-gradient(120% 160% at 85% -20%, var(--busa-section-glow), var(--busa-section) 70%);
	box-shadow: var(--busa-shadow-md);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.busa-video-thumb:hover {
	transform: translateY(-2px);
	box-shadow: var(--busa-shadow-lg);
}
.busa-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}
.busa-video-thumb:hover img { opacity: 0.88; }

/* Branded placeholder: faint device silhouette on the navy gradient. */
.busa-video-thumb.is-placeholder::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 56%;
	transform: translate(-50%, -50%);
	width: 22%;
	aspect-ratio: 9 / 18;
	border: 2px solid rgba(170, 182, 255, 0.35);
	border-radius: 14px;
}

.busa-video-title {
	margin-top: 12px;
	font-size: 15px;
	font-weight: var(--busa-heading-weight);
	color: var(--busa-text);
}

/* ---------------------------------------------------------- video lightbox */
.busa-video-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(9, 10, 22, 0.82);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.busa-video-overlay[hidden] { display: none; }

.busa-video-box { position: relative; }

.busa-video-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.busa-video-close:hover { background: rgba(255, 255, 255, 0.28); }

.busa-video-holder video {
	display: block;
	max-width: min(92vw, 900px);
	max-height: 78vh;
	border-radius: 14px;
	background: #000;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.busa-video-holder iframe {
	display: block;
	width: min(92vw, 900px);
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 14px;
	background: #000;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

/* -------------------------------------------- custom widget: Store Badges */
.busa-store-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.busa-store-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border: 1px solid var(--busa-divider);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--busa-accent);
	letter-spacing: 0.01em;
}
.busa-store-badge img {
	width: 15px;
	height: 15px;
	display: block;
}

/* ----------------------------------------------- custom widget: Logo Tile */
.busa-logo-tile {
	height: 72px;
	border-radius: var(--busa-radius-md);
	background-color: var(--busa-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}
.busa-logo-tile img {
	max-width: 60%;
	max-height: 30px;
	object-fit: contain;
}
.busa-logo-tile-ph {
	width: 56%;
	height: 14px;
	border-radius: 7px;
	background: var(--busa-neutral-300);
	opacity: 0.6;
}

/* Bigger, bolder trusted-by wall (left-aligned header).
 * Keep the headline on ONE line from tablet up: nowrap, and scale the font
 * to the viewport (min() caps it at 40px) so it never overflows. Below
 * tablet it wraps normally at a readable size. !important beats Elementor's
 * per-widget font-size rule (equal specificity, loaded after this file). */
.busa-trusted-title .elementor-heading-title { max-width: none; }
@media (min-width: 768px) {
	.busa-trusted-title .elementor-heading-title {
		white-space: nowrap;
		font-size: min(40px, 3vw) !important;
	}
}

.busa-logo-lg .busa-logo-tile {
	border-radius: var(--busa-radius-lg);
	box-shadow: var(--busa-shadow-sm);
	padding: 22px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.busa-logo-lg .busa-logo-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--busa-shadow-md);
}
.busa-logo-lg .busa-logo-tile img {
	max-width: 82%;
	max-height: 62px;
}

/* Trailing (partial) logo row centered under the full rows. */
.busa-logo-row-center > .elementor-container { justify-content: center; }

/* Client logo atop each review card — all normalized to the SAME box so
 * the three logos read as one size regardless of source aspect ratio. */
.busa-review-logo {
	margin-bottom: 16px;
	height: 48px;
	display: flex;
	align-items: center;
}
.busa-review-logo img {
	height: 48px !important;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
}

/* Brand name shown as a wordmark until a logo image is chosen. */
.busa-logo-tile-name {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--busa-text-soft);
	opacity: 0.85;
}

/* -------------------------------------------- custom widget: Pricing Card */
.busa-pricing-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--busa-surface);
	border: 1px solid var(--busa-neutral-200);
	border-radius: var(--busa-radius-lg);
	padding: 28px 26px;
	box-shadow: var(--busa-shadow-sm);
}
.busa-pricing-card.is-featured {
	border: 1.5px solid var(--busa-accent);
	box-shadow: var(--busa-shadow-lg);
	background: #fff;
}

.busa-pricing-badge {
	position: absolute;
	top: -12px;
	left: 24px;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: var(--busa-heading-weight);
	letter-spacing: 0.03em;
	padding: 3px 10px;
	border-radius: 6px;
	background: var(--busa-accent);
	color: #fff;
}

.busa-pricing-name {
	font-size: 17px;
	margin: 0;
	letter-spacing: 0;
}

.busa-pricing-price { display: flex; align-items: baseline; gap: 6px; }
.busa-pricing-amount {
	font-size: 40px;
	font-weight: var(--busa-heading-weight);
	line-height: 1;
	letter-spacing: -0.02em;
}
.busa-pricing-period { font-size: 13px; color: var(--busa-text-mute); }

.busa-pricing-desc {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--busa-text-soft);
}

.busa-pricing-features {
	list-style: none;
	margin: 8px 0 4px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.busa-pricing-features li {
	display: flex;
	gap: 10px;
	align-items: baseline;
	font-size: 14px;
	line-height: 1.5;
}
.busa-pricing-features .busa-check {
	flex: none;
	color: var(--busa-accent);
	transform: translateY(1px);
}

.busa-pricing-btn {
	margin-top: auto;
	width: 100%;
	min-height: 42px;
}

/* Even-sized plan cards: stretch every card to the tallest in its row so
 * all four line up, CTA pinned to the bottom (margin-top:auto). Columns
 * already stretch (align-items:stretch); this carries that height down
 * through the widget-wrap → widget → container → card chain. */
.busa-plans-row > .elementor-container { align-items: stretch; }
.busa-plans-row .elementor-column > .elementor-widget-wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	height: 100%;
}
.busa-plans-row .elementor-column > .elementor-widget-wrap > .elementor-widget-busa-pricing-card {
	flex: 1 1 auto;
	display: flex;
	width: 100%;
}
.busa-plans-row .elementor-widget-busa-pricing-card > .elementor-widget-container {
	display: flex;
	flex: 1;
	width: 100%;
}
.busa-plans-row .busa-pricing-card { flex: 1 1 auto; height: auto; }

/* ---------------------------------------------- interior page title banner */
.busa-page-banner { overflow: hidden; }
.busa-page-banner .elementor-heading-title {
	max-width: 20ch;
}
.busa-page-banner .busa-lead {
	max-width: 60ch;
	margin-top: 14px;
}
.busa-page-banner .elementor-widget-button .elementor-button {
	border-width: 1.5px;
}

/* -------------------------------------------------- free-trial modal */
.busa-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(22, 24, 38, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.busa-modal-overlay[hidden] { display: none; }

.busa-modal {
	position: relative;
	width: min(440px, 100%);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: var(--busa-bg);
	border-radius: var(--busa-radius-lg);
	box-shadow: var(--busa-shadow-lg);
	padding: 32px 30px 28px;
	animation: busa-modal-in 0.22s ease;
}

@keyframes busa-modal-in {
	from { opacity: 0; transform: translateY(10px) scale(0.98); }
	to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.busa-modal { animation: none; }
}

.busa-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: var(--busa-surface);
	color: var(--busa-text-soft);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.busa-modal-close:hover { color: var(--busa-text); background: var(--busa-neutral-200); }

.busa-modal-title {
	font-size: 24px;
	letter-spacing: -0.01em;
	margin: 10px 0 0;
}
.busa-modal-sub {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--busa-text-soft);
}

.busa-trial-form {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.busa-field { display: flex; flex-direction: column; gap: 5px; }
.busa-field > span {
	font-size: 12px;
	font-weight: var(--busa-heading-weight);
	color: var(--busa-text-soft);
}
.busa-field .busa-input { width: 100%; }

.busa-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 420px) {
	.busa-field-row { grid-template-columns: 1fr; }
}

/* Native date/time pickers, brand-tinted. */
.busa-input[type="date"],
.busa-input[type="time"] {
	appearance: none;
	-webkit-appearance: none;
	color-scheme: light;
}

.busa-modal-submit { margin-top: 6px; min-height: 44px; width: 100%; }

.busa-modal-note {
	margin: 4px 0 0;
	font-size: 12px;
	text-align: center;
	color: var(--busa-text-mute);
}

.busa-modal-success-state { text-align: center; padding: 12px 0 4px; }
.busa-modal-check {
	width: 56px;
	height: 56px;
	margin: 0 auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--busa-accent-chip-bg);
	color: var(--busa-accent-strong);
}
.busa-modal-success-state .busa-modal-title { margin-top: 18px; }
.busa-modal-done { margin-top: 20px; min-width: 120px; }

body.busa-modal-open { overflow: hidden; }

/* ------------------------------------------------------- header cart link */
.busa-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--busa-text);
	text-decoration: none;
	padding: 6px 8px;
	border-radius: var(--busa-radius-md);
}
.busa-cart-link:hover { color: var(--busa-accent); background: rgba(0, 5, 82, 0.08); }
.busa-cart-count {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: var(--busa-heading-weight);
	border-radius: 9px;
	background: var(--busa-accent);
	color: #fff;
}
.busa-cart-count.is-empty { background: var(--busa-neutral-300); color: var(--busa-text-soft); }

@media (max-width: 880px) {
	.busa-cart-link { justify-content: center; margin-top: 6px; }
}

/* --------------------------------------------------------- language switch */
.busa-lang {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border: 1px solid var(--busa-divider);
	border-radius: 999px;
	line-height: 1;
}
.busa-lang-globe { color: var(--busa-text-mute); flex: none; }

.busa-lang-dropdown { position: relative; }

.busa-lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	background: var(--busa-surface);
	border: 1px solid var(--busa-divider);
	border-radius: 999px;
	cursor: pointer;
	font-family: var(--busa-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--busa-text);
	transition: border-color 0.15s ease, background 0.15s ease;
}
.busa-lang-toggle:hover { border-color: var(--busa-accent); }

.busa-lang-caret { transition: transform 0.15s ease; color: var(--busa-text-mute); }
.busa-lang-dropdown.is-open .busa-lang-caret { transform: rotate(180deg); }

.busa-lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 160px;
	background: #fff;
	border: 1px solid var(--busa-divider);
	border-radius: 10px;
	box-shadow: var(--busa-shadow-lg);
	padding: 6px;
	z-index: 1200;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.busa-lang-menu[hidden] { display: none; }

.busa-lang-btn {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 8px 10px;
	background: transparent;
	border: 0;
	border-radius: 7px;
	cursor: pointer;
	font-family: var(--busa-font);
	font-size: 13px;
	font-weight: 500;
	color: var(--busa-text);
	text-align: left;
}
.busa-lang-btn:hover { background: var(--busa-surface); }
.busa-lang-btn.is-active {
	background: var(--busa-accent-chip-bg);
	color: var(--busa-accent);
	font-weight: 600;
}

.busa-lang-flag {
	width: 21px;
	height: 15px;
	border-radius: 2.5px;
	object-fit: cover;
	display: block;
	box-shadow: 0 0 0 1px rgba(41, 43, 49, 0.12);
	flex: none;
}

@media (max-width: 880px) {
	.busa-lang-menu { right: auto; left: 0; }
}

@media (max-width: 880px) {
	.busa-lang { margin-top: 10px; align-self: flex-start; }
}

/* ---------------------------------------------------------- contact form */
.busa-contact-form { max-width: 480px; }

.busa-contact-row {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.busa-input {
	flex: 1;
	min-height: 40px;
	padding: 6px 12px;
	font: inherit;
	font-size: 14px;
	color: var(--busa-text);
	caret-color: var(--busa-accent);
	background: var(--busa-surface);
	border: 1px solid var(--busa-divider);
	border-radius: var(--busa-radius-md);
	min-width: 0;
}
.busa-input:hover { border-color: rgba(41, 43, 49, 0.45); }
.busa-input:focus-visible { border-color: var(--busa-accent); outline-offset: 0; }

.busa-contact-notice {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--busa-accent-strong);
}
.busa-contact-notice.is-error { color: #b3423a; }

@media (max-width: 480px) {
	.busa-contact-row { flex-direction: column; }
	.busa-contact-row .busa-btn { min-height: 40px; }
}


/* ---------------------------------------------------- services glass cards
 * Equal-size cards on the navy band: glass surface, icon tile on top,
 * centered label, hover lift. Styled on the widget element itself so it
 * works with and without Elementor's optimized markup. */
.elementor-widget.busa-service-card {
	height: 100%;
	min-height: 176px;
	margin-bottom: 0 !important;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	padding: 24px 14px;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.elementor-widget.busa-service-card:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(170, 182, 255, 0.45);
}
.busa-service-card > .elementor-widget-container {
	height: 100%;
	width: 100%;
	display: flex;
}
/* Hard-center the icon-box internals. Elementor's position classes ship
 * `align-items: unset !important` at (0,3,0) specificity and load after
 * theme.css — these selectors carry four classes so they always win.
 * Content pins to the top: every icon sits on the same line no matter
 * how many lines the label wraps to. */
.elementor-widget.elementor-widget-icon-box.busa-service-card .elementor-icon-box-wrapper {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
	text-align: center !important;
	height: 100%;
	width: 100%;
}
.elementor-widget.elementor-widget-icon-box.busa-service-card .elementor-icon-box-icon {
	width: 54px;
	height: 54px;
	flex: none;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(170, 182, 255, 0.14);
	border-radius: 14px;
}
.elementor-widget.elementor-widget-icon-box.busa-service-card .elementor-icon-box-content {
	width: 100%;
	text-align: center !important;
	flex: none;
}
.elementor-widget.elementor-widget-icon-box.busa-service-card .elementor-icon-box-title {
	margin: 0 !important;
	text-align: center !important;
}

/* Column stretch so all five cards share the tallest height. */
.busa-service-card { display: flex; }

/* Feature cards (80+ features grid): rainbow icon tiles — each card's
 * icon sits in a small box tinted to match its own icon color. */
.elementor-widget.elementor-widget-icon-box.busa-feature-card .elementor-icon-box-icon {
	width: 44px;
	height: 44px;
	flex: none;
	margin: 0 0 12px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 10px;
}
.busa-fc-0 .elementor-icon-box-icon { background: rgba(229,72,77,0.13); }
.busa-fc-1 .elementor-icon-box-icon { background: rgba(247,104,8,0.13); }
.busa-fc-2 .elementor-icon-box-icon { background: rgba(245,166,35,0.13); }
.busa-fc-3 .elementor-icon-box-icon { background: rgba(226,177,0,0.13); }
.busa-fc-4 .elementor-icon-box-icon { background: rgba(70,167,88,0.13); }
.busa-fc-5 .elementor-icon-box-icon { background: rgba(18,165,148,0.13); }
.busa-fc-6 .elementor-icon-box-icon { background: rgba(0,162,199,0.13); }
.busa-fc-7 .elementor-icon-box-icon { background: rgba(0,145,255,0.13); }
.busa-fc-8 .elementor-icon-box-icon { background: rgba(62,99,221,0.13); }
.busa-fc-9 .elementor-icon-box-icon { background: rgba(110,86,207,0.13); }
.busa-fc-10 .elementor-icon-box-icon { background: rgba(142,78,198,0.13); }
.busa-fc-11 .elementor-icon-box-icon { background: rgba(171,74,186,0.13); }
.busa-fc-12 .elementor-icon-box-icon { background: rgba(233,61,130,0.13); }
.busa-fc-13 .elementor-icon-box-icon { background: rgba(229,70,102,0.13); }
.busa-fc-14 .elementor-icon-box-icon { background: rgba(194,100,58,0.13); }
.busa-fc-15 .elementor-icon-box-icon { background: rgba(91,91,214,0.13); }

.busa-services-title .elementor-heading-title {
	max-width: 26ch;
	margin-left: auto;
	margin-right: auto;
}


/* Industries cards: rainbow icon tiles (icon-left layout).
 * Larger, focused cards — surface fill, taller tiles, uniform min-height,
 * soft lift on hover. Border/radius/padding come from the widget's own
 * advanced settings; these add fill, depth and interaction. */
.elementor-widget.elementor-widget-icon-box.busa-industry-card {
	background: var(--busa-surface);
	box-shadow: var(--busa-shadow-sm);
	min-height: 116px;
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.elementor-widget.elementor-widget-icon-box.busa-industry-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--busa-shadow-md);
}
.elementor-widget.elementor-widget-icon-box.busa-industry-card .elementor-icon-box-wrapper {
	height: 100%;
}
.elementor-widget.elementor-widget-icon-box.busa-industry-card .elementor-icon-box-icon {
	width: 56px;
	height: 56px;
	flex: none;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 13px;
}
.busa-ic-0 .elementor-icon-box-icon { background: rgba(229,72,77,0.13); }
.busa-ic-1 .elementor-icon-box-icon { background: rgba(247,104,8,0.13); }
.busa-ic-2 .elementor-icon-box-icon { background: rgba(245,166,35,0.13); }
.busa-ic-3 .elementor-icon-box-icon { background: rgba(226,177,0,0.13); }
.busa-ic-4 .elementor-icon-box-icon { background: rgba(70,167,88,0.13); }
.busa-ic-5 .elementor-icon-box-icon { background: rgba(18,165,148,0.13); }
.busa-ic-6 .elementor-icon-box-icon { background: rgba(0,162,199,0.13); }
.busa-ic-7 .elementor-icon-box-icon { background: rgba(0,145,255,0.13); }
.busa-ic-8 .elementor-icon-box-icon { background: rgba(62,99,221,0.13); }

/* Centered auto-width chip (statement band). */
.elementor-widget.busa-chip-center {
	margin-left: auto !important;
	margin-right: auto !important;
}

.busa-statement-title .elementor-heading-title {
	max-width: 22ch;
	margin-left: auto;
	margin-right: auto;
}

/* Official store badges (real Apple / Google Play artwork). */
.busa-store-badges--official { align-items: center; }
img.busa-store-badge-img {
	height: 44px !important;
	width: auto !important;
	display: block;
	border-radius: 8px;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.busa-store-badge-img:hover { transform: translateY(-1px); opacity: 0.92; }

/* Large centered store badges (Services section). */
.busa-badges-lg .busa-store-badges {
	justify-content: center;
}
.busa-badges-lg img.busa-store-badge-img { height: 52px !important; }

/* Leadership bios: Read More expander + skill tags. */
.busa-bio-more[hidden] { display: none; }
.busa-bio-more p { margin-top: 8px; }

a.busa-readmore {
	display: inline-block;
	margin-top: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--busa-accent) !important;
	text-decoration: none;
	border-bottom: 1px solid var(--busa-accent-soft);
	cursor: pointer;
}
a.busa-readmore:hover { border-bottom-color: var(--busa-accent); }

.busa-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
}
.busa-skill {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--busa-accent-chip-bg);
	color: var(--busa-accent);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

/* Round bordered team photos (Leadership page). */
.busa-team-photo img {
	width: 176px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50% !important;
	border: 4px solid #dbe0ff;
	box-shadow: 0 0 0 1px rgba(0, 5, 82, 0.18);
	display: block;
	margin: 0 auto;
	background: #fff;
}
.busa-team-photo { text-align: center; }

/* Featured client video — centered and prominent. */
.busa-featured-video .busa-video-card {
	max-width: 780px;
	margin: 0 auto;
}
.busa-featured-video .busa-video-title {
	text-align: center;
	font-size: 16px;
}
.busa-featured-video .busa-device-play {
	width: 64px;
	height: 64px;
}

/* ---------------------------------------------------------------- footer */

.busa-footer {
	margin-top: 24px;
	background: var(--busa-section);
	color: rgba(233, 233, 237, 0.85);
	padding: 56px 0 40px;
}

.busa-footer-inner {
	max-width: var(--busa-max);
	margin: 0 auto;
	padding: 0 var(--busa-gutter);
}

.busa-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}
@media (max-width: 880px) {
	.busa-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.busa-footer-brand {
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	display: block;
}

.busa-footer-tagline {
	margin: 12px 0 18px;
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(233, 233, 237, 0.7);
	max-width: 34ch;
}

.busa-footer img.busa-store-badge-img {
	height: 40px !important;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.busa-footer-heading {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(233, 233, 237, 0.55);
	margin: 0 0 14px;
}

.busa-footer-menu,
.busa-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}
.busa-footer a { color: rgba(233, 233, 237, 0.85); text-decoration: none; }
.busa-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Footer phone rows: small muted label + number link. */
.busa-footer-phone { display: flex; gap: 8px; align-items: baseline; }
.busa-footer-phone-label {
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(233, 233, 237, 0.5);
	min-width: 58px;
}

/* Contact page phone pills (light background). */
.busa-phones {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 22px 0 0;
}
.busa-phones a {
	display: inline-flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 22px;
	border: 1px solid var(--busa-neutral-200);
	border-radius: 12px;
	background: var(--busa-surface);
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.busa-phones a:hover { border-color: var(--busa-accent); box-shadow: var(--busa-shadow-sm); }
.busa-phone-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--busa-text-mute);
}
.busa-phone-num {
	font-size: 21px;
	font-weight: 600;
	color: var(--busa-accent);
	letter-spacing: -0.01em;
}

.busa-footer .busa-hairline {
	background: linear-gradient(to right, transparent, rgba(233, 233, 237, 0.22) 48px calc(100% - 48px), transparent);
	margin-bottom: 24px;
}

.busa-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 24px;
	flex-wrap: wrap;
}

.busa-footer-copy {
	font-size: 12.5px;
	line-height: 22px;
	margin: 0;
	color: rgba(233, 233, 237, 0.55);
}

/* ---------------------------------------------------- blog & inner pages */
.busa-entry { padding-top: 56px; padding-bottom: 72px; }

.busa-entry-title {
	font-size: clamp(30px, 3vw, 44px);
	letter-spacing: -0.012em;
	margin-bottom: 24px;
}

.busa-entry-content { max-width: 68ch; font-size: 16px; line-height: 28px; }
.busa-entry-content a { color: var(--busa-accent); }
.busa-entry-thumb img { border-radius: var(--busa-radius-lg); }

.busa-post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.busa-post-card {
	background: var(--busa-surface);
	border-radius: var(--busa-radius-md);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.busa-post-card .busa-post-title { font-size: 19px; margin: 0; }
.busa-post-card .busa-post-title a { text-decoration: none; }
.busa-post-thumb img { border-radius: var(--busa-radius-sm); display: block; }

.busa-post-meta { font-size: 12px; color: var(--busa-text-mute); }
.busa-post-excerpt { font-size: 14px; color: var(--busa-text-soft); }

.busa-pagination { margin-top: 40px; }
.busa-pagination .page-numbers {
	display: inline-block;
	padding: 6px 12px;
	border-radius: var(--busa-radius-sm);
	text-decoration: none;
}
.busa-pagination .page-numbers.current {
	background: var(--busa-accent);
	color: #fff;
}

.busa-404 { text-align: left; }

.busa-comments { margin-top: 48px; }
.busa-comment-list { list-style: none; padding: 0; }
.busa-comment-list .comment-body {
	background: var(--busa-surface);
	border-radius: var(--busa-radius-md);
	padding: 16px 20px;
	margin-bottom: 16px;
	font-size: 14px;
}
.busa-comments input[type="text"],
.busa-comments input[type="email"],
.busa-comments input[type="url"],
.busa-comments textarea {
	width: 100%;
	padding: 8px 12px;
	font: inherit;
	font-size: 14px;
	background: var(--busa-surface);
	border: 1px solid var(--busa-divider);
	border-radius: var(--busa-radius-md);
	box-sizing: border-box;
}
.busa-comments .submit {
	font: inherit;
	font-weight: var(--busa-heading-weight);
	font-size: 14px;
	color: var(--busa-accent);
	background: transparent;
	border: 1px solid var(--busa-accent);
	border-radius: var(--busa-radius-md);
	padding: 8px 16px;
	cursor: pointer;
}

/* ------------------------------------------------- Elementor fine-tuning */
/* Keep Elementor's boxed sections on the design's 1200px grid. */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: var(--busa-max);
}

/* Give star-rating widgets the design's tight gap. */
.busa-stars .elementor-star-rating { letter-spacing: 3px; }

/* Search form. */
.busa-entry .search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin-top: 16px;
}
.busa-entry .search-form .search-field {
	flex: 1;
	min-height: 40px;
	padding: 6px 12px;
	font: inherit;
	font-size: 14px;
	background: var(--busa-surface);
	border: 1px solid var(--busa-divider);
	border-radius: var(--busa-radius-md);
}
.busa-entry .search-form .search-submit {
	font: inherit;
	font-size: 14px;
	font-weight: var(--busa-heading-weight);
	color: var(--busa-accent);
	background: transparent;
	border: 1px solid var(--busa-accent);
	border-radius: var(--busa-radius-md);
	padding: 8px 16px;
	cursor: pointer;
}
