/* NetHub Person Card Styles */
.nethub-person-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.nethub-person-card:hover {
    transform: translateY(-10px);
    border-color: #00828e;
    box-shadow: 0 20px 40px rgba(0, 136, 149, 0.08);
}

.nethub-person-card .card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nethub-person-card .person-image-container {
    position: relative;
    width: 85px;
    height: 85px;
}

.nethub-person-card .person-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: #f4f4f7;
}

.nethub-person-card .company-logo-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nethub-person-card .company-logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nethub-person-card .nethub-linkedin-btn {
    width: 36px;
    height: 36px;
    background: #f4f4f7;
    color: #0e2b3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.nethub-person-card .nethub-linkedin-btn:hover {
    background: #0077b5; /* LinkedIn Blue on hover */
    color: #fff;
    transform: scale(1.1);
}

.nethub-person-card .nethub-linkedin-btn svg {
	width: 16px;
	fill: #0e2b3c;
}

.nethub-person-card .nethub-linkedin-btn:hover svg {
	fill: #fff;
}

/* Typography */
.nethub-person-card .person-name {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.nethub-person-card .person-role {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00828e;
    letter-spacing: 1px;
    display: block;
    margin-top: 8px;
    margin-bottom: 12px;
	line-height: 1.5;
}

.nethub-person-card .person-bio {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}