.team-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    width: 300px;
    height: 400px;
    max-width: 300px;
    margin: 1rem auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-size: 0.875rem !important;
    font-weight: 300;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.team-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.team-card-bio {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-card-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid #edf2f7;
    padding-top: 1rem;
}

.team-card-socials a {
    color: #a0aec0;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.team-card-socials a:hover {
    color: #4a5568;
}

/* Dashicons sizing */
.team-card-socials .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}