/* =========================================================================
   NaturTraum Termine – helles, minimalistisches Design
   ========================================================================= */

.nt-termine {
	--nt-border: #ececec;
	--nt-text: #2b2b2b;
	--nt-muted: #6b6b6b;
	--nt-radius: 12px;
	color: var(--nt-text);
	font-family: inherit;
}

.nt-termine *,
.nt-termine *::before,
.nt-termine *::after {
	box-sizing: border-box;
}

/* ---- Datum-Box ---- */
.nt-datebox {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	padding: 8px 6px;
	background: #fff;
	border: 1px solid var(--nt-border);
	border-radius: 10px;
	line-height: 1;
	flex: 0 0 auto;
}
.nt-datebox .nt-day {
	font-size: 22px;
	font-weight: 700;
}
.nt-datebox .nt-month {
	margin-top: 3px;
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--nt-muted);
}

/* ---- Kategorie-Badge ---- */
.nt-badge {
	display: inline-block;
	padding: 3px 11px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

/* ---- Titel / Meta ---- */
.nt-title {
	margin: 8px 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}
.nt-meta {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
	color: var(--nt-muted);
}
.nt-preis {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
}
.nt-kurz {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--nt-muted);
}

/* =========================================================================
   Widget L – Featured + Liste
   ========================================================================= */
.nt-l {
	background: #fff;
	border: 1px solid var(--nt-border);
	border-radius: var(--nt-radius);
	padding: 18px;
}

.nt-featured-img {
	margin-bottom: 14px;
	border-radius: 10px;
	overflow: hidden;
}
.nt-featured-img img {
	display: block;
	width: 100%;
	height: 300px;
	max-height: 40vh;
	object-fit: cover;
}
@media (max-width: 600px) {
	.nt-featured-img img {
		height: 200px;
	}
}

.nt-featured-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.nt-featured-headtext {
	min-width: 0;
}
.nt-featured-headtext .nt-title {
	margin-top: 6px;
}

/* ---- Karten (weitere Termine) ---- */
/* ---- Slider (Karussell) ---- */
.nt-carousel {
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--nt-border);
}
.nt-cards {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	padding: 2px 2px 8px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.nt-cards:focus-visible {
	outline: 2px solid var(--nt-border);
	outline-offset: 2px;
}
.nt-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--nt-border);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow .15s ease, transform .15s ease;
}
.nt-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
	transform: translateY(-2px);
}
.nt-card-img img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.nt-card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px;
	flex: 1;
}
.nt-card-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.nt-card-headtext {
	min-width: 0;
}
.nt-card-title {
	margin: 4px 0 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}
.nt-card .nt-meta {
	margin-top: 0;
}
.nt-card .nt-kurz {
	margin: 4px 0 0;
}
/* Buchungs-Button (aus dem Shop-Add-on) immer an die Karten-Unterkante */
.nt-card .nts-featured-cta {
	margin-top: auto;
	padding-top: 6px;
}

/* Pfeil-Buttons */
.nt-arrow {
	position: absolute;
	top: 58%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	color: var(--nt-text);
	background: #fff;
	border: 1px solid var(--nt-border);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
	transition: opacity .15s ease;
}
.nt-prev { left: -8px; }
.nt-next { right: -8px; }
.nt-arrow[disabled],
.nt-arrow[hidden] {
	opacity: 0;
	pointer-events: none;
}

/* ---- Liste (klassisch, weiterhin verfügbar) ---- */
.nt-list {
	list-style: none;
	margin: 16px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid var(--nt-border);
}
.nt-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 0;
}
.nt-list-item + .nt-list-item {
	border-top: 1px solid var(--nt-border);
}
.nt-list-item .nt-datebox {
	min-width: 46px;
	padding: 6px 5px;
}
.nt-list-item .nt-day {
	font-size: 18px;
}
.nt-list-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.nt-list-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

/* ---- CTA ---- */
.nt-cta {
	display: inline-block;
	margin-top: 16px;
	padding: 9px 18px;
	border: 1px solid var(--nt-border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--nt-text);
	transition: background .15s ease;
}
.nt-cta:hover {
	background: #f6f6f6;
}

/* =========================================================================
   Widget S – Nächster Termin
   ========================================================================= */
.nt-s {
	background: #fff;
	border: 1px solid var(--nt-border);
	border-radius: var(--nt-radius);
	padding: 12px;
}
.nt-s-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nt-s-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.nt-s-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}
.nt-s .nt-meta {
	margin-top: 2px;
	font-size: 13px;
}
