.learn-press-nav-tabs li label {
    padding: 15px 0 15px 10px !important;
}

.staff-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.staff-card:hover {
    transform: translateY(-10px);
}

.staff-img {
    position: relative;
    overflow: hidden;
}

.staff-img img {
    width: 100%;
    transition: 0.4s;
}

.staff-card:hover img {
    transform: scale(1.1);
}

.staff-social {
    position: absolute;
    bottom: -50px;
    width: 100%;
    text-align: center;
    transition: 0.4s;
}

.staff-card:hover .staff-social {
    bottom: 20px;
}

.staff-social a {
    display: inline-block;
    margin: 0 5px;
    background: #007bff;
    color: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 12px;
}

.staff-info {
    padding: 15px;
}

.staff-info h4 {
    margin-bottom: 5px;
}

.staff-info span {
    color: #777;
    font-size: 14px;
}