/* Container der Teamseite */
.team-section, .staff-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 40px 20px;
background-color: #f9f9f9;
}
/* Einzelne Team-Cards */
.team-member, .staff-member {
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
width: 100%;
max-width: 250px;
box-sizing: border-box;
text-align: center;
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
word-wrap: break-word;
cursor: pointer;
margin-bottom: 20px;
}
/* Hover Effekt für Card */
.team-member:hover, .staff-member:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Profilbild */
.team-member img, .staff-member img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}
/* Name und Rolle */
.team-member .username, .staff-member .username {
font-size: 1.2em;
color: #333;
margin: 10px 0 5px;
}
.team-member .group, .staff-member .group {
font-size: 0.9em;
color: #777;
margin: 0;
}
/* Social-Links */
.team-member .social, .staff-member .social {
margin-top: 15px;
}
.team-member .social a, .staff-member .social a {
margin: 0 5px;
color: #555;
text-decoration: none;
font-size: 1.2em;
transition: color 0.2s;
}
.team-member .social a:hover, .staff-member .social a:hover {
color: #1da1f2;
}