/* --- THE CARD --- */
.awea-team-master-card {
    position: relative;
    border-radius: 50px;
    padding: 12px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.awea-team-master-card:hover {
    transform: translateY(-15px) scale(1.02);
}
.awea-team-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}
.awea-team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: grayscale(20%);
}
.awea-team-master-card:hover .awea-team-img-container img {
    transform: scale(1.1);
    filter: grayscale(0%);
}
.awea-team-info-panel {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.awea-team-master-card:hover .awea-team-info-panel {
    bottom: 30px;
}
.awea-team-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    transition: color 0.4s;
}
.awea-team-role {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}
.awea-team-social-dock {
    display: flex;
    justify-content: center;
    gap: 15px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 0;
}
.awea-team-master-card:hover .awea-team-social-dock {
    height: 45px;
    opacity: 1;
    margin-top: 20px;
}
.awea-team-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.awea-team-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

@keyframes awea-team-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}