        body { font-family: Arial, sans-serif; padding: 20px; background: #ecf0f1; }
        h1 { color: #2c3e50; }
        h2 { color: #2c3e50; }
        h3 { color: #2c3e50; }
        ul { background: white; padding: 20px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }
        li { margin-bottom: 10px; }
        .date { font-weight: bold; color: #2980b9; }
        .bericht-meta {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 20px;
        }

        .bericht-inhalt {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        .bericht-inhalt p {
            color: #34495e;
            line-height: 1.6;
        }

        .bericht-inhalt ul {
            padding: auto;
            box-shadow: none;
        }

        .bildergalerie {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .bildergalerie img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
        }