/* Container für Termine */
        .portrait-section {
            max-width: 900px;
            margin: 1.5rem auto;
            padding: 1.5rem;
            background: #4a4a4a;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            color: #ffffff;
            box-sizing: border-box;
        }

        .portrait-figure {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .bordered {
            border: 4px solid #626262;
            border-radius: 10px;
            display: inline-block;
            max-width: 100%;
            height: auto;
        }

        /* Überschrift der Seite */
        .page-title {
            font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
            font-style: italic;
            font-weight: 600 !important;
            font-size: 1.5em;                 /* kleinere Schrift als vorher */
            color: #ffffff;
            text-align: center;
            text-shadow: 0 0 6px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
        }

        /* Textkörper / Termine */
        .bio-text {
            text-align: left;
            line-height: 1.5;
            font-size: 0.95rem;               /* kleinere Schrift für kompakte Termine */
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .bio-text a {
            color: var(--accent);             /* Linkfarbe wie auf der Website */
            text-decoration: none;
        }

        .bio-text a:hover {
            color: var(--accent-hover);
            text-decoration: none;
        }
        