.staff-profile-shortcode {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: Poppins, sans-serif;
}

.staff-profile-shortcode * {
    box-sizing: border-box;
    font-family: inherit;
}

.staff-profile-shortcode .staff-card {
    position: relative;
    display: flex;
    flex: 0 1 292px;
    flex-direction: column;
    width: 100%;
    max-width: 292px;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 2px solid #c69b4a;
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-profile-shortcode .staff-card:hover,
.staff-profile-shortcode .staff-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.staff-profile-shortcode .staff-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    color: inherit;
    text-decoration: none;
}

.staff-profile-shortcode .staff-card-link:focus-visible {
    outline: 3px solid #111;
    outline-offset: -5px;
}

.staff-profile-shortcode .staff-card-image-wrap {
    overflow: hidden;
    background: #e2e2e2;
    aspect-ratio: 3 / 4;
}

.staff-profile-shortcode .staff-card-image-wrap img,
.staff-profile-shortcode .staff-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.staff-profile-shortcode .staff-card-image--placeholder {
    background: linear-gradient(135deg, #e8e8e8, #d3d3d3);
}

.staff-profile-shortcode .staff-card-content {
    padding: 18px 14px 16px;
    background: #fff;
    text-align: center;
}

.staff-profile-shortcode .staff-card-name {
    margin: 0 0 8px;
    color: #b8893a;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
}

.staff-profile-shortcode .staff-card-role {
    margin: 0;
    color: #111;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.staff-profile-shortcode .staff-card-download {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 12px 18px;
    background: #b8893a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.staff-profile-shortcode .staff-card-download:hover,
.staff-profile-shortcode .staff-card-download:focus-visible {
    background: #946d2c;
    color: #fff;
    transform: translateY(-1px);
}

.staff-profile-shortcode .staff-card-download:focus-visible {
    outline: 3px solid #111;
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .staff-profile-shortcode .staff-card-name {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .staff-profile-shortcode .staff-card,
    .staff-profile-shortcode .staff-card-download {
        transition: none;
    }
}
