/* Webux CTA (field block) - frontend. Ported from .lv-cta / .lv-*-cta-sec. */
.webux-cta {
	padding-inline: 1.5rem;
}

/* ---- Card style: white card, text left / buttons right ---- */
.webux-cta--card {
	padding-block: 96px;
}

.webux-cta__card {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: #fff;
	border: 1px solid #ece7de;
	border-radius: 24px;
	box-shadow: 0 8px 28px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
	padding: 48px;
}

.webux-cta__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ---- Band style: centered on a colour band ---- */
.webux-cta--band {
	padding-block: 88px;
}

.webux-cta__inner {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

/* ---- Shared pieces ---- */
.webux-cta__eyebrow {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.82px;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--wp--preset--color--primary, #8b8178);
}

.webux-cta__title {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
}

.webux-cta__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #6b6661;
}

.webux-cta__badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	height: 28px;
	padding: 0 14px;
	margin-top: 6px;
	border-radius: 999px;
	background: #f4efe3;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.26px;
}

.webux-cta--band .webux-cta__badge { align-self: center; }

.webux-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Accent band: white text. */
.webux-cta--band.has-accent-background-color .webux-cta__title { color: #fff; }
.webux-cta--band.has-accent-background-color .webux-cta__text { color: #f4efe3; }
.webux-cta--band.has-accent-background-color .webux-cta__eyebrow { color: #e8dec8; }

@media (max-width: 782px) {
	.webux-cta__card { padding: 32px; }
	.webux-cta__title { font-size: 24px; }
}
