.cct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #0047AB;
	color: #ffffff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	padding: 14px 32px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
	box-shadow: 0 2px 8px rgba(0, 71, 171, 0.28);
}

.cct-btn:hover,
.cct-btn:focus-visible {
	background-color: #003d99;
	box-shadow: 0 4px 14px rgba(0, 71, 171, 0.38);
	transform: translateY(-1px);
	color: #ffffff;
}

.cct-btn:active {
	background-color: #00348a;
	box-shadow: 0 1px 4px rgba(0, 71, 171, 0.22);
	transform: translateY(0);
}

.cct-btn:focus-visible {
	outline: 3px solid #6fa3e8;
	outline-offset: 3px;
}
