/**
 * Bible Study Countdown — front-end styles.
 *
 * Most colors / sizes are driven by Elementor Style-tab controls (injected as
 * inline <style> per widget). The rules here provide structure + spec defaults so
 * the widget looks right before any customization.
 */

.bsc-countdown {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* Default padding (also controllable in the Background section). */
	padding: 48px 24px;
}

.bsc-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* Title -------------------------------------------------------------- */
.bsc-title {
	margin: 0 0 6px;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 800;
	font-size: 40px;
	line-height: 1.1;
	color: #ffffff;
}

/* Date --------------------------------------------------------------- */
.bsc-date {
	margin: 0 0 28px;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1.5px;
	color: #f5a623; /* gold */
	text-transform: uppercase;
}

/* Timer row ---------------------------------------------------------- */
.bsc-timer {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
}

.bsc-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 84px;
	padding: 16px 18px 12px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	box-sizing: border-box;
}

.bsc-num {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 700;
	font-size: 46px;
	line-height: 1;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum";
}

.bsc-label {
	margin-top: 8px;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 1px;
	color: #f5a623; /* gold */
	text-transform: uppercase;
}

/* "Live" state ------------------------------------------------------- */
.bsc-live {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #ffffff;
	padding: 10px 4px;
}

.bsc-live[hidden],
.bsc-timer[hidden] {
	display: none;
}

/* Editor notice ------------------------------------------------------ */
.bsc-notice {
	padding: 16px 20px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
	color: #50575e;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 4px;
}

/* Small screens ------------------------------------------------------ */
@media (max-width: 767px) {
	.bsc-title {
		font-size: 30px;
	}
	.bsc-num {
		font-size: 34px;
	}
	.bsc-unit {
		min-width: 68px;
		padding: 12px 12px 10px;
	}
	.bsc-timer {
		gap: 10px;
	}
}
