.dosen-card {
    border-radius: 16px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.dosen-card h5 {
    font-size: 18px;
}

.dosen-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.hover-card {
    transition: 0.2s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dosen-photo-wrapper {
    width: 150px;
    flex-shrink: 0;
}

.dosen-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .dosen-photo-wrapper {
        width: 120px;
    }
}