.openstreetmap-standort-liste{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}

.standort_kachel{
    display:inline-block;
    width:33.3333%;
    text-align: center;
    vertical-align: middle;
    background-color:  #EDEDED;
    padding:10px;
    border:4px solid #F3F3F3;

    display:grid !important;
    grid-template-columns: 1fr;
    grid-template-areas: 'text';
    justify-items:center;
    align-items: center;
    align-content: center; /* extra fuer safari */
}
.standort_kachel .inner{
    padding-top:20px;
    padding-bottom:20px;
    grid-area:text;
}
.standort_kachel .inner article.text p:last-of-type{
    margin-bottom:0px;
}
.standort_kachel .inner article.text p{
    font-size:1em;
}
.standort_kachel .inner article.text p strong{
    font-size:1.2em;
}
@media screen and (max-width:665px)
{
    .standort_kachel{
        width:50%;
    }
}
@media screen and (max-width:420px)
{
    .standort_kachel{
        width:100%;
    }
}