/* ==========================================================================
   Nedclan Countdown (Coming Soon) — frontend styles
   ========================================================================== */

.nedclan-countdown-section {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 60px 20px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}
.nedclan-countdown-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(20, 10, 5, 0.55);
	z-index: 0;
}
.nedclan-countdown-section__inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
}

.nedclan-countdown-title {
	margin: 0;
	color: #ffffff;
	font-size: 56px;
	line-height: 1.15;
	font-weight: 400;
	font-family: Georgia, 'Times New Roman', serif;
}

.nedclan-countdown-subtitle {
	margin: 16px 0 0;
	color: #f2f2f2;
	font-size: 18px;
	font-family: inherit;
}

.nedclan-cd {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
	margin: 40px 0 0;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.nedclan-cd-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 0 0 auto;
}
.nedclan-cd-unit__figure {
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #c1601f;
	border-radius: 6px;
	box-sizing: border-box;
}
.nedclan-cd-unit__number {
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	font-family: inherit;
}
.nedclan-cd-unit__label {
	display: block;
	margin-top: 8px;
	color: #ffffff;
	font-size: 13px;
	font-family: inherit;
}

.nedclan-countdown-complete {
	margin-top: 40px;
	color: #ffffff;
	font-size: 20px;
	font-family: inherit;
}

.nedclan-countdown-bar {
	text-align: center;
}
.nedclan-countdown-bar .nedclan-cd {
	margin-top: 0;
}
.nedclan-countdown-bar .nedclan-countdown-complete {
	margin-top: 24px;
}

@media (max-width: 480px) {
	.nedclan-countdown-section {
		padding: 40px 16px;
	}
	.nedclan-countdown-title {
		font-size: 40px;
	}
	.nedclan-cd {
		gap: 10px;
	}
	.nedclan-cd-unit__figure {
		width: 62px;
		height: 62px;
	}
	.nedclan-cd-unit__number {
		font-size: 26px;
	}
	.nedclan-cd-unit__label {
		font-size: 10px;
	}
}
