.team-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-bottom: 45px;
    margin-bottom: 25px;
    gap: 24px;
    width: 100%;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 20px;
    width: 580px;
    min-height: 250px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: contain;
    margin-right: 20px;
    flex-shrink: 0;
}

.team-member .info {
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-member h3 {
    margin: 0;
    font-size: 1.2em;
}

.team-member .role {
    color: #f44336;
    font-size: 15px;
    font-weight: bold;
    margin: 4px 0 10px;
}

.team-member .desc {
    font-size: 14px;
    color: #555;
    margin: 0;
    margin-bottom: 8px;
}

.socials a {
    margin-right: 10px;
    color: #888;
    font-size: 1.2em;
    transition: color 0.3s;
}

.socials a:hover {
    color: #f44336;
}