.fd-card__btn.is-disabled {
	opacity: .4;
	pointer-events: none;
	cursor: default;
}

.fd-page {
	display: flex;
	justify-content: center;
	padding-top: var(--gap-md, 24px);
	width: 100%;
}

.nt-page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
}

.nt-page__grp {
	display: flex;
	align-items: center;
	gap: clamp(6px, .52vw, 10px);
}

.nt-page__arrow {
	display: grid;
	place-items: center;
	width: clamp(20px, 1.25vw, 24px);
	height: clamp(20px, 1.25vw, 24px);
}

.nt-page__arrow img {
	width: 100%;
	height: auto;
}

.nt-page__arrow--flip img {
	transform: scaleX(-1);
}

.nt-page__arrow.is-disabled {
	opacity: .35;
	pointer-events: none;
}

.nt-page__num {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: clamp(13px, .8333vw, 16px);
	line-height: 1;
	font-weight: 500;
	color: #555;
}

.nt-page__num.is-current {
	background: #111;
	color: #fff;
}

.fd-soon {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(32px, 3.646vw, 70px);
	padding-inline: var(--gutter);
}

.fd-soon .fd-title__h,
.fd-soon .fd-title__lead {
	white-space: normal;
}

.fd-soon__card {
	width: min(800px, 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(20px, 1.56vw, 30px);
	padding: clamp(40px, 3.65vw, 70px) clamp(24px, 2.08vw, 40px);
	background: var(--white);
	border: 1px solid var(--line, #ddd);
	border-radius: var(--r-lg, 30px);
	box-shadow: 0 12px 16px rgba(0, 0, 0, .05);
	text-align: center;
}

.fd-soon__txt {
	margin: 0;
	font-size: clamp(15px, .94vw, 18px);
	line-height: 1.8;
	font-weight: 500;
	color: var(--ink-2, #222);
}

.fd-soon__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(160px, 12vw, 220px);
	height: clamp(48px, 3.125vw, 60px);
	padding: 0 28px;
	border-radius: var(--r-pill, 100px);
	background: var(--brand, #e74947);
	color: var(--white, #fff);
	font-size: clamp(15px, .94vw, 18px);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease;
}

.fd-soon__btn:hover,
.fd-soon__btn:focus-visible {
	background: var(--brand-cta, #e35457);
	transform: translateY(-2px);
}
