/*!
 * Der Bauer hat's – Frontend
 * Eigenständiges Stylesheet. Alles ist auf `.dbh` gescoped, damit weder das Theme
 * noch andere Plugins nötig sind und umgekehrt nichts überschrieben wird.
 */

/* ==========================================================================
   1. Design-Tokens
   ========================================================================== */

.dbh {
	/* Marke – wird von den Plugin-Einstellungen überschrieben */
	--dbh-primary: #be6fa7;
	--dbh-primary-rgb: 190, 111, 167;
	--dbh-primary-dark: #8a5079;
	--dbh-accent: #98bb1d;
	--dbh-accent-rgb: 152, 187, 29;

	/*
	 * Barrierefreie Varianten der Markenfarben (WCAG AA).
	 * `-ink`   = Textfarbe auf hellem Grund (≥ 4,5:1)
	 * `-solid` = Füllfarbe für weiße Schrift (≥ 4,5:1)
	 * Werden von den Plugin-Einstellungen aus den Markenfarben berechnet.
	 */
	--dbh-primary-ink: #854e75;
	--dbh-primary-solid: #a25e8e;
	--dbh-accent-ink: #546710;
	--dbh-accent-solid: #637a13;

	/* Flächen */
	--dbh-surface: #ffffff;
	--dbh-surface-alt: #f5f8ec;
	--dbh-surface-muted: #f7f7f8;

	/* Text */
	--dbh-text: #404040;
	--dbh-text-muted: #5f5f5f;
	--dbh-heading: var(--dbh-primary-ink);

	/* Linien */
	--dbh-border: #e9e9e9;
	--dbh-border-light: #f2f2f2;

	/* Radien */
	--dbh-radius-xs: 8px;
	--dbh-radius-sm: 10px;
	--dbh-radius-md: 12px;
	--dbh-radius-lg: 16px;
	--dbh-radius-pill: 999px;

	/* Schatten */
	--dbh-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
	--dbh-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
	--dbh-shadow-lg: 0 14px 30px -12px rgba(0, 0, 0, 0.22);

	/* Abstände */
	--dbh-gap: 24px;
	--dbh-gap-sm: 14px;

	/* Typo – `inherit` übernimmt die Theme-Schriften */
	--dbh-font-body: inherit;
	--dbh-font-heading: inherit;
	--dbh-fs-sm: 0.8125rem;
	--dbh-fs-base: 0.9375rem;
	--dbh-fs-lg: 1.125rem;

	/* Layout */
	--dbh-sidebar-w: 300px;
	--dbh-sticky-offset: 60px;
	--dbh-map-height: 620px;

	--dbh-focus: 0 0 0 3px rgba(var(--dbh-primary-rgb), 0.35);

	box-sizing: border-box;
	color: var(--dbh-text);
	font-family: var(--dbh-font-body);
	font-size: var(--dbh-fs-base);
	line-height: 1.55;
}

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

/* `hidden` muss gewinnen – sonst setzen unsere eigenen display-Regeln es außer Kraft. */
.dbh [hidden] {
	display: none !important;
}

/* ==========================================================================
   2. Grundelemente
   ========================================================================== */

.dbh a {
	color: var(--dbh-primary-ink);
	text-decoration: none;
}

.dbh a:hover,
.dbh a:focus-visible {
	text-decoration: underline;
}

.dbh :focus-visible {
	outline: 2px solid var(--dbh-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

.dbh ul,
.dbh ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dbh p {
	margin: 0 0 0.75em;
}

.dbh p:last-child {
	margin-bottom: 0;
}

.dbh h1,
.dbh h2,
.dbh h3,
.dbh h4 {
	font-family: var(--dbh-font-heading);
	color: var(--dbh-heading);
	margin: 0;
	line-height: 1.2;
}

.dbh img {
	max-width: 100%;
	height: auto;
	display: block;
}

.dbh .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.dbh-icon {
	flex: none;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
}

/* Skip-Link */

.dbh-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--dbh-primary-solid);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 var(--dbh-radius-xs) 0;
	z-index: 50;
}

.dbh-skip:focus {
	left: 0;
	text-decoration: none;
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.dbh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: var(--dbh-radius-xs);
	background: var(--dbh-surface);
	color: var(--dbh-text);
	font: inherit;
	font-size: var(--dbh-fs-base);
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dbh-btn:hover {
	text-decoration: none;
}

.dbh-btn--primary {
	background: var(--dbh-primary-solid);
	border-color: var(--dbh-primary-solid);
	color: #fff;
}

.dbh-btn--primary:hover,
.dbh-btn--primary:focus-visible {
	background: var(--dbh-primary-dark);
	border-color: var(--dbh-primary-dark);
	color: #fff;
}

.dbh-btn--outline {
	background: var(--dbh-surface);
	border-color: var(--dbh-border);
	color: var(--dbh-primary-ink);
}

.dbh-btn--outline:hover,
.dbh-btn--outline:focus-visible {
	border-color: var(--dbh-primary);
	background: rgba(var(--dbh-primary-rgb), 0.06);
}

.dbh-btn--ghost {
	background: transparent;
	border-color: var(--dbh-border);
	color: var(--dbh-text);
}

.dbh-btn--ghost:hover,
.dbh-btn--ghost:focus-visible {
	border-color: var(--dbh-primary);
	color: var(--dbh-primary);
}

.dbh-btn--block {
	display: flex;
	width: 100%;
}

/* ==========================================================================
   4. Layout Marktplatz
   ========================================================================== */

.dbh-marktplatz {
	position: relative;
}

/*
 * Flexbox statt Grid: die Spalten brechen automatisch um, sobald der
 * *Container* zu schmal wird – unabhängig von der Fensterbreite. So sieht der
 * Marktplatz auch in einer schmalen Theme-Spalte richtig aus.
 */
.dbh-layout {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dbh-gap);
	align-items: flex-start;
}

