
/* CTA-specific styles */
.cta {
	position: relative;
	z-index: 3;
}

.cta__content {
	display: grid;
	gap: 32px;
	justify-items: center;
	text-align: center;
}

.cta .content-section-heading {
	display: grid;
	gap: 18px;
	justify-items: center;
	margin-inline: auto;
	text-align: center;
}

.cta .content-copy {
	margin-inline: auto;
}

.cta__button {
	background: var(--dixital-color-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: max(1rem, calc(var(--dixital-font-size-body) * 1.02));
	font-weight: 600;
	justify-content: center;
	min-height: 48px;
	padding: 0 32px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.cta__button:hover {
	background: var(--dixital-color-accent-strong);
}

@media (max-width: 899px) {
	.cta__content {
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.cta__content {
		gap: 20px;
		justify-items: stretch;
	}

	.cta .button {
		width: 100%;
	}
}
