/**
 * Advertise card — standard ~1214×150 banner, centered.
 */

.ls-ad-banner {
	--ls-ad-accent: var(--ls-chrome-accent, #c9a84c);
	--ls-ad-ink: #2a2b2c;
	width: 100%;
	max-width: 100%;
	margin: 2rem 0;
	padding: 0 var(--ls-page-gutter, clamp(1rem, 2.5vw, 2.5rem));
	box-sizing: border-box;
	font-family: var(--ls-brand-font, "Source Sans 3", sans-serif);
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: clip;
}

/* Standard IAB-style landscape: 1214 × 150 */
.ls-ad-banner__card {
	position: relative;
	display: block;
	width: 1214px;
	max-width: 100%;
	height: 150px;
	min-height: 150px;
	max-height: 150px;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	background-color: #f0eee8;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

/* Image / GIF only — same box, clickable */
a.ls-ad-banner__card--image {
	text-decoration: none !important;
	color: inherit;
	cursor: pointer;
}

a.ls-ad-banner__card--image:hover,
a.ls-ad-banner__card--image:focus {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	outline: none;
}

.ls-ad-banner__card--image::before,
.ls-ad-banner__card--image::after {
	display: none;
}

.ls-ad-banner__full-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ls-ad-banner__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--ls-ad-bg, linear-gradient(90deg, #d8d4cc, #c8cbbf)) center / cover no-repeat;
	filter: blur(1.5px);
	transform: scale(1.04);
	z-index: 0;
}

.ls-ad-banner__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.78) 0%,
		rgba(255, 255, 255, 0.7) 50%,
		rgba(255, 255, 255, 0.78) 100%
	);
	z-index: 1;
}

.ls-ad-banner__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 1.25rem 1.75rem;
	width: 100%;
	height: 100%;
	padding: 0 1.75rem;
	box-sizing: border-box;
	text-align: center;
}

.ls-ad-banner__copy,
.ls-ad-banner__cta,
.ls-ad-banner__visual {
	position: relative;
	z-index: 2;
}

.ls-ad-banner__copy {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 28rem;
	text-align: center;
}

.ls-ad-banner__eyebrow {
	display: none;
}

.ls-ad-banner__headline {
	margin: 0 0 0.4rem !important;
	padding: 0 0 0.4rem !important;
	border-bottom: 1px solid rgba(42, 43, 44, 0.2) !important;
	font-family: var(--ls-brand-font, "Source Sans 3", sans-serif) !important;
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	color: var(--ls-ad-ink) !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ls-ad-banner__headline-accent {
	color: var(--ls-ad-accent) !important;
}

.ls-ad-banner__sub {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.07em !important;
	text-transform: uppercase !important;
	line-height: 1.3 !important;
	color: var(--ls-ad-ink) !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

a.ls-ad-banner__cta,
.ls-ad-banner__cta {
	flex: 0 0 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 44px;
	min-width: 11.5rem;
	padding: 0 1.5rem !important;
	margin: 0 !important;
	background: var(--ls-ad-accent) !important;
	color: #1a1a1a !important;
	font-size: 0.78rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18) !important;
	white-space: nowrap;
}

a.ls-ad-banner__cta:hover,
a.ls-ad-banner__cta:focus {
	background: #e0c36a !important;
	color: #111 !important;
	text-decoration: none !important;
}

.ls-ad-banner__visual {
	flex: 0 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.85rem;
}

.ls-ad-banner__circles {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.ls-ad-banner__circle {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 3px solid var(--ls-ad-accent);
	background-color: #ccc;
	background-size: cover;
	background-position: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}

.ls-ad-banner__circle--2 {
	margin-left: -22px;
	width: 80px;
	height: 80px;
}

.ls-ad-banner__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 120px;
}

.ls-ad-banner__logo img {
	display: block;
	max-height: 64px;
	max-width: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.ls-ad-banner__footer-note {
	width: 1214px;
	max-width: 100%;
	margin: 0.5rem auto 0;
	padding: 0;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ls-ad-accent);
}

.ls-ad-banner__footer-note a {
	color: var(--ls-ad-accent) !important;
	text-decoration: none !important;
	font-weight: 700;
}

.ls-ad-banner__footer-note a:hover {
	text-decoration: underline !important;
	color: #e0c36a !important;
}

.ls-ad-banner__footer-note span {
	display: none;
}

@media (max-width: 1240px) {
	.ls-ad-banner__card {
		width: 100%;
		height: 150px;
	}

	.ls-ad-banner__headline {
		font-size: 1.35rem !important;
	}

	.ls-ad-banner__circle {
		width: 72px;
		height: 72px;
	}

	.ls-ad-banner__circle--2 {
		width: 66px;
		height: 66px;
	}
}

@media (max-width: 760px) {
	.ls-ad-banner {
		margin: 1rem 0 0.75rem;
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.ls-ad-banner,
	.ls-ad-banner__card {
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.ls-ad-banner__card:not(.ls-ad-banner__card--image) {
		height: auto;
		min-height: 0;
		max-height: none;
		padding: 0.85rem 1rem;
	}

	.ls-ad-banner__card--image {
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 1214 / 150;
	}

	.ls-ad-banner__inner {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0.65rem;
		text-align: center;
	}

	.ls-ad-banner__copy,
	.ls-ad-banner__cta,
	.ls-ad-banner__visual {
		flex: 0 0 auto;
		width: 100%;
		justify-content: center;
		max-width: none;
	}

	.ls-ad-banner__headline {
		font-size: 1.05rem !important;
	}

	.ls-ad-banner__sub {
		font-size: 0.78rem !important;
		white-space: normal;
	}

	.ls-ad-banner__headline,
	.ls-ad-banner__sub {
		white-space: normal;
	}

	.ls-ad-banner__visual {
		justify-content: center;
		gap: 0.45rem;
	}

	.ls-ad-banner__circle,
	.ls-ad-banner__circle--2 {
		width: 48px;
		height: 48px;
	}

	.ls-ad-banner__cta .elementor-button,
	.ls-ad-banner__cta a,
	.ls-ad-banner__btn {
		width: 100%;
		min-height: 44px;
		justify-content: center;
	}
}
