.elementor-12 .elementor-element.elementor-element-3c5b7aa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12 .elementor-element.elementor-element-3c5b7aa.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-12 .elementor-element.elementor-element-84dbf48{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}:root{--page-title-display:none;}@media(min-width:768px){.elementor-12 .elementor-element.elementor-element-3c5b7aa{--width:86.566%;}}/* Start custom CSS for html, class: .elementor-element-c05c3e7 */<style>
    /* Grundstruktur */
    .synagoge-page-wrapper {
        max-width: 1140px;
        margin: 0 auto;
        padding: 60px 20px;
        background-color: #ffffff;
        color: #2C3E50;
        font-family: 'Lato', sans-serif;
    }

    .section {
        margin-bottom: 80px;
    }

    /* 1. Intro Design */
    .intro-grid {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 50px;
        align-items: center;
    }

    .intro-logo img {
        width: 100%;
        height: auto;
        border: 1px solid #f0f0f0;
    }

    .intro-content h1 {
        font-family: 'Libre Baskerville', serif;
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #2C3E50;
    }

    .lead-text {
        font-size: 20px;
        line-height: 1.6;
        color: #E67E22; /* Dein Orange als Fokus-Farbe */
        font-weight: 500;
    }

    /* 2. Bericht Design */
    .report-container {
        display: flex;
        justify-content: center;
    }

    .report-body {
        max-width: 850px;
        font-size: 18px;
        line-height: 1.9;
        text-align: justify;
    }

    .report-body h3 {
        font-family: 'Libre Baskerville', serif;
        font-size: 26px;
        margin-bottom: 30px;
    }

    .signature-block {
        margin-top: 50px;
        padding: 30px;
        background-color: #fcfcfc;
        border-left: 4px solid #E67E22;
    }

    .signature-block .name {
        font-family: 'Libre Baskerville', serif;
        font-size: 20px;
        margin: 15px 0;
    }

    .signature-block .role {
        font-size: 15px;
        color: #7f8c8d;
        line-height: 1.5;
    }

    .signature-block a {
        color: #E67E22;
        text-decoration: none;
        font-weight: bold;
    }

    /* 3. Galerie Design */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        border-top: 1px solid #eee;
        padding-top: 60px;
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .gallery-item img:hover {
        transform: translateY(-10px);
    }

    /* Mobile Anpassung */
    @media (max-width: 850px) {
        .intro-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .intro-logo {
            width: 150px;
            margin: 0 auto;
        }
        .intro-content h1 { font-size: 28px; }
        .report-body { text-align: left; }
        .gallery-grid { grid-template-columns: 1fr; }
    }
</style>
<style>
    /* Korrigiertes Galerie-Design */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px; /* Kleinerer Abstand für kompaktere Optik */
        border-top: 1px solid #eee;
        padding-top: 40px;
        align-items: start; /* Richtet Bilder oben aus, falls sie unterschiedliche Höhen haben */
    }

    .gallery-item {
        width: 100%;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: auto; /* Entfernt die feste Höhe, damit nichts abgeschnitten wird */
        display: block;
        object-fit: scale-down; /* Sorgt dafür, dass das ganze Bild in den Container passt */
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        border: 1px solid #f0f0f0; /* Dezenter Rahmen wie im Original */
    }

    .gallery-item img:hover {
        transform: scale(1.03); /* Nur ganz dezenter Zoom */
    }

    /* Mobile Anpassung */
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr; /* Stapelt die Bilder auf dem Handy */
            gap: 30px;
        }
    }
</style>/* End custom CSS */