.dbh-main {
	flex: 999 1 340px;
	min-width: 0;
}

/* ==========================================================================
   5. Sidebar / Filter – sticky
   ========================================================================== */

.dbh-sidebar {
	flex: 1 1 var(--dbh-sidebar-w);
	min-width: 0;
	max-width: 100%;
}

.dbh-sidebar.is-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: var(--dbh-sticky-offset);
	align-self: flex-start;
	max-height: calc(100vh - var(--dbh-sticky-offset) - 16px);
	display: flex;
	flex-direction: column;
}

.dbh-filters {
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: var(--dbh-surface);
	border: 1px solid var(--dbh-border-light);
	border-radius: var(--dbh-radius-sm);
	box-shadow: var(--dbh-shadow-sm);
	overflow: hidden;
}

.dbh-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--dbh-border-light);
	background: var(--dbh-surface);
}

.dbh-filters__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--dbh-fs-lg);
	font-weight: 500;
}

.dbh-filters__close {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: var(--dbh-radius-xs);
	background: var(--dbh-surface-muted);
	color: var(--dbh-text);
	cursor: pointer;
}

.dbh-filters__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 4px 16px 8px;
	scrollbar-width: thin;
}

.dbh-filters__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 16px 16px;
	border-top: 1px solid var(--dbh-border-light);
	background: var(--dbh-surface);
}

.dbh-filters__foot .dbh-btn {
	flex: 1 1 auto;
	min-height: 40px;
	padding: 8px 14px;
	font-size: var(--dbh-fs-sm);
}

/* Ohne JS ist „Filter anwenden“ der Absende-Knopf; mit JS filtern wir live. */
.dbh-js .dbh-filters__apply {
	display: none;
}

/* Filtergruppen */

.dbh-filter {
	padding: 14px 0;
	border-bottom: 1px solid var(--dbh-border-light);
}

.dbh-filter:last-child {
	border-bottom: 0;
}

.dbh-filter__label {
	display: block;
	margin-bottom: 6px;
	font-size: var(--dbh-fs-sm);
	font-weight: 600;
	color: var(--dbh-text);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.dbh-filter__hint {
	margin: 6px 0 0;
	font-size: 0.75rem;
	color: var(--dbh-text-muted);
}

.dbh-filter__heading {
	margin: 0;
	font-size: inherit;
}

.dbh-filter__toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 4px 0;
	border: 0;
	background: none;
	color: var(--dbh-text);
	font: inherit;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.dbh-filter__toggle-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
}

.dbh-filter__toggle-label .dbh-icon {
	color: var(--dbh-primary);
}

.dbh-filter__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: var(--dbh-radius-pill);
	background: var(--dbh-primary-solid);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
}

.dbh-filter__chevron {
	transition: transform 0.2s ease;
	color: var(--dbh-text-muted);
}

.dbh-filter__toggle[aria-expanded="true"] .dbh-filter__chevron {
	transform: rotate(180deg);
}

.dbh-filter__panel {
	padding-top: 10px;
}

.dbh-filter__find {
	width: 100%;
	margin-bottom: 8px;
	padding: 8px 10px;
	border: 1px solid var(--dbh-border);
	border-radius: var(--dbh-radius-xs);
	background: var(--dbh-surface);
	color: var(--dbh-text);
	font: inherit;
	font-size: var(--dbh-fs-sm);
}

.dbh-filter__list.is-scrollable {
	max-height: 320px;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 4px;
	scrollbar-width: thin;
}

.dbh-filter__item.is-empty,
.dbh-check.is-empty {
	opacity: 0.45;
}

.dbh-filter__item[hidden],
.dbh-filter__group[hidden] {
	display: none;
}

/* Gruppen im Angebots-Filter */

.dbh-filter__group + .dbh-filter__group {
	margin-top: 2px;
	padding-top: 2px;
	border-top: 1px solid var(--dbh-border-soft, var(--dbh-border));
}

.dbh-check--group {
	font-weight: 600;
}

.dbh-filter__sub {
	margin: 0 0 4px;
	padding: 0 0 0 18px;
	list-style: none;
	border-left: 2px solid var(--dbh-border-soft, var(--dbh-border));
}

.dbh-filter__sub .dbh-check {
	padding-top: 4px;
	padding-bottom: 4px;
	font-size: var(--dbh-fs-sm);
}

.dbh-filter__sub .dbh-check__box {
	width: 17px;
	height: 17px;
	border-radius: 5px;
}

.dbh-filter__sub .dbh-check__box .dbh-icon {
	width: 11px;
	height: 11px;
}

/* Checkbox */

.dbh-check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 6px 4px;
	border-radius: var(--dbh-radius-xs);
	cursor: pointer;
	font-size: var(--dbh-fs-base);
	line-height: 1.35;
}

.dbh-check:hover {
	background: rgba(var(--dbh-primary-rgb), 0.05);
}

.dbh-check input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	margin: 0;
}

