/* KF Dienstleister Widget */

.kf-dienstleister-widget {
	width: 100%;
}

.kf-dw-heading {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 1.25em;
	color: #333;
}

.kf-dw-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}

.kf-dw-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.kf-dw-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
	.kf-dw-cols-2,
	.kf-dw-cols-3 {
		grid-template-columns: 1fr;
	}
}

.kf-dw-item {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35em;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Trennlinie-Variante: Linie unter dem ganzen Item */
.kf-dw-divider-line .kf-dw-item {
	padding-bottom: 12px;
	border-bottom: 1px solid #e8e8e8;
}

.kf-dw-divider-line .kf-dw-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.kf-dw-kategorie {
	color: #888;
	white-space: nowrap;
}

.kf-dw-sep {
	color: #bbb;
	font-size: 0.85em;
}

.kf-dw-name {
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

a.kf-dw-name:hover {
	border-bottom-color: currentColor;
}
