/* =========================================================
   NS Partners — People Cards (Home + About)
   Complementary tweaks; inline rules in front-page.php and
   page-about.php already cover most of the styling.
   ========================================================= */

/* Generic flip card animation safety */
.ns-exec-card,
.ns-talent-card {
    will-change: transform;
}

/* Linkedin / email mini-links inside back face (optional) */
.ns-exec-back-links,
.ns-talent-back-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
.ns-exec-back-links a,
.ns-talent-back-links a {
    color: var(--blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.ns-exec-back-links a:hover,
.ns-talent-back-links a:hover {
    color: var(--beige, #b89154);
}

/* Empty-state notice for editors */
.ns-people-empty {
    max-width: 900px;
    margin: 32px auto;
    padding: 18px 22px;
    background: #fff8e5;
    border-left: 4px solid var(--beige, #b89154);
    color: #333;
    font-size: 14px;
}
.ns-people-empty code {
    background: rgba(0,0,0,.06);
    padding: 1px 6px;
    border-radius: 3px;
}
