.btn-slide {
	--slide-ease: cubic-bezier(0.22, 1, 0.36, 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 2.85rem;
	padding: 0.55rem 1.2rem 0.55rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: #0043d5;
	color: #fff;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	word-break: keep-all;
}

.btn-slide--sm {
	min-height: 2.45rem;
	padding: 0.4rem 1rem 0.4rem 1.1rem;
	font-size: 0.88rem;
	gap: 0.45rem;
}

.btn-slide__text {
	display: block;
	overflow: hidden;
	height: 1.2em;
}

.btn-slide__text-track {
	display: flex;
	flex-direction: column;
	transition: transform 0.45s var(--slide-ease);
}

.btn-slide__line {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	height: 1.2em;
	white-space: nowrap;
}

.btn-slide__line img {
	width: 18px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.btn-slide__phone-icon,
.btn-slide__pen-icon {
	display: block;
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
}

.btn-slide--sm .btn-slide__line img {
	width: 16px;
	height: 14px;
}

.btn-slide__arrow {
	position: relative;
	flex-shrink: 0;
	width: 0.7rem;
	height: 0.7rem;
	overflow: hidden;
}

.btn-slide__arrow-track {
	display: flex;
	width: 200%;
	height: 100%;
	transform: translateX(-50%);
	transition: transform 0.45s var(--slide-ease);
}

.btn-slide__chevron {
	flex: 0 0 50%;
	position: relative;
}

.btn-slide__chevron::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.38rem;
	height: 0.38rem;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: translate(-70%, -50%) rotate(45deg);
}

.btn-slide:hover .btn-slide__text-track {
	transform: translateY(-50%);
}

.btn-slide:hover .btn-slide__arrow-track {
	transform: translateX(0);
}

.btn-slide:hover {
	background: #0036ab;
}

.btn-slide--kakao {
	background: #fee500;
	color: #3c1e1e;
}

.btn-slide--kakao:hover {
	background: #f0d800;
}

.btn-slide--kakao .btn-slide__line img {
	filter: brightness(0);
}

.btn-slide--phone {
	background: #fff;
	color: #191f28;
	box-shadow: inset 0 0 0 1px #e5e8eb;
}

.btn-slide--phone:hover {
	background: #f8f9fb;
}

.btn-slide--phone .btn-slide__line img {
	filter: none;
}

.btn-slide--soft {
	background: #e8eefc;
	color: #0043d5;
}

.btn-slide--soft:hover {
	background: #d6e8ff;
}

.btn-slide--ink {
	background: #191f28;
	color: #fff;
}

.btn-slide--ink:hover {
	background: #0f141b;
}

@media (prefers-reduced-motion: reduce) {
	.btn-slide__text-track,
	.btn-slide__arrow-track {
		transition: none;
	}

	.btn-slide:hover .btn-slide__text-track {
		transform: none;
	}

	.btn-slide:hover .btn-slide__arrow-track {
		transform: translateX(-50%);
	}
}

.btn-slide--block {
	width: 100%;
	justify-content: space-between;
}

.hero__banner-cta .btn-slide {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 16rem;
	justify-content: space-between;
}

.hero-form button.btn-slide.hero-form__submit {
	width: 100%;
	justify-content: space-between;
	border-radius: 999px;
}

.hero-form button.btn-slide.hero-form__submit:hover {
	filter: none;
}

.feat-card__body .btn-slide {
	margin-top: 0.15rem;
}

.curr-plan .btn-slide,
.pricing-plan .btn-slide,
.review-modal__footer .btn-slide {
	width: 100%;
	justify-content: space-between;
}

.curr-plan .btn-slide {
	margin: 0 0 1.25rem;
}

@media (max-width: 959px) {
	.hero__cta--float .btn-slide {
		box-sizing: border-box;
		width: auto;
		min-width: 0;
		height: 2.75rem;
		min-height: 2.75rem;
		padding: 0.35rem 0.85rem;
		font-size: 0.88rem;
	}
}
