/* ============================================================
   DOZENTEN
   ============================================================ */

.dozent-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.dozent-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dozent-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.dozent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* ---- Karte ---- */
.dozent-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dozent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* ---- Bild ---- */
.dozent-image {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
}

.dozent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.dozent-card:hover .dozent-image img {
    transform: scale(1.03);
}

/* ---- Info ---- */
.dozent-info {
    flex: 1;
    padding: 2.2rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary-color);
}

.dozent-name {
    font-size: 1.7rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.dozent-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.4;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.dozent-spezialgebiet {
    font-size: 0.95rem;
    color: var(--primary-color);
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.dozent-bio {
    color: var(--text-color);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* ---- Button ---- */
.dozent-info .konzert-button,
.dozent-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.dozent-info .konzert-button:hover,
.dozent-button:hover {
    background: var(--secondary-color, #555);
    transform: translateX(2px);
}

/* ============================================================
   MOBIL
   ============================================================ */
@media (max-width: 768px) {
    .dozent-page {
        padding: 2rem 1rem;
    }

    .dozent-card {
        flex-direction: column;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .dozent-image {
        flex: none;
        width: 100%;
        height: 260px;
    }

    .dozent-image img {
        height: 100%;
        object-fit: cover;
    }

    .dozent-info {
        padding: 1.5rem;
        border-left: none;
    }

    .dozent-name {
        font-size: 1.4rem;
    }
}
