        .vorstand-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

        .vorstand-intro {
            margin-bottom: 3rem;
            padding: 2.5rem 2rem;
            background: linear-gradient(135deg, #ffffff, #fafafa);
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .vorstand-intro::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(255, 193, 7, 0.08), transparent 60%);
            pointer-events: none;
        }

        .vorstand-intro h2 {
            color: #111;
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }

        .vorstand-intro p {
            color: #555;
            line-height: 1.8;
            max-width: 720px;
            margin: 0 auto;
        }

        .vorstandsmitglieder {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.2rem;
            margin-top: 2.5rem;
            perspective: 1200px;
        }

        .vorstandsmitglied {
            background: linear-gradient(180deg, #ffffff, #fbfbfb);
            border-radius: 18px;
            padding: 2rem 1.5rem 1.8rem;
            text-align: center;
            position: relative;
            transition: all 0.35s ease;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
            overflow: hidden;
            cursor: default;
        }

        .vorstandsmitglied::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            width: 100%;
            background: linear-gradient(90deg, #ffc107, #f5b301);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vorstandsmitglied:hover::before {
            opacity: 1;
        }

        .vorstandsmitglied:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        }

        .mitglied-mail {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #666;
            text-decoration: none;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            background: #f3f3f3;
            transition: all 0.25s ease;
        }

        .mitglied-mail:hover {
            color: #1a1a1a;
            background: #ffc107;
            text-decoration: none;
        }

        .vorstandsmitglied:hover .mitglied-name {
            color: #000;
        }

        .mitglied-bild {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
            overflow: hidden;
            background: #eee;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .vorstandsmitglied:hover .mitglied-bild {
            transform: scale(1.08);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
        }

        .mitglied-bild img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mitglied-name {
            font-weight: 700;
            color: #1f1f1f;
            margin-bottom: 0.3rem;
            font-size: 1.05rem;
        }

        .mitglied-funktion {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }

        @media (min-width: 1200px) {


            .vorstand-container {
                max-width: 1200px;
                margin: 2rem auto;
                padding: 1rem;
            }

            .vorstandsmitglieder {
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }
        }