.dbh-check__box {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1.5px solid var(--dbh-border);
	border-radius: 6px;
	background: var(--dbh-surface);
	color: transparent;
	transition: background-color 0.12s ease, border-color 0.12s ease;
}

.dbh-check__box .dbh-icon {
	width: 13px;
	height: 13px;
}

.dbh-check input:checked + .dbh-check__box {
	background: var(--dbh-primary-solid);
	border-color: var(--dbh-primary-solid);
	color: #fff;
}

.dbh-check input:focus-visible + .dbh-check__box {
	outline: 2px solid var(--dbh-primary);
	outline-offset: 2px;
}

.dbh-check input:disabled ~ .dbh-check__text {
	color: var(--dbh-text-muted);
}

.dbh-check__text {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.dbh-check__count {
	flex: none;
	min-width: 24px;
	padding: 1px 6px;
	border-radius: var(--dbh-radius-pill);
	background: var(--dbh-surface-muted);
	color: var(--dbh-text-muted);
	font-size: 0.6875rem;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

/* Suchfeld */

.dbh-search {
	position: relative;
	display: flex;
	align-items: center;
}

.dbh-search__icon {
	position: absolute;
	left: 11px;
	width: 16px;
	height: 16px;
	color: var(--dbh-text-muted);
	pointer-events: none;
}

.dbh-search input {
	width: 100%;
	min-height: 44px;
	padding: 10px 38px 10px 34px;
	border: 1px solid var(--dbh-border);
	border-radius: var(--dbh-radius-xs);
	background: var(--dbh-surface);
	color: var(--dbh-text);
	font: inherit;
	font-size: var(--dbh-fs-base);
}

.dbh-search input::-webkit-search-cancel-button {
	display: none;
}

.dbh-search input:focus {
	border-color: var(--dbh-primary);
	box-shadow: var(--dbh-focus);
	outline: none;
}

.dbh-search__clear {
	position: absolute;
	right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: var(--dbh-surface-muted);
	color: var(--dbh-text);
	cursor: pointer;
}

/* ==========================================================================
   6. Toolbar
   ========================================================================== */

.dbh-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--dbh-gap-sm);
	margin-bottom: var(--dbh-gap-sm);
	padding: 10px 14px;
	background: var(--dbh-surface);
	border: 1px solid var(--dbh-border-light);
	border-radius: var(--dbh-radius-sm);
	box-shadow: var(--dbh-shadow-sm);
}

.dbh-toolbar__count {
	margin: 0;
	font-size: var(--dbh-fs-base);
	color: var(--dbh-text-muted);
}

.dbh-toolbar__count strong {
	color: var(--dbh-primary-ink);
	font-size: var(--dbh-fs-lg);
	font-weight: 700;
}

.dbh-toolbar__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.dbh-toolbar__filter {
	display: none;
	min-height: 40px;
	padding: 8px 14px;
	font-size: var(--dbh-fs-sm);
}

/* Ansichtswechsel */

.dbh-viewswitch {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	background: var(--dbh-surface-muted);
	border-radius: var(--dbh-radius-sm);
}

.dbh-viewswitch__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 40px;
	height: 36px;
	padding: 0 10px;
	border-radius: var(--dbh-radius-xs);
	color: var(--dbh-text);
	font-size: var(--dbh-fs-sm);
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.dbh-viewswitch__item:hover {
	background: rgba(var(--dbh-primary-rgb), 0.1);
	text-decoration: none;
}

.dbh-viewswitch__item.is-active {
	background: var(--dbh-primary-solid);
	color: #fff;
}

.dbh-viewswitch__label {
	display: none;
}

@media (min-width: 900px) {
	.dbh-viewswitch__label {
		display: inline;
	}
}

/* Sortierung */

.dbh-sort {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dbh-sort__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--dbh-fs-sm);
	color: var(--dbh-text-muted);
	white-space: nowrap;
}

.dbh-sort__label span {
	display: none;
}

@media (min-width: 700px) {
	.dbh-sort__label span {
		display: inline;
	}
}

.dbh-sort__select {
	min-height: 40px;
	padding: 8px 30px 8px 12px;
	border: 1px solid var(--dbh-border);
	border-radius: var(--dbh-radius-xs);
	background-color: var(--dbh-surface);
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 15px) calc(50% + 1px), calc(100% - 10px) calc(50% + 1px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	color: var(--dbh-text);
	font: inherit;
	font-size: var(--dbh-fs-sm);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

/* ==========================================================================
   7. Chips
   ========================================================================== */

.dbh-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: var(--dbh-gap-sm);
}

.dbh-chip__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	padding: 5px 10px;
	border: 1px solid rgba(var(--dbh-primary-rgb), 0.3);
	border-radius: var(--dbh-radius-pill);
	background: rgba(var(--dbh-primary-rgb), 0.08);
	color: var(--dbh-primary);
	font: inherit;
	font-size: var(--dbh-fs-sm);
	cursor: pointer;
}

.dbh-chip__btn:hover {
	background: rgba(var(--dbh-primary-rgb), 0.16);
}

.dbh-chip__x {
	width: 12px;
	height: 12px;
}

.dbh-chip__btn--reset {
	background: transparent;
	border-style: dashed;
}

/* ==========================================================================
   8. Ergebnisse
   ========================================================================== */

.dbh-results {
	position: relative;
	min-height: 200px;
	scroll-margin-top: 90px;
}

