/* ===== Blog CTA sticky bars ===== */

/* Shared bar container */
.blog-cta-bar,
.ai-cta-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #082f49;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 14px 24px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .15);
	font-family: inherit;
}

/* Text block */
.blog-cta-text,
.ai-cta-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.blog-cta-text strong,
.ai-cta-text strong {
	font-size: 15px;
	font-weight: 500;
}

.blog-cta-text span,
.ai-cta-text span {
	font-size: 13px;
	color: #cbd5e1;
}

/* Button wrappers */
.blog-cta-buttons,
.ai-cta-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

/* Shared button base */
.blog-cta-primary,
.blog-cta-secondary,
.ai-cta-primary {
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.blog-cta-primary,
.blog-cta-secondary {
	padding: 10px 20px;
}

.ai-cta-primary {
	padding: 10px 24px;
}

/* Primary button (amber) */
.blog-cta-primary,
.ai-cta-primary {
	background: #f59e0b;
	color: #082f49;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.blog-cta-primary:hover,
.ai-cta-primary:hover {
	background: #fbbf24;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(245, 158, 11, .4);
}

/* Secondary button (outline) */
.blog-cta-secondary {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.blog-cta-secondary:hover {
	background: #fff;
	color: #082f49;
	transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 640px) {
	.blog-cta-bar,
	.ai-cta-bar {
		flex-direction: column;
		gap: 10px;
		padding: 12px 16px;
		text-align: center;
	}

	.blog-cta-text,
	.ai-cta-text {
		padding-right: 60px;
	}

	.blog-cta-text span,
	.ai-cta-text span {
		display: none;
	}

	.blog-cta-buttons,
	.ai-cta-buttons {
		width: 100%;
	}

	.blog-cta-primary,
	.blog-cta-secondary,
	.ai-cta-primary {
		flex: 1;
		text-align: center;
		padding: 12px;
	}

	.ai-cta-primary {
		width: 100%;
	}

	/* Get a Quote on the right, Watch a Demo on the left */
	.blog-cta-primary {
		order: 2;
	}

	.blog-cta-secondary {
		order: 1;
	}
}