.c-button {
	display: flex;
	align-items: center;
}

.c-button__text {
	position: relative;
	display: inline-block;
	padding: 16px 24px;
	background-color: #1a1b1d;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	z-index: 1;
}

.c-button__text::after {
	content: '';
	position: absolute;
	inset: 0 auto auto 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(113deg, #141516 35.12%, #3f1f12 92.14%);
	border-radius: 50px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.c-button__icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	background-color: #1a1b1d;
	border-radius: 50%;
	aspect-ratio: 1/1;
	z-index: 1;
}

.c-button__icon::after {
	content: '';
	position: absolute;
	inset: 0 auto auto 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(113deg, #3f1f12 35.12%, #141516 92.14%);
	border-radius: 50%;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.c-button__icon>span {
	position: relative;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.c-button__icon>span::before {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	display: block;
	width: 12px;
	height: 2px;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease-in-out;
}

.c-button__icon>span::after {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	display: block;
	width: 2px;
	height: 12px;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease-in-out;
}

@media (any-hover: hover) {
	.c-button:hover {
		opacity: 1;
	}

	.c-button:hover .c-button__text::after {
		opacity: 1;
	}

	.c-button:hover .c-button__icon::after {
		opacity: 1;
	}

	.c-button:hover .c-button__icon>span {
		transform: rotate(90deg);
	}

	.c-button:hover .c-button__icon>span::before {
		width: 16px;
	}

	.c-button:hover .c-button__icon>span::after {
		height: 16px;
	}
}

.c-button--2 {
	gap: 8px;
}

.c-button--2 .c-button__text {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	font-weight: 400;
	color: #1a1b1d;
}

.c-button--2 .c-button__text::after {
	content: none;
}

.c-button--2 .c-button__icon {
	width: 32px;
}

.c-button--2 .c-button__icon::after {
	background: linear-gradient(113deg, #141516 35.12%, #3f1f12 92.14%);
}

.c-button--2 .c-button__icon>span::before {
	width: 10px;
}

.c-button--2 .c-button__icon>span::after {
	height: 10px;
}

@media (any-hover: hover) {
	.c-button--2:hover .c-button__icon>span::before {
		width: 12px;
	}

	.c-button--2:hover .c-button__icon>span::after {
		height: 12px;
	}
}