/* TEAM WEB VIEW */
.section-our-team {
    padding: 80px 0;
    background: #0b1117;
    position: relative;
}

.container-our-team {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-subtitle {
    text-align: center;
    color: #8892b0;
    margin-bottom: 60px;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: #161b22;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    /* group: team-card; - removed invalid property */
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(183, 255, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-member-image {
    width: 100%;
    height: 300px;
    background: #0d1117;
    position: relative;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #30363d;
    background: #0d1117;
}

.team-member-info {
    padding: 24px;
    text-align: center;
    position: relative;
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    color: #e6edf3;
    margin-bottom: 6px;
}

.team-member-role {
    font-size: 14px;
    color: #b7ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b949e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.team-social-link:hover {
    background: #b7ff00;
    color: #0d1117;
    transform: translateY(-3px);
}