.c-button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 200px;
	padding: 1em 2em;
	background-color: var(--color-main-navy);
	--radius: 0.5em;
	clip-path: polygon(var(--radius) 0px, calc(100% - var(--radius)) 0px, 100% var(--radius), 100% calc(100% - var(--radius)), calc(100% - var(--radius)) 100%, var(--radius) 100%, 0% calc(100% - var(--radius)), 0px var(--radius));
	font-family: var(--font-family-sans);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-align: center;
	transition: background-color 0.3s, letter-spacing 0.3s, color 0.3s;
}

.c-button::after {
	content: '';
	position: absolute;
	inset: 50% 0.75em auto auto;
	display: block;
	width: 0.5em;
	height: 1em;
	background-color: currentColor;
	--width: 2px;
	clip-path: polygon(0px 0px, var(--width) 0px, 100% 50%, var(--width) 100%, 0px 100%, calc(100% - var(--width)) 50%);
	translate: 0 -50%;
}

.c-button__in {
	z-index: 1;
}

@media (any-hover: hover) {
	.c-button:hover {
		background-color: var(--color-main-orange);
		letter-spacing: 1px;
		text-decoration: none;
	}
}