/* Home — CTA band component
 *
 * Closing brand-gradient band: copy on the left, actions on the right.
 */

.bollaert-home-cta {
	border-radius: 20px;
	background:
		radial-gradient(900px 300px at 90% 120%, rgba(255, 255, 255, 0.16), transparent 60%),
		linear-gradient(135deg, var(--wp--preset--color--brand-dark) 0%, var(--wp--preset--color--brand) 100%);
	color: var(--wp--preset--color--white);
	padding: clamp(1.75rem, 5vw, 3rem) clamp(1.5rem, 5vw, 3.5rem);
}

.bollaert-home-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--6);
}

.bollaert-home-cta__copy {
	max-width: 52ch;
}

.bollaert-home-cta__title {
	margin: 0 0 var(--wp--preset--spacing--2);
	font-size: var(--wp--preset--font-size--2xl);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--white);
}

.bollaert-home-cta__text {
	margin: 0;
	font-size: var(--wp--preset--font-size--md);
	color: rgba(255, 255, 255, 0.9);
}

.bollaert-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--3);
}

.bollaert-home-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.8em 1.6em;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.bollaert-home-cta__btn:hover {
	transform: translateY(-1px);
}

.bollaert-home-cta__btn--primary {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--brand-dark);
	box-shadow: var(--wp--preset--shadow--medium);
}

.bollaert-home-cta__btn--phone {
	background: rgba(255, 255, 255, 0.12);
	color: var(--wp--preset--color--white);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.bollaert-home-cta__btn--phone:hover {
	background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 700px) {
	.bollaert-home-cta__actions {
		width: 100%;
	}

	.bollaert-home-cta__btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}
