.ets-termine-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
	margin: 24px 0;
}

.ets-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ets-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.ets-card-img {
	height: 190px;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
}

.ets-card-body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ets-badge {
	display: inline-block;
	background: #8b2fc9;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 6px;
	width: fit-content;
}

.ets-card-body h3 {
	margin: 0 0 4px;
	font-size: 1.25rem;
	line-height: 1.3;
}

.ets-meta {
	margin: 0;
	font-size: 0.92rem;
	color: #444;
}

.ets-plaetze {
	color: #8b2fc9;
	font-weight: 600;
}

.ets-btn {
	margin-top: 14px;
	display: inline-block;
	text-align: center;
	background: linear-gradient(135deg, #a53ce0, #7c1fb0);
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 999px;
	transition: opacity 0.2s ease;
}

.ets-btn:hover {
	opacity: 0.9;
}

.nt-plaetze {
	display: block;
	color: #8b2fc9;
	font-weight: 600;
	font-size: 0.85em;
	margin-top: 2px;
}

.ets-empty {
	text-align: center;
	color: #666;
	padding: 40px 0;
}
