/* --- Join Staff Page Styles --- */
.staff-apply-section {
    padding-top: 120px;
    padding-bottom: 70px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.staff-apply-card {
    width: 100%;
    max-width: 860px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 18px 28px -12px rgba(15, 23, 42, 0.18);
}

.staff-apply-card h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.apply-intro {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

.staff-apply-card h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.apply-rules {
    margin: 0 0 24px 22px;
    color: var(--text-main);
}

.apply-rules li {
    margin-bottom: 10px;
}

.apply-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.apply-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}

.apply-info-box h4 {
    font-size: 1rem;
    color: var(--dark-bg);
    margin-bottom: 6px;
}

.apply-info-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.apply-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    color: #1e3a8a;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
}

.apply-note i {
    margin-top: 2px;
}

@media (max-width: 700px) {
    .staff-apply-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .staff-apply-card {
        padding: 24px;
        border-radius: 14px;
    }

    .staff-apply-card h2 {
        font-size: 1.6rem;
    }
}
