.dps-layout {
--dps-bg: #f4f5f5;
--dps-card: #ffffff;
--dps-text: #000000;
--dps-muted: #5b6172;
--dps-divider: #f3f4f6;
--dps-border: #f3f4f6;
--dps-radius: 16px;
--dps-ease: .18s ease;
display: grid;
grid-template-columns: 300px 1fr;
gap: 32px;
align-items: start;
color: var(--dps-text);
}
@media (max-width: 900px) { .dps-layout { grid-template-columns: 1fr; } } .dps-layout--no-filter { grid-template-columns: 1fr; }
.dps-layout--no-filter .dps-aside { display: none; } .dps-layout--no-filter .dps-bar { display: none; }
.dps-layout--no-filter .dps-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.dps-layout * { box-sizing: border-box; } @view-transition { navigation: auto; } aside#dps-aside {
position: sticky;
top: 130px;
}
.dps-filters {
position: sticky;
top: 24px;
max-height: calc(100vh - 130px - 20px);
overflow-y: auto;
background: var(--dps-card);
border: 1px solid var(--dps-border);
border-radius: var(--dps-radius);
padding: 20px 20px 16px;
}
.dps-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dps-filters__title { margin: 0; font-size: 16px; letter-spacing: -.01em; }
.dps-field { margin-bottom: 14px; }
.dps-field--row { display: flex; gap: 8px; margin-bottom: 4px; }
.dps-subfield { flex: 1 1 auto; min-width: 0; position: relative; }
.dps-subfield--radius { flex: 0 0 104px; } .dps-ac {
list-style: none;
margin: 6px 0 0;
padding: 4px;
position: absolute;
left: 0;
right: 0;
top: 100%;
z-index: 40;
background: var(--dps-card);
border: 1px solid var(--dps-border);
border-radius: 12px;
box-shadow: 0 16px 36px rgba(20, 22, 30, .14);
max-height: 280px;
overflow: auto;
display: none;
}
.dps-ac.is-open { display: block; }
.dps-ac__item {
padding: 8px 10px;
border-radius: 8px;
font-size: 14px;
line-height: 1.35;
color: var(--dps-text);
cursor: pointer;
}
.dps-ac__item:hover,
.dps-ac__item.is-active { background: var(--dps-bg); }
.dps-lbl {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
color: var(--dps-muted);
text-transform: uppercase;
letter-spacing: .04em;
margin-bottom: 4px;
}
.dps-lbl .dps-ic { font-size: 15px; color: var(--dps-text); }
.dps-field input,
.dps-field select,
.dps-sort {
width: 100%;
min-height: 44px;
padding: 9px 11px;
border: 1px solid #d9dbe1;
border-radius: 10px;
font: inherit;
font-size: 14px;
background: #fff;
color: var(--dps-text);
line-height: 1.4;
}
.dps-field select,
.dps-sort {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding-right: 34px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
background-repeat: no-repeat;
background-position: right 11px center;
background-size: 16px 16px;
cursor: pointer;
}
.dps-field select::-ms-expand,
.dps-sort::-ms-expand { display: none; }
.dps-field input:focus,
.dps-field select:focus,
.dps-sort:focus { outline: none; border-color: var(--dps-text); }
.dps-field input:focus-visible,
.dps-field select:focus-visible,
.dps-sort:focus-visible,
.dps-btn:focus-visible { outline: 2px solid #000; outline-offset: -2px; }
.dps-range { display: flex; gap: 8px; }
.dps-range input { flex: 1; min-width: 0; } .dps-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 44px;
padding: 9px 16px;
background: #000;
color: #fff;
border: 2px solid #000;
border-radius: 10px;
font: inherit;
font-size: 14px;
font-weight: 600;
line-height: 1.2;
cursor: pointer;
transition: background var(--dps-ease), color var(--dps-ease);
}
.dps-btn:hover,
.dps-btn:focus-visible { background: #fff; color: #000; }
.dps-btn--block { width: 100%; margin-top: 6px; padding: 10px; } .dps-ic { width: 1em; height: 1em; flex: 0 0 auto; vertical-align: -.125em; transition: transform var(--dps-ease); }
#dps-f-reset:hover .dps-ic { transform: rotate(-180deg); transition: transform .3s ease; } .dps-main { display: flex; flex-direction: column; gap: 16px; }
.dps-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.dps-count { color: var(--dps-muted); font-size: 14px; }
.dps-bar__controls { display: flex; align-items: center; gap: 8px; }
.dps-sort { width: auto; min-width: 200px; }
.dps-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
}
.dps-empty {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
background: var(--dps-card);
border: 1px solid var(--dps-border);
border-radius: var(--dps-radius);
padding: 48px 32px;
text-align: center;
color: var(--dps-muted);
}
.dps-empty svg { color: var(--dps-text); opacity: .35; }
.dps-empty p { margin: 0; max-width: 32em; line-height: 1.5; } .dps-card {
background: var(--dps-card);
border: 1px solid var(--dps-border);
border-radius: var(--dps-radius);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform var(--dps-ease), box-shadow var(--dps-ease);
text-decoration: none;
color: inherit;
animation: dps-fade-in .3s ease both;
}
.dps-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(20,22,30,.10); }
.dps-media { position: relative; aspect-ratio: 4/3; background: #e9ebef; overflow: hidden; }
.dps-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; } .dps-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; }
.dps-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .04em; line-height: 1.5; text-transform: uppercase; color: #fff !important; }
.dps-badge--sold { background: rgba(0, 0, 0, .45); -webkit-backdrop-filter: blur(8px) saturate(1.2); backdrop-filter: blur(8px) saturate(1.2); border: 1px solid rgba(255, 255, 255, .18); }
.dps-badge--bereich { background: rgba(0, 0, 0, .62); -webkit-backdrop-filter: blur(8px) saturate(1.2); backdrop-filter: blur(8px) saturate(1.2); border: 1px solid rgba(255, 255, 255, .18); }
.dps-card:hover .dps-media img { transform: scale(1.03); }
.dps-body { padding: 20px 22px 12px; }
.dps-title { font-size: 20px; line-height: 1.3; font-weight: 700; margin: 0 0 14px; letter-spacing: -.01em; }
.dps-facts { list-style: none; margin: 0; padding: 0; }
.dps-row { display: flex; align-items: center; gap: 12px; padding: 4px 0; border-top: 1px solid var(--dps-divider); font-size: 14px; }
.dps-row:first-child { border-top: 0; }
.dps-ico { flex: 0 0 auto; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; color: var(--dps-muted); }
.dps-ico svg { display: block; }
.dps-txt { flex: 1; } .dps-pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.dps-pager:empty { display: none; }
.dps-pager .dps-btn { min-width: 44px; padding: 8px 12px; }
.dps-pager .dps-btn[aria-current="true"] { background: #fff; color: #000; }
.dps-pager .dps-btn[disabled] { opacity: .4; cursor: default; pointer-events: none; }
@keyframes dps-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } } @media (max-width: 900px) {
aside#dps-aside { position: static; top: auto; }
.dps-filters { position: static; max-height: none; }
.dps-sort { min-width: 0; flex: 1; }
.dps-bar { position: sticky; top: 0; z-index: 5; background: var(--dps-bg); padding: 8px 0; }
}  .dps-view {
display: inline-flex !important;
align-items: stretch !important;
min-height: 44px !important; background: #fff !important; border: 1px solid #d9dbe1 !important;
border-radius: 10px !important;
overflow: hidden !important;
padding: 0 !important;
box-shadow: none !important;
}
.dps-view__btn {
display: inline-flex !important; align-items: center !important; justify-content: center !important;
width: 38px !important; height: auto !important; min-height: 0 !important;
padding: 0 !important; margin: 0 !important; border: 0 !important; border-radius: 0 !important;
background: transparent !important; box-shadow: none !important; color: var(--dps-muted) !important; cursor: pointer;
transition: background var(--dps-ease), color var(--dps-ease);
}
.dps-view__btn .dps-ic { width: 18px; height: 18px; }
.dps-view__btn:hover { color: var(--dps-text) !important; background: rgba(0, 0, 0, .04) !important; }
.dps-view__btn[aria-pressed="true"] { background: #e9ebef !important; color: var(--dps-text) !important; } .dps-view__btn:focus-visible { outline: 2px solid #000; outline-offset: -2px; }
.dps-view__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }  .dps-grid--list { display: block; }
.dps-lrow {
display: grid; grid-template-columns: 150px 1fr auto; align-items: stretch;
margin-bottom: 10px; overflow: hidden; background: var(--dps-card); border: 1px solid var(--dps-border); border-radius: 8px;
text-decoration: none; color: var(--dps-text);
transition: box-shadow var(--dps-ease), border-color var(--dps-ease);
}
.dps-lrow--link { cursor: pointer; }
.dps-lrow--link:hover { box-shadow: 0 10px 24px rgba(20, 22, 30, .08); border-color: var(--dps-text); }
.dps-lrow__media { position: relative; }
.dps-lrow__img { width: 100%; height: 100%; min-height: 104px; object-fit: cover; display: block; background: #e9ebef; }
.dps-lrow .dps-badges { top: 6px; left: 6px; }
.dps-lrow__body { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 14px 8px 14px 18px; }
.dps-lrow__title { font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--dps-text); }
.dps-lrow__facts { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; color: var(--dps-text); font-size: 13px; line-height: 1.4; }
.dps-lrow__fact { display: inline-flex; align-items: center; gap: 6px; }
.dps-lrow__fact .dps-ico { width: 18px; height: 18px; flex: 0 0 auto; display: inline-flex; color: var(--dps-muted); }
.dps-lrow__fact .dps-ico svg { width: 18px; height: 18px; }
.dps-lrow__arrow { display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; color: var(--dps-muted); transition: color var(--dps-ease), transform var(--dps-ease); }
.dps-lrow__arrow svg { width: 24px; height: 24px; }
.dps-lrow--link:hover .dps-lrow__arrow { color: var(--dps-text); transform: translateX(4px); }
@media (max-width: 560px) {
.dps-lrow { grid-template-columns: 104px 1fr auto; }
.dps-lrow__body { padding: 12px 4px 12px 12px; }
.dps-lrow__arrow { padding: 0 12px; }
}  .dps-map { border-radius: var(--dps-radius); overflow: hidden; z-index: 0; }
.dps-map--top { height: min(60vh, 520px); margin-bottom: 28px; }
.dps-map--only { height: min(78vh, 760px); } .dps-map--top + .dps-layout { width: 95%; margin-inline: auto; } .dps-map-pop { text-align: left; width: 264px; max-width: 100%; }
.dps-map-pop__img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; display: block; margin-bottom: 8px; }
.dps-map-pop__title { font-weight: 700; font-size: 15px; line-height: 1.3; }
.dps-map-pop__facts { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.dps-map-pop__fact { display: flex; align-items: center; gap: 6px; font-size: 13px; line-height: 1.35; min-width: 0; }
.dps-map-pop__fact > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dps-map-pop__fact .dps-ico { flex: 0 0 auto; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: #5b6172; }
.dps-map-pop__fact .dps-ico svg { width: 18px; height: 18px; display: block; } .dps-map-pop--link { display: block; text-decoration: none; color: #111; }
.dps-map-pop--link:hover { text-decoration: none; }
.dps-map-pop__more { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 13px; font-weight: 700; color: #111; }
.dps-map-pop__more svg { width: 16px; height: 16px; }
.dps-map-pop--link:hover .dps-map-pop__more { text-decoration: underline; }
.leaflet-popup-content { margin: 10px 12px; } .dps-map-dot {
box-sizing: border-box;
border-radius: 50%;
background: rgba(46, 48, 51, .35);
border: 2px solid rgba(255, 255, 255, .95);
box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
} .dps-map-cluster {
box-sizing: border-box;
display: flex; align-items: center; justify-content: center;
border-radius: 50%;
background: rgba(46, 48, 51, .9);
color: #fff; font-weight: 700; font-size: 13px; line-height: 1;
border: 2px solid #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
} @media (prefers-reduced-motion: reduce) {
@view-transition { navigation: none; }
.dps-card,
.dps-media img,
.dps-ic { animation: none !important; transition: none !important; }
}.immo-kpi {
font-size: 4rem;
margin-top: 15px;
text-align: center;
font-weight: bold;
}