/* Staff Directory — only the leadership featured card needs custom CSS; rest uses Bootstrap 5.2 */
.sd-featured-card {
    background: linear-gradient(135deg, #0d3a6b, #185b91);
    position: relative; overflow: hidden; transition: transform .25s;
}
.sd-featured-card:hover { transform: translateY(-3px); }
.sd-featured-card::before {
    content: ''; position: absolute; top: -40%; right: -8%;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,.05); pointer-events: none;
}
