
.sbhh-logo-container {
    text-align: center;
    margin-bottom: 45px;

    /* Wenn du border-box nutzt, musst du die Border addieren */
    box-sizing: border-box;
    width: 242px; /* Image + Border   */
    height: 242px;

    /* Caption-Handling */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sbhh-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 2em;
}


.sbhh-logo-grid-kasten {
    /* background: black; */
    padding: 10px;
    display: grid;
    place-items: center;
    border: 1px solid silver;
    border-radius: 3px;
    box-shadow: 0 24px 11px -12px rgba(0, 0, 0, 0.2);
    background-color: white;
    margin-bottom: 2em;
    /*max-width: 200px;*/
    /*max-height: 200px;*/
    width: 210px;
    height: 210px;
}

.sbhh-logo-grid-img {
    /*width: 180px;*/
    /*height: 180px;*/
    box-sizing: content-box; /* Border wird AUF die 240px addiert */
    display: block;

    /* anpassen des ALT-Textes */
    font-size: 10px; /* Hier die gewünschte kleine Größe */
    color: #eceaea;
    text-align: center;

    image-rendering: -webkit-optimize-contrast; /* Schärfere Darstellung in Chrome/Safari */
    image-rendering: crisp-edges;
}

.sbhh-logo-grid-img.is-loaded {
    /* Erst wenn diese Klasse vorhanden ist, wird alles sichtbar */
    opacity: 1;
}

.sbhh-logo-caption {
    margin-top: 8px;
    font-size: 0.9em;
}