.dbh-results:focus {
	outline: none;
}

.dbh-loading {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 60px;
	background: rgba(255, 255, 255, 0.72);
	border-radius: var(--dbh-radius-md);
}

.dbh-results[aria-busy="true"] .dbh-loading {
	display: flex;
}

.dbh-results[aria-busy="true"] .dbh-items-wrap {
	opacity: 0.45;
}

.dbh-spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(var(--dbh-primary-rgb), 0.25);
	border-top-color: var(--dbh-primary);
	border-radius: 50%;
	animation: dbh-spin 0.8s linear infinite;
}

@keyframes dbh-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dbh-spinner {
		animation-duration: 2s;
	}

	.dbh * {
		transition-duration: 0.01ms !important;
	}
}

.dbh-items {
	display: grid;
	gap: var(--dbh-gap-sm);
}

.dbh-items--grid {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.dbh-items--list {
	grid-template-columns: 1fr;
}

/* ==========================================================================
   9. Karte (Listing-Kachel)
   ========================================================================== */

.dbh-card {
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--dbh-surface);
	border: 1px solid var(--dbh-border-light);
	border-radius: var(--dbh-radius-md);
	box-shadow: var(--dbh-shadow);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dbh-card:hover,
.dbh-card:focus-within {
	transform: translateY(-2px);
	box-shadow: var(--dbh-shadow-lg);
}

.dbh-card__media {
	position: relative;
	flex: none;
	background: var(--dbh-surface-alt);
}

.dbh-card__media-link {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.dbh-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dbh-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(var(--dbh-accent-rgb), 0.55);
}

.dbh-card__placeholder .dbh-icon {
	width: 44px;
	height: 44px;
}

.dbh-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 auto;
	padding: 14px 16px 12px;
}

.dbh-card__title {
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--dbh-accent-ink);
}

.dbh-card__title a {
	color: inherit;
}

.dbh-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.dbh-card__sub {
	margin: -4px 0 0;
	font-size: var(--dbh-fs-sm);
	color: var(--dbh-text-muted);
}

.dbh-card__meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: var(--dbh-fs-sm);
	color: var(--dbh-text-muted);
}

.dbh-card__meta-item {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	line-height: 1.35;
}

.dbh-card__meta-item .dbh-icon {
	margin-top: 2px;
	color: var(--dbh-primary);
}

.dbh-card__meta-item a {
	position: relative;
	z-index: 2;
	color: inherit;
}

.dbh-card__excerpt {
	margin: 0;
	font-size: var(--dbh-fs-base);
	color: var(--dbh-text);
}

.dbh-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--dbh-border-light);
	font-size: var(--dbh-fs-sm);
}

.dbh-card__cats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.dbh-card__cat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	position: relative;
	z-index: 2;
	color: var(--dbh-primary-ink);
}

.dbh-card__cat-more {
	position: relative;
	z-index: 3;
}

.dbh-card__cat-more summary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 22px;
	padding: 0 7px;
	border-radius: var(--dbh-radius-pill);
	background: var(--dbh-surface-muted);
	color: var(--dbh-text-muted);
	font-size: 0.6875rem;
	cursor: pointer;
	list-style: none;
}

.dbh-card__cat-more summary::-webkit-details-marker {
	display: none;
}

.dbh-card__cat-list {
	position: absolute;
	right: 0;
	bottom: calc(100% + 6px);
	z-index: 10;
	min-width: 170px;
	padding: 8px 10px;
	background: var(--dbh-surface);
	border: 1px solid var(--dbh-border);
	border-radius: var(--dbh-radius-xs);
	box-shadow: var(--dbh-shadow-lg);
}

.dbh-card__cat-list li + li {
	margin-top: 4px;
}


/* Listenansicht */

.dbh-items--list .dbh-card {
	flex-direction: row;
}

.dbh-items--list .dbh-card__media {
	width: 230px;
	max-width: 38%;
}

.dbh-items--list .dbh-card__media-link {
	height: 100%;
	aspect-ratio: auto;
	min-height: 180px;
}

@media (max-width: 599px) {
	.dbh-items--list .dbh-card {
		flex-direction: column;
	}

	.dbh-items--list .dbh-card__media {
		width: 100%;
		max-width: none;
	}

	.dbh-items--list .dbh-card__media-link {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}
}

/* Badge */

.dbh-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: var(--dbh-radius-pill);
	background: var(--dbh-accent-solid);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
}

.dbh-card .dbh-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	box-shadow: var(--dbh-shadow-sm);
}

.dbh-badge--neu {
	background: #1364b5;
}

.dbh-badge--empfohlen {
	background: var(--dbh-primary-solid);
}

.dbh-badge--bio {
	background: #2f7a2f;
}

/* Leerer Zustand */

.dbh-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 48px 24px;
	background: var(--dbh-surface);
	border: 1px dashed var(--dbh-border);
	border-radius: var(--dbh-radius-md);
	text-align: center;
}

.dbh-empty__icon {
	width: 44px;
	height: 44px;
	color: var(--dbh-accent);
}

.dbh-empty__title {
	font-size: var(--dbh-fs-lg);
}

.dbh-empty__text {
	max-width: 46ch;
	color: var(--dbh-text-muted);
}

/* ==========================================================================
   10. Pagination
   ========================================================================== */

.dbh-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: var(--dbh-gap);
}

