/* Header Optimierung */
.region-hero-section {
    margin-bottom: var(--space-l);
}

.region-hero-section .content-card {
    display: block; /* Hebt das Flex-Center aus global.min.css auf */
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.guide-note {
    background: var(--bg-light);
    border-left: 4px solid var(--brand-orange);
    padding: var(--space-s) var(--space-m);
    margin-top: var(--space-m);
    border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0;
}

/* Shopping Card Verfeinerung */
.shopping-card {
    width: 100%;
    max-width: 520px; /* Begrenzung für edle Optik auf Desktop */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%; /* Sorgt für gleiche Höhe im Grid */
}

.card-info {
    flex-grow: 1; /* Drückt den Preis-Bereich nach unten */
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-top: auto; /* Klebt am unteren Rand der Info-Box */
}

/* Badge & Preis-Fixes */
.badge-privat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
}

.price-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.guarantee-label {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-divider {
    border: 0;
    border-top: 1px solid var(--brand-blue-dark);
    margin: 15px 0 10px 0;
}
/* --- UNTERKUNFT INFO IN DER KARTE --- */
.accommodation-info {
    display: flex;
    flex-wrap: wrap; /* Wichtig für kleine Handys */
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted); /* Dezenter als der Haupttext */
    margin: 8px 0;
    line-height: 1.2;
}

/* Icons in der Info-Zeile */
.accommodation-info i {
    font-size: 0.95rem;
    margin-right: 2px;
}

/* Die Zahlen hervorheben */
.accommodation-info span:not(.pipe-separator) {
    font-weight: 700;
    color: var(--text-dark); /* Zahlen sollen ins Auge stechen */
}

/* Trenner-Logik (Separator) */
.pipe-separator {
    color: var(--form-border);
    margin: 0 4px;
    font-weight: 300;
}

/* Mobile Optimierung: Falls der Platz eng wird */
@media (max-width: 480px) {
    .accommodation-info {
        gap: 4px;
        font-size: 0.75rem;
    }
}