/* Page Zwangsversteigerungen */
/* Height of your fixed header. Adjust if needed. */
:root {
    --header-height: 72px; /* e.g., Bootstrap .navbar fixed-top is ~56–72px */
    --anchor-gap: 12px; /* extra breathing room below header */
}

/* Make anchor scrolling stop a bit lower to avoid overlap */
.anchor-target {
    scroll-margin-top: calc(var(--header-height) + var(--anchor-gap));
}

/* (Optional) enable nice smooth scroll for anchor clicks */
html:focus-within {
    scroll-behavior: smooth;
}
/* End Zwangsversteigerungen */

/*.properties-image a > img {
    display: block;
    width: 100%;
    height: auto;
}*/

.property-icon-badges-bar {
    pointer-events: none; /* <--- This line allows clicks to pass through */
}

    .property-icon-badges-bar .badge-icon {
        pointer-events: auto; /* <--- Except allow clicking on the actual icons */
    }

