/* --- Staff Landing Page Styles --- */
.staff-landing-section {
    padding-top: 120px;
    padding-bottom: 70px;
    min-height: 80vh;
}

.staff-hero {
    background: linear-gradient(140deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 22px;
}

.eyebrow {
    display: inline-block;
    background: #dbeafe;
    color: #1e3a8a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.76rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
}

.staff-hero h2 {
    font-size: 2.1rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.staff-hero p {
    color: var(--text-muted);
    max-width: 700px;
}

.staff-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.staff-option-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 16px -10px rgba(15, 23, 42, 0.2);
}

.option-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.staff-option-card h3 {
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.staff-option-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

@media (max-width: 700px) {
    .staff-landing-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .staff-hero {
        padding: 24px;
    }

    .staff-hero h2 {
        font-size: 1.7rem;
    }
}
