.c-button {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding: 20px 40px;
	background-color: #fff3cd;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	font-size: 0.95rem;
	font-weight: 700;
	color: #b04a00;
}

.c-button::before {
	content: '→';
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	transition: all 0.2s;
}

@media (any-hover: hover) {
	.c-button:hover {
		background-color: #ffe599;
	}

	.c-button:hover::before {
		left: 20px;
	}
}