h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 0 20px rgba(255,255,255,0.05);
}

h2::before {
    content: "🎤";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: rgba(245,197,66,0.12);
    border: 1px solid rgba(245,197,66,0.25);
    color: #f5c542;
    font-size: 18px;
    line-height: 1;
}

h3 {
    font-size: clamp(20px, 2.3vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.84);
}

.photo-gallery-wrap {
    position: relative;
}

.gallery-hint {
    display: none;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.photo-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    filter: saturate(0.9) contrast(1.05);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.site-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.site-menu a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.burger-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    padding: 10px;
}

.burger-button span {
    display: block;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-button span + span {
    margin-top: 6px;
}

.burger-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-button.is-open span:nth-child(2) {
    opacity: 0;
}

.burger-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.page-content {
    line-height: 1.7;
}

.page-content h2 {
    margin-top: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.filter-panel {
    margin-bottom: 24px;
}

.filter-panel summary {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-weight: 700;
}

.filter-panel summary:hover {
    background: rgba(255,255,255,0.1);
}

.filter-panel summary::marker {
    color: currentColor;
}

.filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: end;
    padding: 20px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
}

.filter-group select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #444;
    background: #1e1e1e;
    color: white;
    font-size: 15px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button.secondary {
    background: transparent;
    border: 1px solid #666;
    color: white;
    text-decoration: none;
}

.button.secondary:hover {
    background: rgba(255,255,255,0.08);
}

.show-grid {
    display: grid;
    gap: 20px;
}

.show-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.show-card-with-image {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 24px;
    align-items: center;
}

.show-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.show-meta {
    margin-bottom: 16px;
    line-height: 1.6;
}

.show-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.show-image {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    justify-self: end;
}

@media (max-width: 760px) {
    
    .gallery-hint {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 300;
        color: white;
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(8px);
        z-index: 5;
        pointer-events: none;
        opacity: 0.85;
    }

    .gallery-left {
        left: 8px;
    }
    
    .gallery-right {
        right: 10px;
        left: auto;
    }
    
    .photo-gallery {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .photo-gallery img {
        flex: 0 0 82%;
        scroll-snap-align: center;
        aspect-ratio: 4 / 3;
    }

    .photo-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .site-nav-inner {
        flex-wrap: wrap;
    }

    .burger-button {
        display: block;
    }

    .site-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 12px;
    }

    .site-menu.is-open {
        display: flex;
    }

    .site-menu a {
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255,255,255,0.06);
    }
    
     .page-content.card {
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: auto;
    }

    .filter-actions {
        width: 100%;
    }

    .filter-actions .button {
        flex: 1;
        text-align: center;
    }

    .show-card-with-image {
        grid-template-columns: 1fr;
    }

    .show-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        justify-self: stretch;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
}

    h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 20px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    td {
        display: grid;
        grid-template-columns: 95px 1fr;
        gap: 12px;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: right;
    }

    td::before {
        content: attr(data-label);
        font-weight: 700;
        color: rgba(255,255,255,0.7);
        text-align: left;
    }

    td .button,
    td .badge,
    td .muted {
        justify-self: end;
    }

    tr td:last-child {
        border-bottom: 0;
    }

    td[data-label="Anfrage"] {
        grid-template-columns: 1fr;
        padding-top: 14px;
    }

    td[data-label="Anfrage"]::before {
        display: none;
    }

    td[data-label="Anfrage"] .button {
        width: 100%;
        text-align: center;
        justify-self: stretch;
    }
