.staff-directory-wrapper {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: #4a4a4a;
    padding: 40px 20px;
}

.section-title-line {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80%;
    height: 4px;
    background-color: #0d9488;
    border-radius: 2px;
}

/* Grid Layout */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.staff-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 4px solid #0d6efd !important;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Photo */
.staff-photo-wrapper {
    width: 128px;
    height: 128px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(13,110,253,0.08);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 11px rgb(0 0 0 / 21%);
}

.staff-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Names */
.staff-name-en {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.staff-name-jp {
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Role Badge */
.staff-role {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* Meta */
.staff-meta p {
    margin: 6px 0;
    color: #374151;
    text-align: left;
}

/* Bio */
.staff-bio {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #eef2ff;
    line-height: 1.6;
    text-align: left;
}

.staff-bio-empty {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    line-height: 1.6;
    text-align: center;
}

.staff-update {
    color: #dc2626;
    font-weight: bold;
    margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .staff-photo-wrapper {
        width: 96px;
        height: 96px;
    }
}
