/* ── Layout ──────────────────────────────────────────── */
.immomakler-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 3px;
}
.immomakler-archive-grid .property {
    display: block;
}

/* ── Card ────────────────────────────────────────────── */
.immo-card {
    display: flex;
    height: 400px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
}
.immo-card__image {
    width: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}
.immo-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 4rem;
    background: #fafaf8;
    text-align: center;
    gap: 1.2rem;
}

/* ── Titel & Ort ─────────────────────────────────────── */
.immo-card__titles { display: flex; flex-direction: column; gap: .4rem; }

.immo-card__title,
.immo-card__title a {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1.4;
    color: #111;
    text-decoration: none;
    margin: 0;
}
.immo-card__title a:hover { color: #3a6e3a; }

.immo-card__location {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #555;
    margin: 0;
}

/* ── Trennlinie ──────────────────────────────────────── */
.immo-card__divider {
    width: 48px;
    border: none;
    border-top: 1px solid #bbb;
    margin: 0;
}

/* ── Facts / Icons ───────────────────────────────────── */
.immo-card__facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.immo-card__fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    min-width: 60px;
}
.immo-card__icon {
    display: block;
    width: 38px;
    height: 38px;
    color: #3a6e3a;   /* ← Iconfarbe – hier anpassen */
}
.immo-card__icon svg {
    width: 100%;
    height: 100%;
}
.immo-card__fact-value {
    font-size: .8rem;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}
.immo-card__fact-label {
    font-size: .7rem;
    color: #888;
    white-space: nowrap;
}

/* ── Preis ───────────────────────────────────────────── */
.immo-card__price {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .immo-card { flex-direction: column; height: auto; }
    .immo-card__image { width: 100%; height: 240px; }
    .immo-card__body { padding: 1.5rem; }
    .immo-card__facts { gap: 1rem; }
}