.staff-section {
    position: relative;
    overflow: hidden;
}

.staff-section-blur {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
}

.staff-section-blur--cyan {
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 174, 239, 0.06);
    filter: blur(64px);
}

.staff-section-blur--navy {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(0, 74, 153, 0.06);
    filter: blur(64px);
}

.staff-card {
    border-radius: 1rem;
    border: 1px solid #e2edf5;
    background: #fff;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 74, 153, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 74, 153, 0.1);
    border-color: #b8dff0;
}

.staff-card--chairman {
    padding: 1.5rem;
    border-radius: 1.25rem;
}

.staff-card--chairman:hover {
    box-shadow: 0 16px 40px rgba(0, 74, 153, 0.12), 0 0 60px rgba(0, 174, 239, 0.1);
}

.staff-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #004a99 0%, #00aeef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.staff-avatar--chairman {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1rem;
    font-size: 1.25rem;
}

.staff-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #004a99;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.staff-email-link:hover {
    color: #00aeef;
}

.staff-email-link svg {
    flex-shrink: 0;
}

.staff-card-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.staff-card-animate:nth-child(1) { animation-delay: 0.05s; }
.staff-card-animate:nth-child(2) { animation-delay: 0.1s; }
.staff-card-animate:nth-child(3) { animation-delay: 0.15s; }
.staff-card-animate:nth-child(4) { animation-delay: 0.2s; }
.staff-card-animate:nth-child(5) { animation-delay: 0.25s; }
.staff-card-animate:nth-child(6) { animation-delay: 0.3s; }
.staff-card-animate:nth-child(7) { animation-delay: 0.35s; }
.staff-card-animate:nth-child(8) { animation-delay: 0.4s; }
.staff-card-animate:nth-child(9) { animation-delay: 0.45s; }
.staff-card-animate:nth-child(10) { animation-delay: 0.5s; }
