
.staff-profile-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}
.staff-profile-card {
    display: flex;
    gap: 20px;
}
.staff-photo img {
    width: 180px;
    height: auto;
    border-radius: 10px;
}
.staff-info {
    flex: 1;
}
.staff-info p {
    margin-bottom: 10px;
}
.staff-links a {
    display: inline-block;
    margin-right: 10px;
    color: #0057b7;
    text-decoration: none;
}
.staff-links a:hover {
    text-decoration: underline;
}
