/* Stadtseite: preise-staedte/{bl}/{city} */

/* Breadcrumb */
.pst-breadcrumb {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}
.pst-breadcrumb a {
    color: #2c6e1f;
    text-decoration: none;
}
.pst-breadcrumb a:hover {
    text-decoration: underline;
}

/* Wappen + Heading */
.ps-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.ps-heading__wappen {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
.ps-heading .ps-heading__filter {
    margin-bottom: 0;
}

/* Preis-Karten */
.pst-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pst-card {
    flex: 1;
    min-width: 130px;
    background: #f8fdf5;
    border: 1px solid #d0e8c0;
    border-radius: 6px;
    padding: 12px 16px;
    text-align: center;
}

.pst-card__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4a7c30;
    margin-bottom: 4px;
}

.pst-card__avg {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.pst-card__delta {
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 3px;
}
.pst-card__delta.is-cheap      { color: #1a7a00; }
.pst-card__delta.is-expensive   { color: #c0000a; }

.pst-card__range {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 2px;
}
.pst-card__range-sep { color: #ccc; }

/* Zurück-Link */
.pst-back {
    margin-top: 18px;
    font-size: 0.88rem;
}
.pst-back a {
    color: #2c6e1f;
    text-decoration: none;
}
.pst-back a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .pst-cards {
        flex-direction: column;
    }
    .pst-card {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
    }
    .pst-card__avg {
        font-size: 1.2rem;
    }
}
