  @import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap");

  /* =========================================================
     WOHNUNGSFINDER V1.0.1
     Bereinigtes Designsystem + Motion Design
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) {
    --wf-primary: #a4a59a;
    --wf-secondary: #d0c1ad;
    --wf-accent: #846c7d;

    --wf-text: #6e6c65;
    --wf-dark: #1d1d1b;
    --wf-line: #ddd5cb;
    --wf-background: #ffffff;
    --wf-surface: #f7f5f2;

    --wf-reserved: #d7ad61;
    --wf-sold: #b8b8b8;
    --wf-sold-dark: #8e8e8e;

    --wf-floor-lift: 110px;

    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 80px;

    color: var(--wf-text);
    background: var(--wf-background);

    font-family: "Raleway", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) [hidden] {
    display: none !important;
  }

  :is([data-wohnungsfinder], #wohnungsfinder),
  :is([data-wohnungsfinder], #wohnungsfinder) * {
    box-sizing: border-box;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) button,
  :is([data-wohnungsfinder], #wohnungsfinder) select,
  :is([data-wohnungsfinder], #wohnungsfinder) input {
    font: inherit;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) button,
  :is([data-wohnungsfinder], #wohnungsfinder) a {
    -webkit-tap-highlight-color: transparent;
  }

  /* =========================================================
     HAUPTLAYOUT
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-layout {
    display: grid;
    grid-template-columns:
      minmax(320px, 0.82fr)
      minmax(560px, 1.25fr);
    gap: 56px;
    align-items: start;
  }

  /* =========================================================
     EINLEITUNG UND TYPOGRAFIE
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-eyebrow {
    margin: 0 0 18px;

    color: var(--wf-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-title {
    max-width: 720px;
    margin: 0;

    color: var(--wf-dark);

    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 0.98;

    text-wrap: balance;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-intro {
    max-width: 560px;
    margin: 28px 0 38px;

    color: var(--wf-text);

    font-size: 15px;
    line-height: 1.75;
  }

  /* =========================================================
     FILTER
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field label {
    color: var(--wf-dark);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.4;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field select,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field input {
    width: 100%;
    height: 52px;
    padding: 0 15px;

    border: 1px solid var(--wf-line);
    border-radius: 0;
    outline: none;

    color: var(--wf-dark);
    background-color: #ffffff;

    font-size: 14px;

    transition:
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      background-color 0.22s ease;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field input::placeholder {
    color: #aaa69f;
    opacity: 1;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field select:hover,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field input:hover {
    border-color: #bcb5ad;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field select:focus,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-field input:focus {
    border-color: var(--wf-accent);
    background-color: #ffffff;

    box-shadow:
      0 0 0 3px rgba(132, 108, 125, 0.1);
  }

  /* =========================================================
     BUTTONS
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 26px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button {
    min-height: 48px;
    padding-right: 20px;
    padding-left: 20px;

    border-radius: 0;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;

    cursor: pointer;

    transition:
      color 0.24s ease,
      background-color 0.24s ease,
      border-color 0.24s ease,
      box-shadow 0.24s ease,
      transform 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button {
    border: 1px solid var(--wf-line);

    color: var(--wf-dark);
    background: #ffffff;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button:hover,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button:hover {
    transform: translateY(-1px);

    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.08);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button:active,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button:active {
    transform:
      translateY(0)
      scale(0.985);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button:focus-visible,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button:focus-visible {
    outline: 2px solid var(--wf-accent);
    outline-offset: 3px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button:hover {
    border-color: var(--wf-dark);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button--primary {
    border-color: var(--wf-dark);

    color: #ffffff;
    background: var(--wf-dark);

    box-shadow:
      0 7px 18px rgba(29, 29, 27, 0.08);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-button--primary:hover {
    border-color: var(--wf-accent);
    background: var(--wf-accent);

    box-shadow:
      0 12px 28px rgba(132, 108, 125, 0.18);
  }

  /* =========================================================
     STATISTIK
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 36px;
    padding: 28px 0;

    border-top: 1px solid var(--wf-line);
    border-bottom: 1px solid var(--wf-line);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-stat-value {
    display: block;

    color: var(--wf-dark);

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-stat-label {
    display: block;
    margin-top: 10px;

    color: var(--wf-text);

    font-size: 11px;
    letter-spacing: 0.025em;
    line-height: 1.4;
  }

  /* =========================================================
     LEERER FILTERZUSTAND
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-empty {
    display: none;

    margin: 24px 0 0;
    padding: 17px 18px;

    border: 1px solid var(--wf-line);

    background: var(--wf-surface);

    font-size: 13px;
    line-height: 1.6;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-empty.is-visible {
    display: block;
  }

  /* =========================================================
     GEBÄUDEKARTE
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card {
    position: relative;

    min-height: 690px;
    padding: 30px;

    border: 1px solid var(--wf-line);

    background: var(--wf-surface);

    overflow: hidden;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;

    margin-bottom: 16px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-title {
    margin: 0;

    color: var(--wf-dark);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-subtitle,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-hint {
    margin: 8px 0 0;

    color: var(--wf-text);

    font-size: 12px;
    line-height: 1.55;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-hint {
    text-align: right;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-svg-stage {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 600px;
    padding: 24px 8px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-svg-stage svg {
    display: block;

    width: 100%;
    max-width: 760px;
    height: auto;
    max-height: 720px;

    overflow: visible;

    opacity: 0;
    transform: translateY(12px);

    animation:
      wfFadeBuilding 0.7s
      cubic-bezier(0.22, 0.61, 0.36, 1)
      0.15s forwards;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-loading {
    color: var(--wf-text);

    font-size: 14px;
  }

  /* =========================================================
     GESCHOSSANIMATION
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-floor {
    transform: translateY(var(--wf-shift, 0));
    transform-box: fill-box;
    transform-origin: center;

    transition:
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease;
  }

  /* =========================================================
     SVG-WOHNUNGEN
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit {
    cursor: pointer;
    outline: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit > * {
    fill: var(--wf-primary) !important;
    stroke: #ffffff !important;
    stroke-width: 0.55px !important;

    vector-effect: non-scaling-stroke;

    transform-box: fill-box;
    transform-origin: center;

    transition:
      fill 0.28s ease,
      stroke 0.28s ease,
      opacity 0.28s ease,
      filter 0.28s ease,
      transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit:hover > *,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit:focus > *,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-preview > * {
    fill: var(--wf-secondary) !important;

    filter:
      brightness(1.03)
      drop-shadow(0 2px 6px rgba(132, 108, 125, 0.18));

    transform: scale(1.018);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-active > * {
    fill: var(--wf-accent) !important;
    opacity: 1 !important;

    filter:
      drop-shadow(0 2px 7px rgba(132, 108, 125, 0.35))
      drop-shadow(0 0 18px rgba(132, 108, 125, 0.18));

    transform: scale(1.02);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-reserved > * {
    fill: var(--wf-reserved) !important;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-reserved:hover > *,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-reserved:focus > *,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-reserved.is-preview > * {
    filter:
      brightness(1.07)
      drop-shadow(0 2px 6px rgba(138, 101, 28, 0.18));

    transform: scale(1.018);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-sold {
    cursor: not-allowed;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-sold > * {
    fill: var(--wf-sold) !important;
    stroke: #ececec !important;
    opacity: 0.82;

    transform: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-sold:hover > * {
    fill: var(--wf-sold-dark) !important;

    filter: none;
    transform: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-highlight > * {
    filter:
      drop-shadow(0 0 3px rgba(132, 108, 125, 0.5))
      drop-shadow(0 0 7px rgba(132, 108, 125, 0.22));
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-filtered-out {
    pointer-events: none;
    cursor: default;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit.is-filtered-out > * {
    opacity: 0.16 !important;

    filter: none !important;
    transform: none !important;
  }

  :is([data-wohnungsfinder], #wohnungsfinder)
    .wf-svg-stage
    svg.has-selection
    .wf-unit:not(.is-active):not(.is-sold):not(.is-filtered-out)
    > * {
    opacity: 0.43;
  }

  :is([data-wohnungsfinder], #wohnungsfinder)
    .wf-svg-stage
    svg.has-selection
    .wf-unit.is-filtered-out
    > * {
    opacity: 0.12 !important;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) #Straße > * {
    fill: #3f3a3a !important;
    opacity: 0.76;

    pointer-events: none;
  }

  /* =========================================================
     LEGENDE
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 16px;

    color: var(--wf-text);

    font-size: 11px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend-color {
    width: 13px;
    height: 13px;

    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend-color--available {
    background: var(--wf-primary);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend-color--reserved {
    background: var(--wf-reserved);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-legend-color--sold {
    background: var(--wf-sold);
  }

  /* =========================================================
     AUSGEWÄHLTE WOHNUNG
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;

    margin-top: 68px;
    padding: 34px 0;

    border-top: 1px solid var(--wf-line);
    border-bottom: 1px solid var(--wf-line);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-title {
    margin: 0;

    color: var(--wf-dark);

    font-size: clamp(34px, 4vw, 50px);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.05;

    transition:
      color 0.28s ease,
      opacity 0.28s ease,
      transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;

    margin-top: 18px;

    color: var(--wf-text);

    font-size: 13px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-meta span,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-tags span {
    transition:
      color 0.28s ease,
      background-color 0.28s ease,
      border-color 0.28s ease,
      opacity 0.28s ease,
      transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 20px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-tag {
    padding: 8px 11px;

    border: 1px solid var(--wf-line);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.015em;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-tag--available {
    border-color: var(--wf-primary);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-tag--reserved {
    border-color: var(--wf-reserved);

    color: #8a651c;
    background: #fff8e9;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-actions {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    justify-content: flex-end;
    gap: 10px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--wf-dark);

    color: #ffffff;
    background: var(--wf-dark);

    text-decoration: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button:hover {
    border-color: var(--wf-accent);
    background: var(--wf-accent);

    box-shadow:
      0 12px 28px rgba(132, 108, 125, 0.18);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.38;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button[hidden] {
    display: none !important;
  }

  /* =========================================================
     TABELLE
     ========================================================= */

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table {
    width: 100%;

    border-collapse: collapse;

    color: var(--wf-dark);

    font-size: 12px;
    line-height: 1.5;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table th,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table td {
    padding: 15px 13px;

    border: 1px solid var(--wf-line);

    text-align: left;
    white-space: nowrap;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table th {
    color: var(--wf-text);
    background: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr {
    cursor: pointer;

    transition:
      color 0.22s ease,
      background-color 0.22s ease,
      transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr:nth-child(odd) {
    background: #f7f6f4;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr:hover,
  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-preview {
    background: #efede9;

    transform: translateX(2px);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-active {
    color: #ffffff;
    background: var(--wf-accent);

    transform: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-active a {
    color: #ffffff;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-reserved {
    background: #fff7e7;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-sold {
    color: #858585;
    background: #e6e6e6;

    cursor: not-allowed;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr.is-sold:hover {
    transform: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr[hidden] {
    display: none;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-table a {
    color: var(--wf-accent);

    font-weight: 600;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-status-label {
    display: inline-block;

    padding: 6px 9px;

    border: 1px solid var(--wf-line);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.025em;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-status-label--available {
    border-color: var(--wf-primary);
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-status-label--reserved {
    border-color: var(--wf-reserved);

    color: #8a651c;
    background: #fff8e9;
  }

  :is([data-wohnungsfinder], #wohnungsfinder) .wf-status-label--sold {
    border-color: var(--wf-sold);

    color: #777777;
    background: #eeeeee;
  }

  /* =========================================================
     MOTION
     ========================================================= */

  @keyframes wfFadeBuilding {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1100px) {
    :is([data-wohnungsfinder], #wohnungsfinder) .wf-layout {
      grid-template-columns: 1fr;
      gap: 44px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-card {
      min-height: auto;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-svg-stage {
      min-height: 520px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection {
      margin-top: 52px;
    }
  }

  /* =========================================================
     SMARTPHONE
     ========================================================= */

  @media (max-width: 700px) {
    :is([data-wohnungsfinder], #wohnungsfinder) {
      width: min(100% - 24px, 1480px);
      padding-top: 28px;
      padding-bottom: 56px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-eyebrow {
      margin-bottom: 14px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-intro {
      margin-top: 22px;
      margin-bottom: 30px;

      font-size: 14px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-filter-grid {
      grid-template-columns: 1fr;
      gap: 17px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-button-row {
      display: grid;
      grid-template-columns: 1fr;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-button {
      width: 100%;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-stats {
      grid-template-columns: 1fr;
      gap: 20px;

      margin-top: 30px;
      padding-top: 24px;
      padding-bottom: 24px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-card {
      padding: 20px 18px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-head {
      flex-direction: column;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-card-hint {
      text-align: left;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-svg-stage {
      min-height: 410px;
      padding-right: 0;
      padding-left: 0;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection {
      grid-template-columns: 1fr;
      gap: 28px;

      margin-top: 44px;
      padding-top: 28px;
      padding-bottom: 28px;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-actions {
      justify-content: flex-start;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-link-button,
    :is([data-wohnungsfinder], #wohnungsfinder) .wf-selection-actions .wf-button {
      width: 100%;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-table-wrap {
      margin-top: 30px;
    }
  }

  /* =========================================================
     REDUZIERTE BEWEGUNG
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    :is([data-wohnungsfinder], #wohnungsfinder) *,
    :is([data-wohnungsfinder], #wohnungsfinder) *::before,
    :is([data-wohnungsfinder], #wohnungsfinder) *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-delay: 0ms !important;
      animation-iteration-count: 1 !important;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-svg-stage svg {
      opacity: 1;
      transform: none;
    }

    :is([data-wohnungsfinder], #wohnungsfinder) .wf-unit > *,
    :is([data-wohnungsfinder], #wohnungsfinder) .wf-table tbody tr {
      transform: none !important;
    }
  }
