.newsbox {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.newsmargoben {
    margin-top: 50px;
}

a.newsbox-more {
    display: block;
    border-top: 1px solid #c4bfbf;
    margin: 10px 0 -17px;
    padding: 17px 0;
    color: #008bd2;
}

.newsbox-headline {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.newsboxtextwarp {
    position: absolute;
    display: block;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(39,91,34,0.7);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    text-align: center;
}

.newsboxtext {
    color: #444444;
    font-weight: normal;
    padding: 10px 0 5px 0;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.newsbox-wrap {
    position: relative;
    display: block;
    margin-bottom: 0;
    overflow: hidden;
}

.newsbox-wrap::before {
    content: '';
    display: block;
    padding-top: 56.28571428571429%;
}

.newsbox-img-wrap {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: transform ease-out .3s;
}

.newsbox-img-wrap img {
    /* width: 100%; */
    position: absolute;
    left: 0;
    top: 0;
}

.newsbox-img-wrap:hover,
.newsbox:hover .newsbox-img-wrap {
    transform: scale(1.2);
}

.pointer {
    cursor: pointer;
}

.newsbox-text-wrap {
    text-align: center;
    display: block;
}

.newsbox-datum {
    color: #444444;
    font-size: 17px;
    margin: 0 0 10px;
}

.multiline-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-overflow: ellipsis;
}

.multiline-ellipsis-rund {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-overflow: ellipsis;
}

.newsbild {
    float: left;
    margin: 0 25px 25px 0;
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
    max-width: 350px;
}

.newscaption {
    font-size: 16px;
    text-align: right;
    font-style: italic;
}

/* Grundlayout der Zeile */
.filialsuche-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Segmente */
.filialsuche-segment {
    display: flex;
    align-items: center;
    margin: 2px;
}

/* PLZ nimmt den meisten Platz */
.filialsuche-suche {
    flex: 1 1 200px;
    min-width: 0;
}

/* Radius kompakt daneben */
.filialsuche-radius {
    flex: 0 0 170px;
}

/* Buttons rechts daneben */
.filialsuche-buttons {
    flex: 0 0 auto;
    white-space: nowrap;
}

.filialsuche-buttons .filialsuche-btn + .filialsuche-btn {
    margin-left: 4px;
}

/* vorhandene Formular-Styles nutzen */
.filialsuche .form-control {
    width: 100%;
    border: 1px solid #952C58;
    border-radius: 2px;
}

/* Buttons im Filialsuche-Block wie Inputs stylen */
.filialsuche-buttons .filialsuche-btn, .filialsuche-btn {
    border: 1px solid #952C58;
    border-radius: 2px;
    background: #ffffff;
    color: #000;
    padding: 6px 14px;
    line-height: 1.4;
    box-shadow: none;
}

/* wenn .buttonwhite anderes vorgibt: hier härter überschreiben */
.filialsuche-buttons .filialsuche-btn.buttonwhite, .filialsuche-btn {
    border-color: #952C58 !important;
    border-radius: 2px !important;
    background: #ffffff !important;
}

/* optional: Hover leicht einfärben */
.newsbox:hover .filialsuche-btn,
.newsbox-wrap:hover .filialsuche-btn, .filialsuche-buttons .filialsuche-btn:hover, .filialsuche-btn:hover {
    background: #952C58 !important;
    color: #fff;
    transition: 0.5s ease;
    text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 756px) {

    /* Bar wird vertikal gestapelt */
    .filialsuche-bar {
        flex-direction: column;
        align-items: stretch;
        background: #fafafa;
        padding: 6px;
        border: 1px solid #777;
    }
    .filialsuche .form-control {
        border:1px solid #777;
    }
    .filialsuche-segment {
        margin: 2px 0;
        width: 100%;
    }

    /* PLZ und Radius jeweils 100% Breite */
    .filialsuche-suche,
    .filialsuche-radius {
        flex: 0 0 100%;
    }

    /* Buttons zentriert untereinander */
    .filialsuche-buttons {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        margin-top: 4px;
        white-space: normal;
    }

    .filialsuche-buttons .filialsuche-btn + .filialsuche-btn {
        margin-left: 4px;
    }

    /* vertikale Abstände der Gruppen reduzieren */
    .filialsuche-form .form-group {
        margin-bottom: 0.5rem;
    }

    /* seitliche Luft der Spalten verringern */
    .filialsuche-form .row.vspace-0 > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .filialsuche-form {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.row.g-0 {
    align-items: stretch;
}

.newsbox .mt-auto {
    margin-top: auto;
}

.ortname {

    font-style: italic;
}

.ortblock {
    padding-top: 25px;
    padding-bottom: 25px;
}
.ortblockgrau {
    background: #f5f5f5;
}

.bubble-line-vertical-xs {
    position: relative;
}

.bubble-line-vertical-xs::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    background-image: radial-gradient(circle, #8e1640 1px, transparent 1px);
    background-repeat: repeat-y;
    background-size: 2px 4px; /* Breite=2px, vertikaler Abstand=4px */
    background-position: center 4px; /* halber Abstand */
}
/* 2 Spalten zwischen 756px und 1024px */
@media (min-width:756px) and (max-width:1024px){
    .ortblock .row.g-0 > [class*="col-"]{
        flex:0 0 50% !important;
        max-width:50% !important;
    }
}

/* 3 Spalten zwischen 1024px und 1320px */
@media (min-width:1024px) and (max-width:1320px){
    .ortblock .row.g-0 > [class*="col-"]{
        flex:0 0 33.3333% !important;
        max-width:33.3333% !important;
    }
}
.piktogramm-legende{
    margin:18px 0 26px;
    text-align:center;
}

.piktogramm-legende-title{


}

.piktogramm-legende-items{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px 22px;
}

.piktogramm-legende-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    min-width:90px;
}

.piktogramm-legende-icon{
    width:64px;
    height:64px;
    display:block;
}

.piktogramm-legende-text{
    font-size:16px;
    color:#222;
    line-height:1.15;
    white-space:nowrap;
}