.career-hero {
    background: linear-gradient(135deg, #1E5AA8 0%, #174a8c 55%, #123d75 100%);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
}
.career-hero--compact { padding: 3rem 0 2.5rem; }
.career-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 0.75rem;
}
.career-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}
.career-hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    margin-top: 1rem;
}
.career-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.career-hero__tags span {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
}
.career-back {
    color: rgba(255,255,255,.8);
    font-size: 0.875rem;
    font-weight: 500;
}
.career-back:hover { color: #fff; }

.career-why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(30,90,168,.05);
    transition: transform .2s, box-shadow .2s;
}
.career-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30,90,168,.1);
}
.career-why-card__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.875rem;
    background: #e8f4ff;
    color: #1E5AA8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.career-why-card__icon svg { width: 1.5rem; height: 1.5rem; }
.career-why-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.career-why-card__text {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
}

.career-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1E5AA8;
}

.career-job-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(30,90,168,.05);
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}
.career-job-card:hover {
    border-color: #4DA6FF;
    box-shadow: 0 8px 28px rgba(30,90,168,.12);
}
.career-job-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}
.career-job-card:hover .career-job-card__title { color: #1E5AA8; }
.career-job-card__meta {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.career-job-card__side { text-align: right; }
.career-job-card__deadline {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}
.career-job-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #1E5AA8;
    border-radius: 0.625rem;
    white-space: nowrap;
    transition: background .2s;
}
.career-job-card:hover .career-job-card__cta {
    background: #174a8c;
}

.career-detail-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
}
.career-detail-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.career-detail-card__body {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.75;
    white-space: pre-line;
}

.career-apply-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(30,90,168,.08);
}
.career-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}
.career-input, .career-file {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.career-input:focus {
    border-color: #4DA6FF;
    box-shadow: 0 0 0 3px rgba(77,166,255,.2);
}
.career-field-error {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #dc2626;
    line-height: 1.4;
}

.career-apply-card .file-upload--document [data-file-zone] {
    border-color: #dbeafe;
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
}

.career-apply-card .file-upload--document [data-file-zone]:hover {
    border-color: #1E5AA8;
    background: #f0f7ff;
}
.career-submit {
    padding: 0.875rem 1.5rem;
    background: #1E5AA8;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: 0.875rem;
    cursor: pointer;
    transition: background .2s;
}
.career-submit:hover { background: #174a8c; }

.career-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 1rem;
}
.career-cta {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.career-cta-btn {
    display: inline-flex;
    padding: 0.875rem 2rem;
    background: #1E5AA8;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.875rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(30,90,168,.25);
}
.career-cta-btn:hover { background: #174a8c; }

@media (max-width: 640px) {
    .career-job-card__side { text-align: left; width: 100%; }
    .career-job-card__cta { width: 100%; margin-top: 0.5rem; }
}