.dbh-pagination__status {
	margin: 0;
	font-size: var(--dbh-fs-sm);
	color: var(--dbh-text-muted);
}

.dbh-pagination__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.dbh-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--dbh-border);
	border-radius: var(--dbh-radius-xs);
	background: var(--dbh-surface);
	color: var(--dbh-text);
	font-size: var(--dbh-fs-sm);
	text-decoration: none;
}

.dbh-pagination__link:hover {
	border-color: var(--dbh-primary);
	color: var(--dbh-primary);
	text-decoration: none;
}

.dbh-pagination__link.is-current {
	background: var(--dbh-primary-solid);
	border-color: var(--dbh-primary-solid);
	color: #fff;
	font-weight: 700;
}

/* Nicht per opacity ausgrauen – das unterschreitet den Kontrastmindestwert. */
.dbh-pagination__link.is-disabled {
	color: var(--dbh-text-muted);
	border-color: var(--dbh-border-light);
	background: var(--dbh-surface);
	cursor: not-allowed;
}

.dbh-pagination__gap {
	padding: 0 4px;
	color: var(--dbh-text-muted);
}

/* ==========================================================================
   11. Karte (Map)
   ========================================================================== */

.dbh-mapwrap[hidden] {
	display: none;
}

.dbh-map {
	height: var(--dbh-map-height);
	min-height: 360px;
	border-radius: var(--dbh-radius-md);
	border: 1px solid var(--dbh-border-light);
	box-shadow: var(--dbh-shadow-sm);
	overflow: hidden;
	z-index: 0;
}

.dbh-map__hint {
	margin-top: 8px;
	font-size: 0.75rem;
	color: var(--dbh-text-muted);
}

.dbh-marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50% 50% 50% 4px;
	transform: rotate(-45deg);
	background: var(--dbh-primary, #be6fa7);
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.dbh-marker span {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #fff;
}

.leaflet-container .dbh-popup {
	width: 220px;
}

.dbh-popup__img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: var(--dbh-radius-xs);
	margin-bottom: 8px;
}

.dbh-popup__title {
	display: block;
	margin-bottom: 4px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.25;
}

.dbh-popup__addr {
	margin: 0 0 8px;
	font-size: 0.8125rem;
	color: #666;
}

.dbh-popup__link {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
}

.leaflet-container .marker-cluster-small div,
.leaflet-container .marker-cluster-medium div,
.leaflet-container .marker-cluster-large div {
	background: var(--dbh-primary, #be6fa7);
	color: #fff;
	font-weight: 700;
}

.leaflet-container .marker-cluster-small,
.leaflet-container .marker-cluster-medium,
.leaflet-container .marker-cluster-large {
	background: rgba(var(--dbh-primary-rgb, 190, 111, 167), 0.35);
}

/* ==========================================================================
   12. Detailseite
   ========================================================================== */

.dbh-listing {
	padding: var(--dbh-gap) 0;
}

.dbh-listing__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 16px;
}

.dbh-listing__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 18px;
}

.dbh-listing__back {
	min-height: 40px;
	padding: 8px 14px;
	font-size: var(--dbh-fs-sm);
}

.dbh-listing__header {
	margin-bottom: var(--dbh-gap);
}

.dbh-listing__title {
	font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem);
	font-weight: 700;
	color: var(--dbh-accent-ink);
	margin-bottom: 8px;
}

.dbh-listing__sub {
	margin: 0 0 12px;
	font-size: var(--dbh-fs-lg);
	color: var(--dbh-text-muted);
}

.dbh-listing__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 16px;
	font-size: var(--dbh-fs-base);
}

.dbh-listing__quick-item {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	color: var(--dbh-text-muted);
}

.dbh-listing__quick-item .dbh-icon {
	margin-top: 4px;
	color: var(--dbh-primary);
}

.dbh-listing__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dbh-listing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: var(--dbh-gap);
	align-items: start;
}

.dbh-listing__col-side {
	position: -webkit-sticky;
	position: sticky;
	top: var(--dbh-sticky-offset);
}

/* Galerie */

.dbh-gallery-view {
	margin-bottom: var(--dbh-gap);
}

.dbh-gallery-view__stage {
	position: relative;
	background: var(--dbh-surface-alt);
	border-radius: var(--dbh-radius-md);
	overflow: hidden;
}

.dbh-gallery-view__slide {
	margin: 0;
}

.dbh-gallery-view__slide[hidden] {
	display: none;
}

.dbh-gallery-view__img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.dbh-gallery-view__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.dbh-gallery-view__thumb {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--dbh-radius-xs);
	background: none;
	overflow: hidden;
	cursor: pointer;
}

.dbh-gallery-view__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dbh-gallery-view__thumb.is-active {
	border-color: var(--dbh-primary);
}

/* Panels */

.dbh-panel {
	margin-bottom: 20px;
	background: var(--dbh-surface);
	border: 1px solid var(--dbh-border-light);
	border-radius: var(--dbh-radius-md);
	box-shadow: var(--dbh-shadow-sm);
	overflow: hidden;
}

.dbh-panel__title {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 14px 20px;
	border-bottom: 1px solid var(--dbh-border);
	font-size: var(--dbh-fs-lg);
	font-weight: 600;
	color: var(--dbh-text);
}

.dbh-panel__title .dbh-icon {
	color: var(--dbh-primary);
}

.dbh-panel__body {
	padding: 18px 20px;
}

.dbh-prose > *:first-child {
	margin-top: 0;
}

