.infobox-sippenstunde {
    display: flex;
    align-items: center;
    justify-content: center; /* Immer zentriert */
    background: #e3f2fd;
    padding: 15px;
    margin: 20px auto; /* Zentriert die Box */
    border-radius: 8px;
    border: none;
    box-shadow: none;
    max-width: 70%; /* Standard: 70% auf großen Bildschirmen */
}

.infobox-image {
    flex: 1.5;
    padding-right: 15px;
}

.infobox-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.infobox-content {
    flex: 2;
}

.infobox-content p {
    margin: 5px 0;
    font-size: 16px;
}

.infobox-table {
    width: 100%;
    background: #cfdfe8;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    border-collapse: collapse;
}

.infobox-table td {
    padding: 8px;
    vertical-align: middle;
    border-bottom: 1px solid #b0c4de;
}

.infobox-table tr:last-child td {
    border-bottom: none;
}

.infobox-table td:first-child {
    width: 30px;
    text-align: center;
}

.infobox-table i {
    color: #0073aa;
    font-size: 18px;
}

/* Mobile Anpassungen */
@media screen and (max-width: 768px) {
    .infobox-sippenstunde {
        flex-direction: column; /* Bild oben, Tabelle unten */
        text-align: center;
        max-width: 100%; /* Jetzt 100% auf mobilen Geräten */
        padding: 10px; /* Etwas weniger Padding für kleinere Screens */
    }

    .infobox-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .infobox-content {
        width: 100%;
    }

    .infobox-table {
        width: 100%;
    }
}
