.careers-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.careers-wrap h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.careers-lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.careers-wrap p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.careers-empty {
    color: #666;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.job-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.job-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.25rem 1.5rem;
}

.job-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.job-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

.job-card-desc {
    color: #555;
    line-height: 1.7;
    margin: 0.85rem 0 1.1rem;
}

.job-card-apply {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-card-apply:hover {
    background: var(--primary-hover);
}

/* --- application form --- */
.apply-back {
    margin-bottom: 0.5rem;
}

.apply-back a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.apply-error {
    color: var(--error-fg);
    background: var(--error-bg);
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.5rem;
}

.apply-form label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.6rem;
}

.apply-form .req { color: #ef4444; }
.apply-form .opt { font-weight: 400; color: var(--text-muted); }

.apply-form input,
.apply-form textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
}

.apply-form textarea {
    resize: vertical;
}

.apply-submit {
    margin-top: 1.25rem;
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.apply-submit:hover {
    background: var(--primary-hover);
}