.dbh-prose > *:last-child {
	margin-bottom: 0;
}

.dbh-prose h2,
.dbh-prose h3 {
	margin: 1.2em 0 0.4em;
	font-size: 1.125rem;
}

.dbh-prose ul {
	margin: 0 0 1em;
	padding-left: 1.2em;
	list-style: disc;
}

/* Öffnungszeiten */

.dbh-panel--hours .dbh-panel__title {
	flex-wrap: wrap;
	gap: 9px 12px;
}

.dbh-openstate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 4px 11px;
	border-radius: var(--dbh-radius-pill);
	font-size: var(--dbh-fs-sm);
	font-weight: 600;
	white-space: nowrap;
}

.dbh-openstate__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	flex: none;
}

.dbh-openstate--open {
	background: #e3f3e0;
	color: #1f6b25;
}

.dbh-openstate--closed {
	background: #f7e6e6;
	color: #9b2226;
}

.dbh-openstate--appointment {
	background: var(--dbh-surface-muted);
	color: var(--dbh-text);
}

.dbh-hourstable {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--dbh-fs-base);
}

.dbh-hourstable__row + .dbh-hourstable__row th,
.dbh-hourstable__row + .dbh-hourstable__row td {
	border-top: 1px solid var(--dbh-border-light);
}

.dbh-hourstable__day {
	padding: 7px 14px 7px 0;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
	vertical-align: top;
}

.dbh-hourstable__time {
	padding: 7px 0;
	text-align: right;
	font-variant-numeric: tabular-nums;
	vertical-align: top;
}

.dbh-hourstable__row.is-today .dbh-hourstable__day,
.dbh-hourstable__row.is-today .dbh-hourstable__time {
	font-weight: 700;
	color: var(--dbh-text);
}

.dbh-hourstable__row.is-closed .dbh-hourstable__time {
	color: var(--dbh-text-muted);
}

.dbh-hourstable__today {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 7px;
	border-radius: var(--dbh-radius-pill);
	background: rgba(var(--dbh-primary-rgb), 0.12);
	color: var(--dbh-primary-ink);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.dbh-hours-note {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid var(--dbh-border-light);
	font-size: var(--dbh-fs-sm);
	color: var(--dbh-text-muted);
}

.dbh-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: var(--dbh-radius-xs);
	background: rgba(var(--dbh-primary-rgb), 0.07);
	color: var(--dbh-text);
	font-size: var(--dbh-fs-sm);
}

.dbh-note .dbh-icon {
	margin-top: 3px;
	color: var(--dbh-primary);
}

.dbh-deflist {
	display: grid;
	grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
	gap: 8px 16px;
	margin: 0;
}

.dbh-deflist dt {
	font-weight: 600;
	color: var(--dbh-text);
}

.dbh-deflist dd {
	margin: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 480px) {
	.dbh-deflist {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.dbh-deflist dd {
		margin-bottom: 8px;
	}
}

.dbh-taglist {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.dbh-taglist__item {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border-radius: var(--dbh-radius-pill);
	background: var(--dbh-surface-muted);
	color: var(--dbh-text);
	font-size: var(--dbh-fs-sm);
}

.dbh-taglist__item--link:hover {
	background: rgba(var(--dbh-primary-rgb), 0.14);
	color: var(--dbh-primary);
	text-decoration: none;
}

/* Kontaktliste: Bezeichnung mit Icon, Wert darunter über die volle Breite */

.dbh-contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.dbh-contact__item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--dbh-border-light);
}

.dbh-contact__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.dbh-contact__label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: var(--dbh-fs-sm);
	font-weight: 600;
	color: var(--dbh-text-muted);
	letter-spacing: 0.01em;
}

.dbh-contact__label .dbh-icon {
	width: 15px;
	height: 15px;
	color: var(--dbh-primary-ink);
}

.dbh-contact__value {
	font-size: var(--dbh-fs-base);
	line-height: 1.45;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.dbh-contact__value a {
	overflow-wrap: anywhere;
}

.dbh-icon--ext {
	width: 12px;
	height: 12px;
	margin-left: 2px;
	opacity: 0.7;
	vertical-align: -0.1em;
}

.dbh-sociallist {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
}

.dbh-sociallist a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.dbh-single-map {
	height: 240px;
	margin: 16px 0 12px;
	border-radius: var(--dbh-radius-md);
	border: 1px solid var(--dbh-border-light);
	overflow: hidden;
	z-index: 0;
}

/* Ähnliche Einträge */

.dbh-related {
	margin-top: 36px;
}

.dbh-related__title {
	margin-bottom: 14px;
	font-size: 1.375rem;
	font-weight: 600;
}

/* Archiv-Kopf */

.dbh-archive-head {
	max-width: 1180px;
	margin: 0 auto;
	padding: var(--dbh-gap) 16px 0;
}

.dbh-archive-head__title {
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem);
	margin-bottom: 8px;
}

