/**
 * Team Member Card Widget Styles
 */

.team-member-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.team-member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.05);
}

.team-member-content {
    padding: 20px;
    text-align: center;
}

.team-member-name {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}

.team-member-role {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-bio {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.team-member-linkedin {
    margin-top: 16px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0077b5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    color: #ffffff;
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.linkedin-link span {
    line-height: 1;
}

.page-id-718 .entry-content h1, .entry-content h2, .entry-content h3 {
    margin: 10px !important;
	font-size: 32px !important;
	color: #000 !important;
}

.page-id-718 .team-member-role {
    color: #333333 !important;
    font-size: 20px !important;
}

.page-id-718 p.team-member-bio {
    font-size: 18px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member-name {
        font-size: 20px;
    }
    
    .team-member-role {
        font-size: 14px;
    }
    
    .team-member-bio {
        font-size: 13px;
    }
    
    .team-member-content {
        padding: 16px;
    }
}

