.team-section {
    padding: var(--spacing-large) var(--spacing-medium);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
}

.team-intro {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.team-intro h2 {
    font-size: 2.2rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- PDF Bereich ---------- */
.pdf-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-large) var(--spacing-medium);
    text-align: center;
}

.pdf-section h3 {
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pdf-viewer-wrap {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.pdf-viewer {
    width: 100%;
    height: 80vh;          /* groß am Desktop */
    border: 0;
    display: block;
}

.pdf-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--spacing-medium);
}

/* Buttons nur für den PDF-Bereich, unabhängig von index.css */
.btn-pdf {
    display: inline-block;
    text-decoration: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
.btn-pdf:hover { 
    background: var(--secondary-color);
    transform: translateY(-3px); /* passt zu eurer .btn Hover-Transition */
}
.btn-pdf.secondary {
    background: transparent;
    color: var(--primary-color);
}
.btn-pdf.secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 1024px) {
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
        .pdf-viewer { height: 65vh; }
    .pdf-actions { flex-direction: column; }
}