.ueberunsseite {
    max-width: 1050px;
    margin: 0 auto;
    font-family: Calibri, sans-serif;
    color: #333;
}

.ueberunsseite h1 {
    font-size: 1.9em;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #2f2f2f;
}

.ueberunsseite h2 {
    color: #004080;
    margin-top: 0;
}

.ueberunsseite a {
    color: #005baa;
    font-weight: bold;
}

.ueberuns-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 22px 26px;
    margin: 22px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.ueberuns-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ueberuns-nav a {
    display: inline-block;
    background: #eaf1f9;
    color: #004080;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid #b8d4f0;
}

.ueberuns-nav a:hover {
    background: #d8e9f8;
}

.chor-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 26px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(235,245,255,0.95));
    border: 2px solid #b8d4f0;
}

.chor-hero h1 {
    font-size: 1.75em;
    font-weight: 600;
    margin-top: 0;
}

.chor-label {
    display: inline-block;
    background: #004080;
    color: white;
    border-radius: 999px;
    padding: 5px 13px;
    font-weight: bold;
    margin-bottom: 10px;
}

.chorbild figure {
    margin: 0;
}

.chorbild img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.25);
    display: block;
}

.chorbild figcaption {
    margin-top: 8px;
    font-size: 0.95em;
    color: #555;
    text-align: center;
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    align-items: stretch;
}

.repertoire-item {
    background: #f5f9ff;
    border: 1px solid #d3e4f5;
    border-radius: 14px;
    padding: 18px;
    min-height: 320px;
    box-sizing: border-box;
}

.proben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.proben-kachel {
    background: #f5f9ff;
    border-left: 5px solid #007bff;
    border-radius: 12px;
    padding: 15px 17px;
}

.proben-kachel strong {
    display: block;
    color: #004080;
    margin-bottom: 5px;
}

.button-link {
    display: inline-block;
    margin-top: 12px;
    background: #007bff;
    color: white !important;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
}

.button-link:hover {
    background: #0056b3;
}

.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.vorstand-card {
    background: #f5f9ff;
    border: 1px solid #d3e4f5;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.08);
}

.vorstand-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    display: block;
}

.vorstand-card h3 {
    margin: 0 0 4px;
    color: #004080;
}

.vorstand-rolle {
    display: inline-block;
    background: #004080;
    color: white;
    border-radius: 999px;
    padding: 4px 10px;
    margin: 4px 0 10px;
    font-weight: bold;
    font-size: 0.9em;
}

.repertoire-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #004080;
    font-size: 1.1em;
}

.repertoire-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.repertoire-item li {
    margin-bottom: 8px;
    line-height: 1.45;
    padding-left: 18px;
    position: relative;
}

.repertoire-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

@media (max-width: 900px) {
    .repertoire-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .repertoire-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ueberunsseite {
        max-width: 100%;
        margin: 0;
    }

    .ueberuns-card {
        padding: 14px;
        margin: 14px 0;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.10);
    }

    .ueberunsseite h1 {
        font-size: 1.6em;
        line-height: 1.2;
    }

    .ueberunsseite h2 {
        font-size: 1.3em;
    }

    .ueberuns-nav {
        display: block;
        margin-bottom: 16px;
    }

    .ueberuns-nav a {
        display: block;
        margin: 6px 0;
        padding: 8px 10px;
        border-radius: 8px;
        text-align: center;
    }

    .chor-hero {
        display: block;
    }

    .chorbild {
        margin-top: 16px;
    }

    .chorbild img {
        width: 100%;
        max-width: 100%;
    }

.proben-grid {
    display: block;
}

    .repertoire-item,
    .proben-kachel {
        margin-bottom: 12px;
    }
	
    .vorstand-grid {
        display: block;
    }

    .vorstand-card {
        margin-bottom: 16px;
    }

.vorstand-card img {
    height: 220px;
}
}