/* ==========================================================================
   13. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.dbh-listing__grid {
		grid-template-columns: 1fr;
	}

	.dbh-listing__col-side {
		position: static;
	}
}

@media (max-width: 860px) {
	.dbh-layout {
		grid-template-columns: 1fr;
	}

	.dbh-toolbar__filter {
		display: inline-flex;
	}

	/* Sidebar wird zum Off-Canvas-Panel */
	.dbh-sidebar {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 100000;
		width: min(340px, 92vw);
		max-height: none;
		transform: translateX(-102%);
		transition: transform 0.25s ease;
		box-shadow: var(--dbh-shadow-lg);
	}

	.dbh-sidebar.is-open {
		transform: translateX(0);
	}

	.dbh-sidebar .dbh-filters {
		height: 100%;
		border-radius: 0;
		border: 0;
	}

	.dbh-filters__close {
		display: inline-flex;
	}

	.dbh-backdrop {
		position: fixed;
		inset: 0;
		z-index: 99999;
		background: rgba(0, 0, 0, 0.45);
		border: 0;
		cursor: pointer;
	}
}

@media (max-width: 560px) {
	.dbh-toolbar {
		gap: 10px;
	}

	.dbh-toolbar__actions {
		width: 100%;
		justify-content: space-between;
	}

	.dbh-items--grid {
		grid-template-columns: 1fr;
	}

	.dbh-listing__actions .dbh-btn {
		flex: 1 1 140px;
	}
}
/* ==========================================================================
   14. Theme-Isolation
   --------------------------------------------------------------------------
   Themes und Page-Builder stylen Buttons und Eingabefelder häufig mit sehr
   spezifischen Selektoren (Twenty Twenty-One z. B. mit
   `button:not(:hover):not(:active):not(.has-background)`). Damit das Plugin
   unabhängig vom Theme immer gleich aussieht, werden die betroffenen
   Eigenschaften hier mit `!important` festgeschrieben.

   Wichtig: Die Werte kommen aus den CSS-Variablen ganz oben. Anpassungen
   erfolgen also weiterhin ganz normal über `--dbh-primary`, `--dbh-accent`
   usw. (oder über die Plugin-Einstellungen) – dort wirkt kein `!important`.
   ========================================================================== */

/* --- Grundreset für Formularelemente ------------------------------------ */

.dbh button,
.dbh input[type="button"],
.dbh input[type="submit"],
.dbh input[type="reset"] {
	margin: 0 !important;
	border: 0 none !important;
	border-radius: 0 !important;
	background: none !important;
	color: inherit !important;
	font: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer;
	min-height: 0;
}

.dbh input,
.dbh select,
.dbh textarea {
	max-width: 100%;
	margin: 0 !important;
	font: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	box-shadow: none !important;
}

/* --- Buttons ------------------------------------------------------------- */

.dbh .dbh-btn {
	min-height: 44px !important;
	padding: 10px 18px !important;
	border: 1px solid transparent !important;
	border-radius: var(--dbh-radius-xs) !important;
	background: var(--dbh-surface) !important;
	color: var(--dbh-text) !important;
	font-size: var(--dbh-fs-base) !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
}

.dbh .dbh-btn--primary {
	background: var(--dbh-primary-solid) !important;
	border-color: var(--dbh-primary-solid) !important;
	color: #fff !important;
}

.dbh .dbh-btn--primary:hover,
.dbh .dbh-btn--primary:focus-visible {
	background: var(--dbh-primary-dark) !important;
	border-color: var(--dbh-primary-dark) !important;
}

.dbh .dbh-btn--outline {
	border-color: var(--dbh-border) !important;
	color: var(--dbh-primary-ink) !important;
}

.dbh .dbh-btn--outline:hover,
.dbh .dbh-btn--outline:focus-visible {
	border-color: var(--dbh-primary) !important;
	background: rgba(var(--dbh-primary-rgb), 0.06) !important;
}

.dbh .dbh-btn--ghost {
	background: transparent !important;
	border-color: var(--dbh-border) !important;
	color: var(--dbh-text) !important;
}

.dbh .dbh-btn--ghost:hover,
.dbh .dbh-btn--ghost:focus-visible {
	border-color: var(--dbh-primary) !important;
	color: var(--dbh-primary-ink) !important;
}

.dbh .dbh-filters__foot .dbh-btn,
.dbh .dbh-toolbar__filter,
.dbh .dbh-listing__back {
	min-height: 40px !important;
	padding: 8px 14px !important;
	font-size: var(--dbh-fs-sm) !important;
}

/* --- Filter-Umschalter, Schließen, Chips --------------------------------- */

.dbh .dbh-filter__toggle {
	display: flex;
	width: 100%;
	padding: 4px 0 !important;
	background: none !important;
	color: var(--dbh-text) !important;
	font-weight: 600 !important;
	text-align: left;
}

.dbh .dbh-filters__close,
.dbh .dbh-search__clear {
	background: var(--dbh-surface-muted) !important;
	color: var(--dbh-text) !important;
}

.dbh .dbh-filters__close {
	width: 40px;
	height: 40px;
	border-radius: var(--dbh-radius-xs) !important;
}

.dbh .dbh-search__clear {
	width: 30px;
	height: 30px;
	border-radius: 50% !important;
}

.dbh .dbh-filter__badge {
	background: var(--dbh-primary-solid) !important;
	color: #fff !important;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	border-radius: var(--dbh-radius-pill) !important;
}

.dbh .dbh-chip__btn {
	min-height: 32px !important;
	padding: 5px 10px !important;
	border: 1px solid rgba(var(--dbh-primary-rgb), 0.3) !important;
	border-radius: var(--dbh-radius-pill) !important;
	background: rgba(var(--dbh-primary-rgb), 0.08) !important;
	color: var(--dbh-primary-ink) !important;
	font-size: var(--dbh-fs-sm) !important;
}

