/* ======================
   WORK — CTA SECTION
   ====================== */

.work-cta {
	padding: 64px 40px 80px;
	max-width: 1400px;
	margin: 0 auto;
}

.work-cta__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
}

.work-cta__title {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
	letter-spacing: -0.4px;
	color: #292929;
	margin: 0;
	padding: 0;
}

.work-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.work-cta__btn:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

@media (max-width: 1024px) and (min-width: 769px) {
	.work-cta__title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.work-cta {
		padding: 64px 20px 80px;
	}

	.work-cta__inner {
		flex-direction: column;
		align-items: center;
	}

	.work-cta__title {
		font-size: 36px;
		line-height: 39px;
		text-align: center;
	}

	.work-cta__btn svg {
		width: 48px;
		height: 48px;
	}
}
