/* ============================================================
   PREIS-ELEMENTE
   - Festpreise-Hinweis-Box (price-includes)
   - "Auf Anfrage"-Satz (compare-on-request)
   - Sidebar mit Preistabelle (sidebar-prices) auf Anlass-Seiten
   ============================================================ */

/* ---- Festpreise-Hinweis-Box (unter den Compare-Cards) ---- */
.price-includes {
    margin: 40px auto 0;
    max-width: 880px;
    padding: 32px 36px;
    background: #FFFFFF;
    border: 1px solid #DDD6C8;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(31, 52, 77, 0.04);
}

.price-includes-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: #1F344D;
    margin: 0 0 18px;
}

.price-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}
.price-includes-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: #222222;
}
.price-includes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 1px;
    background: #B89B5E;
}

.price-includes-note {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #5C5C5C;
    padding-top: 16px;
    border-top: 1px solid #E8E1D2;
}

/* ---- "Auf Anfrage"-Satz unter Compare-Cards ---- */
.compare-on-request {
    margin: 36px auto 0;
    max-width: 880px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #5C5C5C;
}
.compare-on-request strong {
    color: #1F344D;
    font-weight: 500;
}
@media (max-width: 900px) {
    .compare-on-request {
        margin-top: 28px;
        font-size: 0.92rem;
    }
}

/* ---- Preis-Sidebar auf Anlass-Seiten ---- */
.sidebar-card.sidebar-prices {
    /* nutzt das gleiche Card-Layout wie andere sidebar-cards */
}

.sidebar-prices h4 {
    /* H4 erbt vom existing sidebar-card -- nur Margin minimal anpassen falls noetig */
}

.sidebar-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 4px 0 16px;
}
.sidebar-price-table tr {
    border-bottom: 1px solid #E8E1D2;
}
.sidebar-price-table tr:last-child {
    border-bottom: none;
}
.sidebar-price-table td {
    padding: 11px 0;
    font-size: 0.94rem;
    line-height: 1.4;
    color: #222222;
    vertical-align: top;
}
.sidebar-price-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: #1F344D;
    white-space: nowrap;
    padding-left: 8px;
}

.sidebar-price-note {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #5C5C5C;
    margin: 0 0 16px;
    padding-top: 12px;
    border-top: 1px solid #E8E1D2;
}

.sidebar-price-link {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1F344D;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color .2s ease;
}
.sidebar-price-link:hover {
    color: #B89B5E;
}

@media (max-width: 700px) {
    .price-includes {
        padding: 22px 22px;
    }
    .price-includes-list {
        flex-direction: column;
        gap: 6px;
    }
}

/* ---- Festpreise im Subpage-Hero: 3 Zeilen (Objektart linksbuendig, Preis rechtsbuendig in Gold) ---- */
.subpage-meta .meta-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.subpage-meta .meta-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
}
.subpage-meta .meta-price-row > span:first-child {
    color: rgba(255, 255, 255, 0.85);
}
.subpage-meta .meta-price-row > span:last-child {
    color: #C7AC73;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