.dbh .dbh-chip__btn--reset {
	background: transparent !important;
	border-style: dashed !important;
}

.dbh .dbh-gallery-view__thumb {
	padding: 0 !important;
	border: 2px solid transparent !important;
	border-radius: var(--dbh-radius-xs) !important;
	background: none !important;
}

.dbh .dbh-gallery-view__thumb.is-active {
	border-color: var(--dbh-primary) !important;
}

.dbh .dbh-card__cat-more summary {
	background: var(--dbh-surface-muted) !important;
	color: var(--dbh-text-muted) !important;
	font-size: 0.6875rem !important;
}

/* --- Eingabefelder -------------------------------------------------------- */

.dbh .dbh-search input,
.dbh .dbh-filter__find,
.dbh .dbh-sort__select {
	border: 1px solid var(--dbh-border) !important;
	border-radius: var(--dbh-radius-xs) !important;
	background-color: var(--dbh-surface) !important;
	color: var(--dbh-text) !important;
	line-height: 1.3 !important;
}

.dbh .dbh-search input {
	width: 100%;
	min-height: 44px !important;
	padding: 10px 38px 10px 34px !important;
	font-size: var(--dbh-fs-base) !important;
}

.dbh .dbh-filter__find {
	width: 100%;
	padding: 8px 10px !important;
	font-size: var(--dbh-fs-sm) !important;
}

.dbh .dbh-sort__select {
	min-height: 40px !important;
	padding: 8px 30px 8px 12px !important;
	font-size: var(--dbh-fs-sm) !important;
}

.dbh .dbh-check input {
	position: absolute;
	width: 1px !important;
	height: 1px !important;
	min-height: 0 !important;
	padding: 0 !important;
	opacity: 0;
}

/* --- Überschriften der Komponenten --------------------------------------- */

.dbh .dbh-card__title {
	font-size: 1.0625rem !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--dbh-accent-ink) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.dbh .dbh-listing__title {
	color: var(--dbh-accent-ink) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.dbh .dbh-panel__title {
	color: var(--dbh-text) !important;
	font-size: var(--dbh-fs-lg) !important;
	font-weight: 600 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.dbh .dbh-filters__title,
.dbh .dbh-related__title,
.dbh .dbh-empty__title,
.dbh .dbh-archive-head__title {
	color: var(--dbh-primary-ink) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.dbh .dbh-filter__heading {
	margin: 0 !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	color: inherit !important;
}

/* --- Sonstiges ----------------------------------------------------------- */

.dbh .dbh-pagination__link {
	border: 1px solid var(--dbh-border) !important;
	border-radius: var(--dbh-radius-xs) !important;
	background: var(--dbh-surface) !important;
	color: var(--dbh-text) !important;
	font-size: var(--dbh-fs-sm) !important;
	text-decoration: none !important;
}

.dbh .dbh-pagination__link.is-current {
	background: var(--dbh-primary-solid) !important;
	border-color: var(--dbh-primary-solid) !important;
	color: #fff !important;
}

.dbh .dbh-viewswitch__item.is-active {
	background: var(--dbh-primary-solid) !important;
	color: #fff !important;
}

.dbh .dbh-contact__label {
	font-size: var(--dbh-fs-sm) !important;
	font-weight: 600 !important;
	color: var(--dbh-text-muted) !important;
	text-transform: none !important;
	letter-spacing: 0.01em !important;
}

.dbh .dbh-contact__value {
	font-size: var(--dbh-fs-base) !important;
}

.dbh .dbh-hourstable,
.dbh .dbh-hourstable th,
.dbh .dbh-hourstable td {
	border: 0 !important;
	background: none !important;
	color: inherit !important;
	font-size: var(--dbh-fs-base) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.dbh .dbh-hourstable__row + .dbh-hourstable__row th,
.dbh .dbh-hourstable__row + .dbh-hourstable__row td {
	border-top: 1px solid var(--dbh-border-light) !important;
}

.dbh .dbh-hourstable__day {
	padding: 7px 14px 7px 0 !important;
	text-align: left !important;
}

.dbh .dbh-hourstable__time {
	padding: 7px 0 !important;
	text-align: right !important;
}

.dbh .dbh-openstate--open {
	background: #e3f3e0 !important;
	color: #1f6b25 !important;
}

.dbh .dbh-openstate--closed {
	background: #f7e6e6 !important;
	color: #9b2226 !important;
}

.dbh .dbh-taglist__item {
	background: var(--dbh-surface-muted) !important;
	color: var(--dbh-text) !important;
	border-radius: var(--dbh-radius-pill) !important;
}

.dbh .dbh-badge {
	color: #fff !important;
	border-radius: var(--dbh-radius-pill) !important;
}

.dbh ul:not(.dbh-prose ul),
.dbh ol:not(.dbh-prose ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dbh .dbh-items,
.dbh .dbh-card,
.dbh .dbh-panel {
	float: none;
}

/* ==========================================================================
   15. Druck
   ========================================================================== */

@media print {
	.dbh-sidebar,
	.dbh-toolbar,
	.dbh-pagination,
	.dbh-mapwrap,
	.dbh-listing__actions,
	.dbh-listing__back,
	.dbh-related {
		display: none !important;
	}

	.dbh-layout,
	.dbh-listing__grid {
		display: block;
	}

	.dbh-card,
	.dbh-panel {
		box-shadow: none;
		break-inside: avoid;
	}
}
