/* ==========================================================================
   Expedition Availability Widget  [expedition_availability]
   Provides base layout & typography for the widget elements.
   Visual styles (colours, fonts, background) are applied via Kadence.
   ========================================================================== */

/* ── Outer wrapper ── */
.nd-widget {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* ── Badge (top-right corner) ── */
.nd-badge {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	padding: 0.2em 0.75em;
	border-radius: 2em;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	line-height: 1.6;
	white-space: nowrap;
}

.nd-badge--available {
	background-color: #22c55e;
	color: #fff;
}

.nd-badge--sold {
	background-color: #ef4444;
	color: #fff;
}

.nd-badge--closed {
	background-color: #6b7280;
	color: #fff;
}

.nd-badge--waitlist {
	background-color: #f97316;
	color: #fff;
}

/* ── Departure row ── */
.nd-departure {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.nd-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
    color: #fff;
}

.nd-date {
	display: block;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
    color: #fff;
}

/* ── Spots row ── */
.nd-spots {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
    color: #fff;
}

.nd-spots-label {
	font-size: 0.75rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.nd-spots-value {
	font-size: 1rem;
	font-weight: 700;
    color: #ff720d;
}

/* ── Status message (Sold Out / Closed / Join the List) ── */
.nd-spots--message {
	display: block;
}

.nd-spots-message {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
