/* Über uns Seite – ergänzende Styles */

.team-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-list .team-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    overflow: visible;
}

.team-list .team-card-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.team-list .team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-list .team-card-body {
    padding: 0;
}

.team-list .team-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.team-card-meta {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card-meta li {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.team-card-tags-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-text);
    background: var(--color-bg);
}

@media (max-width: 768px) {
    .team-list .team-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .team-list .team-card-photo {
        aspect-ratio: 1 / 1;
        max-width: 200px;
    }
}

.team-card-photo-placeholder {
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.team-card-photo-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}
