/* Stream Team Profiles - Frontend Styles */

.stream-team-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.stream-team-grid.columns-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.stream-team-grid.columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.stream-team-grid.columns-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
    .stream-team-grid {
        grid-template-columns: 1fr !important;
    }
}

.stream-member-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.stream-member-card:hover {
    transform: translateY(-5px);
    border-color: #6441a5;
    box-shadow: 0 8px 25px rgba(100, 65, 165, 0.4);
}

.member-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #2a2a2a;
}

.member-image img.member-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.member-photo-placeholder span {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0 0 20px 0;
    min-height: 60px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.member-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.member-socials a:hover {
    transform: translateY(-3px);
    background: #6441a5;
    border-color: #6441a5;
    box-shadow: 0 5px 15px rgba(100, 65, 165, 0.4);
}

.member-socials a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Alternative color schemes for variety */
.stream-member-card:nth-child(4n+1):hover {
    border-color: #9147ff;
    box-shadow: 0 8px 25px rgba(145, 71, 255, 0.4);
}

.stream-member-card:nth-child(4n+2):hover {
    border-color: #ff006e;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

.stream-member-card:nth-child(4n+3):hover {
    border-color: #00f5ff;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.stream-member-card:nth-child(4n+4):hover {
    border-color: #7b2cbf;
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.4);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-bio {
        font-size: 13px;
        min-height: auto;
    }
    
    .member-socials a {
        width: 35px;
        height: 35px;
    }
}
