*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:Arial, sans-serif;
}

body{
    background:#f6fbff;
    color:#0f172a;
    --career-title-font-size:46px;
    --career-content-font-size:22px;
}

.submission-toast{
    position:fixed;
    top:18px;
    left:50%;
    z-index:9999;
    width:min(calc(100% - 32px), 620px);
    padding:16px 20px;
    border-radius:12px;
    background:#0f766e;
    color:#ffffff;
    box-shadow:0 18px 42px rgba(15,118,110,0.25);
    font-size:16px;
    font-weight:800;
    line-height:1.45;
    text-align:center;
    opacity:0;
    pointer-events:none;
    transform:translate(-50%, -18px);
    transition:opacity 0.25s ease, transform 0.25s ease;
}

.submission-toast.show{
    opacity:1;
    transform:translate(-50%, 0);
}

.page-shell{
    width:92%;
    margin:0 auto;
    padding:56px 0;
}

.page-header{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:56px;
    border-radius:18px;
    min-height:480px;
    display:grid;
    grid-template-columns:minmax(0, 1.25fr) minmax(0, 0.75fr);
    align-content:center;
    align-items:center;
    background:#001b44;
    color:#ffffff;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    animation:fadeUp 0.75s ease both;
    background-size:auto, cover;
    transition:transform 0.42s ease-out, box-shadow 0.42s ease-out;
}

.page-header:hover{
    transform:translateY(-8px) scale(1.01);
    box-shadow:0 22px 46px rgba(0,174,239,0.16);
    background-size:auto, cover;
}

.page-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,27,68,0.9), rgba(0,27,68,0.58) 48%, rgba(0,27,68,0.18)),
        url("../assets/images/careers-background.png") center/cover no-repeat;
    z-index:0;
    transform:scale(1);
    transition:transform 0.75s ease-out;
}

.page-header:hover::before{
    transform:scale(1.08);
}

.page-header::after{
    z-index:2;
}

.page-header::after{
    content:"";
    position:absolute;
    left:56px;
    bottom:0;
    width:180px;
    height:5px;
    border-radius:20px 20px 0 0;
    background:linear-gradient(90deg, #001b44, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:left 0.35s ease, width 0.35s ease;
}

.page-header::selection{
    background:#00AEEF;
}

.page-header:hover::after{
    left:0;
    width:100%;
}

.page-header:hover h1{
    color:#6ee7ff;
    transform:none;
}

.page-header h1{
    transition:color 0.3s ease, transform 0.3s ease;
}

.page-header > *{
    position:relative;
    z-index:1;
    grid-column:1;
    width:100%;
    max-width:780px;
    text-align:left;
}

.page-header p{
    color:#6ee7ff;
    font-size:28px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:20px;
    text-shadow:0 8px 22px rgba(0,0,0,0.3);
}

.page-header h1{
    font-size:46px;
    line-height:1.12;
    margin-bottom:28px;
    text-shadow:0 8px 24px rgba(0,0,0,0.28);
}

.page-header span{
    display:block;
    max-width:100%;
    font-size:19px;
    line-height:1.7;
    margin:0 0 18px;
    text-shadow:0 6px 18px rgba(0,0,0,0.24);
}

.page-header span:last-child{
    margin-bottom:0;
}

.why-join-section{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    margin-top:36px;
    min-height:520px;
    padding:44px 34px;
    border-radius:18px;
    background:#001b44;
    color:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 18px 42px rgba(0,27,68,0.18);
    animation:fadeUp 0.78s ease both;
    transition:transform 0.42s ease-out, box-shadow 0.42s ease-out;
}

.why-join-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(0,27,68,0.9), rgba(0,27,68,0.58)),
        url("../assets/images/careers-benefits-background-v2.png") center/cover no-repeat;
    z-index:0;
    transform:scale(1);
    transition:transform 0.75s ease-out;
}

.why-join-section::after{
    content:"";
    position:absolute;
    left:34px;
    bottom:0;
    width:180px;
    height:5px;
    border-radius:20px 20px 0 0;
    background:linear-gradient(90deg, #001b44, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:left 0.35s ease, width 0.35s ease;
    z-index:2;
}

.why-join-section:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 52px rgba(0,174,239,0.16);
}

.why-join-section:hover::before{
    transform:scale(1.08);
}

.why-join-section:hover::after{
    left:0;
    width:100%;
}

.why-join-section > *{
    position:relative;
    z-index:1;
}

.why-join-section h3{
    font-size:38px;
    margin-bottom:30px;
    color:#ffffff;
    text-shadow:0 8px 22px rgba(0,0,0,0.32);
    transition:color 0.3s ease, transform 0.3s ease;
}

.why-join-section:hover h3{
    color:#6ee7ff;
    transform:translateX(6px);
}

.career-points{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:28px;
}

.career-box{
    min-height:0;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    backdrop-filter:none;
    box-shadow:none;
    transition:transform 0.32s ease;
}

.career-box:hover{
    transform:translateY(-8px);
}

.career-box i{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    border-radius:50%;
    background:rgba(0,174,239,0.18);
    color:#6ee7ff;
    font-size:25px;
    transition:transform 0.32s ease, background 0.32s ease;
}

.career-box:hover i{
    transform:scale(1.1) rotate(6deg);
    background:rgba(0,174,239,0.28);
}

.career-box h4{
    position:relative;
    display:inline-block;
    padding-bottom:12px;
    font-size:24px;
    margin-bottom:12px;
    color:#ffffff;
    text-shadow:0 8px 22px rgba(0,0,0,0.34);
    transition:color 0.3s ease, transform 0.3s ease;
}

.career-box h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg, #ffffff, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:width 0.35s ease;
}

.career-box:hover h4{
    color:#6ee7ff;
    transform:translateX(5px);
}

.career-box:hover h4::after{
    width:100%;
}

.career-box p{
    font-size:var(--career-content-font-size);
    line-height:1.65;
    color:#ffffff;
    text-shadow:0 5px 16px rgba(0,0,0,0.28);
}

.looking-section{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    margin-top:36px;
    min-height:380px;
    padding:44px 34px;
    border-radius:18px;
    background:#001b44;
    color:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 18px 42px rgba(0,27,68,0.18);
    animation:fadeUp 0.78s ease both;
    transition:transform 0.42s ease-out, box-shadow 0.42s ease-out;
}

.looking-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(0,27,68,0.9), rgba(0,27,68,0.58)),
        url("../assets/images/careers-looking-background.png") center/cover no-repeat;
    z-index:0;
    transform:scale(1);
    transition:transform 0.75s ease-out;
}

.looking-section::after{
    content:"";
    position:absolute;
    left:34px;
    bottom:0;
    width:180px;
    height:5px;
    border-radius:20px 20px 0 0;
    background:linear-gradient(90deg, #001b44, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:left 0.35s ease, width 0.35s ease;
    z-index:2;
}

.looking-section:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 52px rgba(0,174,239,0.16);
}

.looking-section:hover::before{
    transform:scale(1.08);
}

.looking-section:hover::after{
    left:0;
    width:100%;
}

.looking-section > *{
    position:relative;
    z-index:1;
    width:50%;
    max-width:none;
    text-align:left;
}

.looking-section h3{
    font-size:38px;
    margin-bottom:24px;
    color:#ffffff;
    text-shadow:0 8px 22px rgba(0,0,0,0.32);
    transition:color 0.3s ease, transform 0.3s ease;
}

.looking-section:hover h3{
    color:#6ee7ff;
    transform:translateX(6px);
}

.looking-section p{
    font-size:var(--career-content-font-size);
    line-height:1.75;
    color:#ffffff;
    text-shadow:0 6px 18px rgba(0,0,0,0.28);
}

.content-section{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-top:36px;
    min-height:430px;
    padding:34px;
    border-radius:18px;
    background:#001b44;
    background-size:auto, cover;
    color:#ffffff;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    animation:fadeUp 0.78s ease both;
    transition:transform 0.42s ease-out, box-shadow 0.42s ease-out;
}

.content-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(0,27,68,0.88), rgba(0,27,68,0.62)),
        url("../assets/images/careers-openings-background.png") center/cover no-repeat;
    z-index:0;
    transform:scale(1);
    transition:transform 0.75s ease-out;
}

.content-section > *{
    position:relative;
    z-index:1;
}

.content-section:hover::before{
    transform:scale(1.08);
}

.content-section::after{
    content:"";
    position:absolute;
    left:34px;
    bottom:0;
    width:180px;
    height:5px;
    border-radius:20px 20px 0 0;
    background:linear-gradient(90deg, #001b44, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:left 0.35s ease, width 0.35s ease;
    z-index:2;
}

.content-section:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 42px rgba(0,174,239,0.14);
    background-size:auto, cover;
}

.content-section:hover::after{
    left:0;
    width:100%;
}

.content-section h2{
    position:relative;
    font-size:38px;
    margin-bottom:28px;
    display:inline-block;
    padding-bottom:12px;
    text-shadow:0 8px 22px rgba(0,0,0,0.32);
    transition:color 0.3s ease, transform 0.3s ease;
}

.content-section h2::after{
    content:none;
}

.content-section:hover h2{
    color:#6ee7ff;
    transform:translateX(6px);
}

.content-section:hover h2::after{
    width:auto;
}

.career-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    width:100%;
    max-width:none;
    perspective:900px;
}

.career-entry{
    position:relative;
    padding:18px 0;
    color:#ffffff;
    animation:cardRise 0.75s cubic-bezier(.2,.8,.2,1) both;
    transition:transform 0.3s ease;
}

.career-entry:hover{
    transform:translateY(-6px);
}

.career-entry h3{
    position:relative;
    display:inline-block;
    padding-bottom:12px;
    margin-bottom:10px;
    color:#ffffff;
    font-size:24px;
    text-shadow:0 8px 22px rgba(0,0,0,0.34);
    transition:color 0.3s ease, transform 0.3s ease;
}

.career-entry h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg, #ffffff, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:width 0.35s ease;
}

.career-entry:hover h3{
    color:#6ee7ff;
    transform:translateX(5px);
}

.career-entry:hover h3::after{
    width:100%;
}

.career-entry p{
    max-width:520px;
    line-height:1.7;
    font-size:var(--career-content-font-size);
    color:#ffffff;
    text-shadow:0 5px 16px rgba(0,0,0,0.28);
}

.career-card{
    position:relative;
    overflow:hidden;
    padding:26px;
    border-radius:14px;
    background:rgba(255,255,255,0.16);
    color:#ffffff;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.28);
    box-shadow:0 8px 22px rgba(0,0,0,0.16);
    transform-style:preserve-3d;
    transition:transform 0.35s ease, box-shadow 0.35s ease;
    animation:cardRise 0.75s cubic-bezier(.2,.8,.2,1) both;
}

.career-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1px;
    background:linear-gradient(135deg, rgba(0,174,239,0.85), transparent 32%, rgba(0,27,68,0.38));
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:opacity 0.35s ease;
    pointer-events:none;
}

.career-card::after{
    content:none;
}

.career-card:hover{
    transform:translateY(-10px) rotateX(2deg);
    box-shadow:0 16px 34px rgba(0,174,239,0.16);
}

.career-card:hover::before{
    opacity:1;
}

.career-card:hover::after{
    left:auto;
}

.career-card h3{
    position:relative;
    display:inline-block;
    padding-bottom:12px;
    margin-bottom:10px;
    color:#ffffff;
    transition:color 0.3s ease, transform 0.3s ease;
}

.career-card h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg, #ffffff, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:width 0.35s ease;
}

.career-card:hover h3{
    color:#6ee7ff;
    transform:translateX(5px);
}

.career-card:hover h3::after{
    width:100%;
}

.career-card p{
    line-height:1.6;
}

.application-section{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    display:grid;
    grid-template-columns:minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap:28px;
    align-items:center;
    margin-top:42px;
    min-height:560px;
    padding:34px;
    border-radius:18px;
    background:#001b44;
    background-size:auto, cover;
    box-shadow:0 18px 42px rgba(0,27,68,0.2);
    animation:fadeUp 0.8s ease both;
    transition:transform 0.42s ease-out, box-shadow 0.42s ease-out;
}

.application-section:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 52px rgba(0,174,239,0.16);
    background-size:auto, cover;
}

.application-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(0,27,68,0.9), rgba(0,27,68,0.58)),
        url("../assets/images/careers-apply-background.png") center/cover no-repeat;
    z-index:0;
    transform:scale(1);
    transition:transform 0.75s ease-out;
}

.application-section:hover::before{
    transform:scale(1.08);
}

.application-section::after{
    content:"";
    position:absolute;
    left:34px;
    bottom:0;
    width:180px;
    height:5px;
    border-radius:20px 20px 0 0;
    background:linear-gradient(90deg, #001b44, #00AEEF, #6ee7ff);
    background-size:220% 100%;
    animation:lineFlow 3s linear infinite;
    transition:left 0.35s ease, width 0.35s ease;
    z-index:2;
}

.application-section:hover::after{
    left:0;
    width:100%;
}

.application-section > *{
    position:relative;
    z-index:1;
}

.application-copy{
    color:#ffffff;
    position:sticky;
    top:150px;
    animation:slideInLeft 0.85s ease both;
}

.application-copy p{
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
    color:#6ee7ff;
    font-size:var(--career-content-font-size);
    text-shadow:0 8px 22px rgba(0,0,0,0.28);
}

.application-copy h2{
    font-size:var(--career-title-font-size);
    line-height:1.12;
    margin-bottom:16px;
    background:linear-gradient(90deg, #ffffff, #d8f5ff, #ffffff);
    background-size:220% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:textShine 4s linear infinite;
}

.application-copy span{
    display:block;
    font-size:var(--career-content-font-size);
    line-height:1.7;
    max-width:390px;
    color:#ffffff;
    text-shadow:0 6px 18px rgba(0,0,0,0.28);
}

.application-form{
    position:relative;
    overflow:visible;
    padding:0;
    border-radius:0;
    background:transparent;
    border:0;
    backdrop-filter:none;
    box-shadow:none;
    animation:formFloatIn 0.85s cubic-bezier(.2,.8,.2,1) both;
}

.application-form::before{
    content:none;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
}

.application-form label{
    display:flex;
    flex-direction:column;
    gap:9px;
    margin-bottom:18px;
    color:#ffffff;
    font-size:var(--career-content-font-size);
    font-weight:800;
    animation:fieldPop 0.55s ease both;
}

.application-form label:nth-child(1){ animation-delay:0.08s; }
.application-form label:nth-child(2){ animation-delay:0.14s; }
.application-form label:nth-child(3){ animation-delay:0.2s; }
.application-form label:nth-child(4){ animation-delay:0.26s; }
.application-form label:nth-child(5){ animation-delay:0.32s; }
.application-form label:nth-child(6){ animation-delay:0.38s; }
.application-form > label:nth-of-type(1){ animation-delay:0.44s; }
.application-form > label:nth-of-type(2){ animation-delay:0.5s; }

.application-form input,
.application-form select,
.application-form textarea{
    width:100%;
    border:1px solid rgba(255,255,255,0.28);
    border-radius:12px;
    padding:14px 15px;
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    font-size:var(--career-content-font-size);
    outline:none;
    transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.application-form input::placeholder,
.application-form textarea::placeholder{
    color:#ffffff;
}

.application-form select option{
    color:#0f172a;
}

.application-form textarea{
    resize:vertical;
    min-height:130px;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus{
    border-color:#00AEEF;
    box-shadow:0 0 0 4px rgba(0,174,239,0.16);
    transform:translateY(-2px);
    background:rgba(255,255,255,0.16);
}

.application-form input[type="file"]{
    padding:12px;
    cursor:pointer;
}

.file-upload-row{
    display:grid;
    grid-template-columns:1fr 44px;
    gap:10px;
    align-items:center;
}

.application-form input[type="file"]::file-selector-button{
    margin-right:12px;
    border:0;
    border-radius:10px;
    padding:10px 14px;
    background:rgba(0,27,68,0.9);
    color:#ffffff;
    font-size:var(--career-content-font-size);
    font-weight:800;
    cursor:pointer;
}

.remove-file-btn{
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,0.18);
    color:rgba(255,255,255,0.76);
    font-size:28px;
    line-height:1;
    font-weight:700;
    cursor:not-allowed;
    opacity:0.45;
    transform:scale(0.9);
    transition:transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.remove-file-btn.active{
    background:linear-gradient(135deg, #ef4444, #b91c1c);
    color:#ffffff;
    cursor:pointer;
    opacity:1;
    transform:scale(1);
    box-shadow:0 10px 22px rgba(239,68,68,0.24);
}

.remove-file-btn.active:hover{
    transform:scale(1.08) rotate(90deg);
}

.apply-btn{
    width:100%;
    border:0;
    border-radius:14px;
    padding:15px 22px;
    background:linear-gradient(135deg, #00AEEF, #123d7a);
    color:#ffffff;
    font-size:var(--career-content-font-size);
    font-weight:800;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(0,174,239,0.25);
    transition:transform 0.25s ease, box-shadow 0.25s ease;
    position:relative;
    overflow:hidden;
}

.apply-btn::before{
    content:none;
}

.apply-btn:hover{
    transform:translateY(-4px) scale(1.01);
    box-shadow:0 18px 34px rgba(0,174,239,0.3);
}

.apply-btn:hover::before{
    left:auto;
}

.apply-btn.submitted{
    background:linear-gradient(135deg, #00c853, #009624);
}

.form-status{
    min-height:22px;
    margin-top:14px;
    color:#00713d;
    font-weight:800;
    text-align:center;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(22px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Content-only typography boost. Section headings stay unchanged. */
.page-header span,
.career-box p,
.looking-section p,
.career-entry p,
.career-card p,
.application-copy span,
.application-form label,
.application-form input,
.application-form select,
.application-form textarea,
.form-status{
    font-size:22px !important;
    font-weight:800 !important;
}

.application-copy p{
    font-size:22px !important;
    font-weight:900 !important;
}

@media(max-width:992px){
    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:20px !important;
    }
}

@media(max-width:768px){
    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:18px !important;
        font-weight:800 !important;
    }
}

/* True final responsive override for the careers page. */
@media(min-width:641px) and (max-width:900px){
    .page-shell{
        width:92%;
        padding:28px 0;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:24px 20px !important;
        border-radius:16px;
        margin-top:24px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:28px !important;
        line-height:1.18;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:26px !important;
        line-height:1.2;
        margin-bottom:18px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.5 !important;
        font-weight:700 !important;
    }

    .career-points,
    .career-list,
    .form-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:14px;
    }

    .career-box{
        padding:12px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:18px !important;
        line-height:1.22;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:20px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:46px;
        padding:11px 12px !important;
        border-radius:11px;
    }
}

@media(max-width:640px){
    .page-shell{
        width:94%;
        padding:18px 0 26px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:16px 12px !important;
        border-radius:12px;
        margin-top:16px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:20px !important;
        line-height:1.16;
        margin-bottom:12px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:19px !important;
        line-height:1.18;
        margin-bottom:13px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10.5px !important;
        line-height:1.34 !important;
        font-weight:700 !important;
    }

    .page-header span{
        margin-bottom:8px;
    }

    .career-points,
    .career-list{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:8px;
    }

    .career-box,
    .career-entry{
        padding:8px;
        border-radius:10px;
    }

    .career-box i{
        width:30px;
        height:30px;
        margin-bottom:8px;
        font-size:14px;
    }

    .career-box h4,
    .career-entry h3{
        padding-bottom:8px;
        margin-bottom:5px;
        font-size:12px !important;
        line-height:1.16;
    }

    .career-box h4::after,
    .career-entry h3::after{
        width:46px;
        height:3px;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:12px;
    }

    .application-copy{
        position:static;
    }

    .form-grid{
        grid-template-columns:1fr !important;
        gap:0;
    }

    .application-form label{
        gap:5px;
        margin-bottom:9px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:38px;
        padding:9px 10px !important;
        border-radius:9px;
    }

    .application-form textarea{
        min-height:84px;
    }

    .file-upload-row{
        grid-template-columns:1fr 32px !important;
        gap:7px;
    }

    .remove-file-btn{
        width:32px !important;
        height:32px !important;
        font-size:19px !important;
    }

    .application-form input[type="file"]{
        padding:7px !important;
    }

    .application-form input[type="file"]::file-selector-button{
        margin-right:6px;
        padding:6px 8px;
        border-radius:7px;
        font-size:10px !important;
    }

    .apply-btn{
        padding:10px 12px !important;
        border-radius:10px;
        font-size:12px !important;
    }
}

@media(max-width:360px){
    .career-points,
    .career-list{
        grid-template-columns:1fr !important;
    }

    .page-header h1,
    .application-copy h2{
        font-size:18px !important;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10px !important;
    }
}

/* Final responsive fit: match the compact contact-page behavior on tablet and phone. */
@media(min-width:641px) and (max-width:900px){
    .page-shell{
        width:92%;
        padding:28px 0;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:24px 20px !important;
        border-radius:16px;
        margin-top:24px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:28px !important;
        line-height:1.18;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:26px !important;
        line-height:1.2;
        margin-bottom:18px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.5 !important;
        font-weight:700 !important;
    }

    .career-points,
    .career-list,
    .form-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:14px;
    }

    .career-box{
        padding:12px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:18px !important;
        line-height:1.22;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:20px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:46px;
        padding:11px 12px !important;
        border-radius:11px;
    }
}

@media(max-width:640px){
    .page-shell{
        width:94%;
        padding:18px 0 26px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:16px 12px !important;
        border-radius:12px;
        margin-top:16px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:20px !important;
        line-height:1.16;
        margin-bottom:12px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:19px !important;
        line-height:1.18;
        margin-bottom:13px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10.5px !important;
        line-height:1.34 !important;
        font-weight:700 !important;
    }

    .page-header span{
        margin-bottom:8px;
    }

    .career-points,
    .career-list{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:8px;
    }

    .career-box,
    .career-entry{
        padding:8px;
        border-radius:10px;
    }

    .career-box i{
        width:30px;
        height:30px;
        margin-bottom:8px;
        font-size:14px;
    }

    .career-box h4,
    .career-entry h3{
        padding-bottom:8px;
        margin-bottom:5px;
        font-size:12px !important;
        line-height:1.16;
    }

    .career-box h4::after,
    .career-entry h3::after{
        width:46px;
        height:3px;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:12px;
    }

    .application-copy{
        position:static;
    }

    .form-grid{
        grid-template-columns:1fr !important;
        gap:0;
    }

    .application-form label{
        gap:5px;
        margin-bottom:9px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:38px;
        padding:9px 10px !important;
        border-radius:9px;
    }

    .application-form textarea{
        min-height:84px;
    }

    .file-upload-row{
        grid-template-columns:1fr 32px !important;
        gap:7px;
    }

    .remove-file-btn{
        width:32px !important;
        height:32px !important;
        font-size:19px !important;
    }

    .application-form input[type="file"]{
        padding:7px !important;
    }

    .application-form input[type="file"]::file-selector-button{
        margin-right:6px;
        padding:6px 8px;
        border-radius:7px;
        font-size:10px !important;
    }

    .apply-btn{
        padding:10px 12px !important;
        border-radius:10px;
        font-size:12px !important;
    }
}

@media(max-width:360px){
    .career-points,
    .career-list{
        grid-template-columns:1fr !important;
    }

    .page-header h1,
    .application-copy h2{
        font-size:18px !important;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10px !important;
    }
}

/* True final desktop visibility pass for Careers. */
@media(min-width:1025px){
    body{
        --career-title-font-size:36px;
        --career-content-font-size:15px;
    }

    .page-shell{
        width:min(92%, 1240px);
        padding:32px 0 46px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        border-radius:16px;
    }

    .page-header{
        min-height:420px !important;
        padding:42px 48px;
        grid-template-columns:minmax(0, 1fr);
    }

    .page-header > *{
        max-width:760px;
    }

    .page-header p{
        margin-bottom:14px;
        font-size:20px;
        line-height:1.25;
    }

    .page-header h1{
        margin-bottom:20px;
        font-size:40px;
        line-height:1.14;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.48 !important;
    }

    .why-join-section,
    .looking-section,
    .content-section{
        margin-top:28px;
        padding:32px 30px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        margin-bottom:20px;
        font-size:30px;
        line-height:1.18;
    }

    .career-points{
        gap:18px;
    }

    .career-box i{
        width:44px;
        height:44px;
        margin-bottom:12px;
        font-size:18px;
    }

    .career-box h4,
    .career-entry h3,
    .career-card h3{
        margin-bottom:8px;
        padding-bottom:9px;
        font-size:19px;
        line-height:1.22;
    }

    .looking-section > *{
        width:58%;
    }

    .content-section{
        padding:30px;
    }

    .career-list{
        gap:18px;
    }

    .career-entry{
        padding:12px 0;
    }

    .career-card{
        padding:18px;
        border-radius:12px;
    }

    .application-section{
        margin-top:30px;
        padding:30px;
        grid-template-columns:minmax(240px, 0.72fr) minmax(0, 1.28fr);
        gap:24px;
    }

    .application-copy{
        top:128px;
    }

    .application-copy h2{
        margin-bottom:12px;
        font-size:36px;
    }

    .form-grid{
        gap:14px;
    }

    .application-form label{
        gap:7px;
        margin-bottom:14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:44px;
        padding:11px 13px;
        border-radius:11px;
    }

    .application-form textarea{
        min-height:110px;
    }

    .file-upload-row{
        grid-template-columns:1fr 38px;
        gap:8px;
    }

    .remove-file-btn{
        width:38px;
        height:38px;
        font-size:22px;
    }

    .application-form input[type="file"]::file-selector-button{
        padding:8px 10px;
        font-size:12px;
    }

    .apply-btn{
        padding:12px 18px;
        border-radius:12px;
        font-size:15px;
    }
}

@media(min-width:1025px) and (max-width:1400px){
    .page-shell{
        width:91%;
        padding-top:28px;
    }

    .page-header{
        min-height:400px !important;
        padding:38px 44px;
    }

    .page-header h1{
        font-size:38px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:28px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:14.5px !important;
        line-height:1.44 !important;
    }
}

/* True final desktop visibility pass for Careers. */
@media(min-width:1025px){
    body{
        --career-title-font-size:36px;
        --career-content-font-size:15px;
    }

    .page-shell{
        width:min(92%, 1240px);
        padding:32px 0 46px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        border-radius:16px;
    }

    .page-header{
        min-height:420px !important;
        padding:42px 48px;
        grid-template-columns:minmax(0, 1fr);
    }

    .page-header > *{
        max-width:760px;
    }

    .page-header p{
        margin-bottom:14px;
        font-size:20px;
        line-height:1.25;
    }

    .page-header h1{
        margin-bottom:20px;
        font-size:40px;
        line-height:1.14;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.48 !important;
    }

    .why-join-section,
    .looking-section,
    .content-section{
        margin-top:28px;
        padding:32px 30px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        margin-bottom:20px;
        font-size:30px;
        line-height:1.18;
    }

    .career-points{
        gap:18px;
    }

    .career-box i{
        width:44px;
        height:44px;
        margin-bottom:12px;
        font-size:18px;
    }

    .career-box h4,
    .career-entry h3,
    .career-card h3{
        margin-bottom:8px;
        padding-bottom:9px;
        font-size:19px;
        line-height:1.22;
    }

    .looking-section > *{
        width:58%;
    }

    .content-section{
        padding:30px;
    }

    .career-list{
        gap:18px;
    }

    .career-entry{
        padding:12px 0;
    }

    .career-card{
        padding:18px;
        border-radius:12px;
    }

    .application-section{
        margin-top:30px;
        padding:30px;
        grid-template-columns:minmax(240px, 0.72fr) minmax(0, 1.28fr);
        gap:24px;
    }

    .application-copy{
        top:128px;
    }

    .application-copy h2{
        margin-bottom:12px;
        font-size:36px;
    }

    .form-grid{
        gap:14px;
    }

    .application-form label{
        gap:7px;
        margin-bottom:14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:44px;
        padding:11px 13px;
        border-radius:11px;
    }

    .application-form textarea{
        min-height:110px;
    }

    .file-upload-row{
        grid-template-columns:1fr 38px;
        gap:8px;
    }

    .remove-file-btn{
        width:38px;
        height:38px;
        font-size:22px;
    }

    .application-form input[type="file"]::file-selector-button{
        padding:8px 10px;
        font-size:12px;
    }

    .apply-btn{
        padding:12px 18px;
        border-radius:12px;
        font-size:15px;
    }
}

@media(min-width:1025px) and (max-width:1400px){
    .page-shell{
        width:91%;
        padding-top:28px;
    }

    .page-header{
        min-height:400px !important;
        padding:38px 44px;
    }

    .page-header h1{
        font-size:38px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:28px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:14.5px !important;
        line-height:1.44 !important;
    }
}

/* Final small-mobile fit pass for Careers and Apply Now form. */
@media(max-width:640px){
    body{
        --career-title-font-size:22px;
        --career-content-font-size:12px;
    }

    .page-shell{
        width:94%;
        padding:24px 0;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:18px 14px !important;
        border-radius:12px;
    }

    .page-header h1,
    .application-copy h2{
        font-size:22px !important;
        line-height:1.18;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:21px !important;
        line-height:1.2;
        margin-bottom:16px;
    }

    .career-points,
    .career-list{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:8px;
    }

    .career-box,
    .career-entry{
        padding:10px;
        border-radius:10px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:13px !important;
        line-height:1.18;
        margin-bottom:6px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-copy p,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status{
        font-size:11.5px !important;
        line-height:1.4 !important;
        font-weight:700 !important;
    }

    .application-section{
        gap:14px;
    }

    .application-copy{
        max-width:100%;
    }

    .form-grid{
        grid-template-columns:1fr !important;
        gap:0;
    }

    .application-form{
        padding:0 !important;
    }

    .application-form label{
        gap:6px;
        margin-bottom:10px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:40px;
        padding:10px 11px !important;
        border-radius:9px;
    }

    .application-form textarea{
        min-height:92px;
    }

    .file-upload-row{
        grid-template-columns:1fr 34px !important;
        gap:7px;
    }

    .remove-file-btn{
        width:34px !important;
        height:34px !important;
        font-size:20px !important;
    }

    .application-form input[type="file"]{
        padding:8px !important;
    }

    .application-form input[type="file"]::file-selector-button{
        margin-right:7px;
        padding:7px 9px;
        border-radius:8px;
        font-size:11px;
    }

    .apply-btn{
        padding:11px 14px !important;
        border-radius:10px;
        font-size:13px !important;
    }
}

@media(max-width:360px){
    .career-points,
    .career-list{
        grid-template-columns:1fr !important;
    }

    .page-header h1,
    .application-copy h2{
        font-size:20px !important;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        font-size:11px !important;
    }
}

/* Responsive refinement: tablet keeps useful two-column rows, phones stay stacked. */
@media(min-width:641px) and (max-width:900px){
    .page-shell{
        width:94%;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        padding:30px 24px;
        border-radius:16px;
    }

    .career-points,
    .career-list,
    .form-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:16px;
    }

    .career-box{
        padding:16px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:20px;
        line-height:1.25;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:16px !important;
        line-height:1.58;
    }
}

@media(max-width:640px){
    .page-shell{
        width:93%;
        padding:28px 0;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        padding:18px 14px;
        border-radius:12px;
        min-height:auto;
    }

    .page-header h1,
    .application-copy h2{
        font-size:22px;
        line-height:1.18;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:21px;
        line-height:1.22;
        margin-bottom:16px;
    }

    .career-points,
    .career-list{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:8px;
    }

    .career-box,
    .career-entry{
        padding:10px;
        border-radius:10px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:13px;
        line-height:1.18;
        margin-bottom:6px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:11.5px !important;
        line-height:1.4;
        font-weight:700 !important;
    }

    .application-section{
        gap:14px;
    }

    .application-copy{
        max-width:100%;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .application-form label{
        gap:6px;
        margin-bottom:10px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:40px;
        padding:10px 11px;
        border-radius:9px;
        font-size:12px !important;
    }

    .application-form textarea{
        min-height:92px;
    }

    .file-upload-row{
        grid-template-columns:1fr 34px;
        gap:7px;
    }

    .remove-file-btn{
        width:34px;
        height:34px;
        font-size:20px;
    }

    .application-form input[type="file"]{
        padding:8px;
    }

    .application-form input[type="file"]::file-selector-button{
        margin-right:7px;
        padding:7px 9px;
        border-radius:8px;
        font-size:11px;
    }

    .apply-btn{
        padding:11px 14px;
        border-radius:10px;
        font-size:13px !important;
    }
}

@media(max-width:360px){
    .career-points,
    .career-list{
        grid-template-columns:1fr;
    }

    .page-shell{
        width:94%;
    }

    .page-header h1,
    .application-copy h2{
        font-size:20px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        font-size:11px !important;
    }
}

/* Content-only color tuning. Section headings stay unchanged. */
.page-header span,
.career-box p,
.looking-section p,
.career-entry p,
.career-card p,
.application-copy span,
.application-form label,
.application-form input,
.application-form select,
.application-form textarea{
    color:#f1fbff !important;
}

.application-copy p{
    color:#7ee7ff !important;
}

.form-status{
    color:#a7f3d0 !important;
}

@keyframes headerSweep{
    0%, 38%{
        transform:translateX(-100%);
    }

    62%, 100%{
        transform:translateX(100%);
    }
}

@keyframes sectionSweep{
    0%, 42%{
        transform:translateX(-100%);
    }

    68%, 100%{
        transform:translateX(100%);
    }
}

@keyframes lineFlow{
    0%{
        background-position:0% center;
    }

    100%{
        background-position:240% center;
    }
}

@keyframes textShine{
    0%{
        background-position:0% center;
    }

    100%{
        background-position:220% center;
    }
}

@keyframes cardRise{
    from{
        opacity:0;
        transform:translateY(24px) rotateX(8deg);
    }

    to{
        opacity:1;
        transform:translateY(0) rotateX(0);
    }
}

@keyframes slideInLeft{
    from{
        opacity:0;
        transform:translateX(-24px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes formFloatIn{
    from{
        opacity:0;
        transform:translateY(18px) scale(0.98);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes fieldPop{
    from{
        opacity:0;
        transform:translateY(12px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:0.01ms !important;
    }
}

/* Final visibility pass for desktop Careers layouts. */
@media(min-width:1025px){
    body{
        --career-title-font-size:36px;
        --career-content-font-size:15px;
    }

    .page-shell{
        width:min(92%, 1240px);
        padding:32px 0 46px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        border-radius:16px;
    }

    .page-header{
        min-height:420px !important;
        padding:42px 48px;
        grid-template-columns:minmax(0, 1fr);
    }

    .page-header > *{
        max-width:760px;
    }

    .page-header p{
        margin-bottom:14px;
        font-size:20px;
        line-height:1.25;
    }

    .page-header h1{
        margin-bottom:20px;
        font-size:40px;
        line-height:1.14;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.48 !important;
    }

    .why-join-section,
    .looking-section,
    .content-section{
        margin-top:28px;
        padding:32px 30px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        margin-bottom:20px;
        font-size:30px;
        line-height:1.18;
    }

    .career-points{
        gap:18px;
    }

    .career-box i{
        width:44px;
        height:44px;
        margin-bottom:12px;
        font-size:18px;
    }

    .career-box h4,
    .career-entry h3,
    .career-card h3{
        margin-bottom:8px;
        padding-bottom:9px;
        font-size:19px;
        line-height:1.22;
    }

    .looking-section > *{
        width:58%;
    }

    .content-section{
        padding:30px;
    }

    .career-list{
        gap:18px;
    }

    .career-entry{
        padding:12px 0;
    }

    .career-card{
        padding:18px;
        border-radius:12px;
    }

    .application-section{
        margin-top:30px;
        padding:30px;
        grid-template-columns:minmax(240px, 0.72fr) minmax(0, 1.28fr);
        gap:24px;
    }

    .application-copy{
        top:128px;
    }

    .application-copy h2{
        margin-bottom:12px;
        font-size:36px;
    }

    .form-grid{
        gap:14px;
    }

    .application-form label{
        gap:7px;
        margin-bottom:14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:44px;
        padding:11px 13px;
        border-radius:11px;
    }

    .application-form textarea{
        min-height:110px;
    }

    .file-upload-row{
        grid-template-columns:1fr 38px;
        gap:8px;
    }

    .remove-file-btn{
        width:38px;
        height:38px;
        font-size:22px;
    }

    .application-form input[type="file"]::file-selector-button{
        padding:8px 10px;
        font-size:12px;
    }

    .apply-btn{
        padding:12px 18px;
        border-radius:12px;
        font-size:15px;
    }
}

@media(min-width:1025px) and (max-width:1400px){
    .page-shell{
        width:91%;
        padding-top:28px;
    }

    .page-header{
        min-height:400px !important;
        padding:38px 44px;
    }

    .page-header h1{
        font-size:38px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:28px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:14.5px !important;
        line-height:1.44 !important;
    }
}

@media(max-width:900px){
    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        background-size:auto, cover;
    }

    .page-header:hover,
    .why-join-section:hover,
    .looking-section:hover,
    .content-section:hover,
    .application-section:hover{
        background-size:auto, cover;
    }

    .why-join-section{
        min-height:auto;
    }

    .looking-section{
        min-height:auto;
    }

    .career-points{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .content-section{
        min-height:390px;
    }

    .career-list{
        max-width:100%;
    }

    .application-section{
        grid-template-columns:1fr;
        min-height:auto;
        gap:26px;
    }

    .application-copy{
        position:static;
        max-width:640px;
    }
}

@media(max-width:768px){
    body{
        --career-title-font-size:32px;
        --career-content-font-size:16px;
    }

    .page-shell{
        padding:34px 0;
    }

    .page-header{
        grid-template-columns:1fr;
        padding:34px 24px;
        min-height:360px;
        border-radius:16px;
    }

    .page-header:hover,
    .why-join-section:hover,
    .looking-section:hover,
    .content-section:hover,
    .application-section:hover{
        transform:none;
    }

    .page-header h1,
    .application-copy h2{
        font-size:var(--career-title-font-size);
    }

    .page-header span,
    .application-copy span{
        font-size:var(--career-content-font-size);
    }

    .page-header > *{
        width:100%;
    }

    .content-section h2{
        font-size:29px;
        margin-bottom:24px;
    }

    .content-section{
        min-height:380px;
        padding:24px 18px;
        border-radius:16px;
    }

    .why-join-section{
        padding:28px 18px;
        border-radius:16px;
    }

    .looking-section{
        padding:28px 18px;
        border-radius:16px;
    }

    .why-join-section h3{
        font-size:29px;
        margin-bottom:24px;
    }

    .looking-section h3{
        font-size:29px;
        margin-bottom:18px;
    }

    .looking-section p{
        font-size:var(--career-content-font-size);
        line-height:1.65;
    }

    .looking-section > *{
        width:100%;
    }

    .career-points{
        grid-template-columns:1fr;
        gap:16px;
    }

    .career-box{
        min-height:auto;
        padding:0;
    }

    .career-box h4{
        font-size:20px;
        line-height:1.25;
    }

    .career-list{
        grid-template-columns:1fr;
        gap:12px;
    }

    .career-entry{
        padding:12px 0;
    }

    .career-entry h3{
        font-size:20px;
        line-height:1.25;
    }

    .career-entry p{
        font-size:var(--career-content-font-size);
        line-height:1.6;
    }

    .application-section{
        min-height:620px;
        padding:22px;
        border-radius:16px;
        background-size:cover;
    }

    .application-form{
        padding:0;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .file-upload-row{
        grid-template-columns:1fr 40px;
    }

    .remove-file-btn{
        width:40px;
        height:40px;
        font-size:25px;
    }
}

@media(max-width:480px){
    body{
        --career-title-font-size:28px;
    }

    .page-shell{
        width:94%;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        padding:22px 16px;
        border-radius:14px;
    }

    .page-header{
        min-height:330px;
    }

    .content-section{
        min-height:360px;
    }

    .page-header h1,
    .application-copy h2{
        font-size:var(--career-title-font-size);
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        padding:13px 12px;
        font-size:var(--career-content-font-size);
    }

    .apply-btn{
        padding:14px 18px;
    }
}

/* Final content-only typography boost. Section headings stay unchanged. */
.page-header span,
.career-box p,
.looking-section p,
.career-entry p,
.career-card p,
.application-copy span,
.application-form label,
.application-form input,
.application-form select,
.application-form textarea,
.form-status{
    font-size:22px !important;
    font-weight:800 !important;
}

.application-copy p{
    font-size:22px !important;
    font-weight:900 !important;
}

@media(max-width:992px){
    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:20px !important;
    }
}

@media(max-width:768px){
    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:18px !important;
        font-weight:800 !important;
    }
}

/* True final responsive override for the careers page. */
@media(min-width:641px) and (max-width:900px){
    .page-shell{
        width:92%;
        padding:28px 0;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:24px 20px !important;
        border-radius:16px;
        margin-top:24px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:28px !important;
        line-height:1.18;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:26px !important;
        line-height:1.2;
        margin-bottom:18px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.5 !important;
        font-weight:700 !important;
    }

    .career-points,
    .career-list,
    .form-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:14px;
    }

    .career-box{
        padding:12px;
    }

    .career-box h4,
    .career-entry h3{
        font-size:18px !important;
        line-height:1.22;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:20px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:46px;
        padding:11px 12px !important;
        border-radius:11px;
    }
}

@media(max-width:640px){
    .page-shell{
        width:94%;
        padding:18px 0 26px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        padding:16px 12px !important;
        border-radius:12px;
        margin-top:16px;
    }

    .page-header{
        display:block;
        margin-top:0;
    }

    .page-header h1,
    .application-copy h2{
        font-size:20px !important;
        line-height:1.16;
        margin-bottom:12px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:19px !important;
        line-height:1.18;
        margin-bottom:13px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10.5px !important;
        line-height:1.34 !important;
        font-weight:700 !important;
    }

    .page-header span{
        margin-bottom:8px;
    }

    .career-points,
    .career-list{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:8px;
    }

    .career-box,
    .career-entry{
        padding:8px;
        border-radius:10px;
    }

    .career-box i{
        width:30px;
        height:30px;
        margin-bottom:8px;
        font-size:14px;
    }

    .career-box h4,
    .career-entry h3{
        padding-bottom:8px;
        margin-bottom:5px;
        font-size:12px !important;
        line-height:1.16;
    }

    .career-box h4::after,
    .career-entry h3::after{
        width:46px;
        height:3px;
    }

    .application-section{
        grid-template-columns:1fr;
        gap:12px;
    }

    .application-copy{
        position:static;
    }

    .form-grid{
        grid-template-columns:1fr !important;
        gap:0;
    }

    .application-form label{
        gap:5px;
        margin-bottom:9px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:38px;
        padding:9px 10px !important;
        border-radius:9px;
    }

    .application-form textarea{
        min-height:84px;
    }

    .file-upload-row{
        grid-template-columns:1fr 32px !important;
        gap:7px;
    }

    .remove-file-btn{
        width:32px !important;
        height:32px !important;
        font-size:19px !important;
    }

    .application-form input[type="file"]{
        padding:7px !important;
    }

    .application-form input[type="file"]::file-selector-button{
        margin-right:6px;
        padding:6px 8px;
        border-radius:7px;
        font-size:10px !important;
    }

    .apply-btn{
        padding:10px 12px !important;
        border-radius:10px;
        font-size:12px !important;
    }
}

@media(max-width:360px){
    .career-points,
    .career-list{
        grid-template-columns:1fr !important;
    }

    .page-header h1,
    .application-copy h2{
        font-size:18px !important;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:10px !important;
    }
}

/* EOF desktop visibility pass for Careers. */
@media(min-width:1025px){
    body{
        --career-title-font-size:36px;
        --career-content-font-size:15px;
    }

    .page-shell{
        width:min(92%, 1240px);
        padding:32px 0 46px;
    }

    .page-header,
    .why-join-section,
    .looking-section,
    .content-section,
    .application-section{
        min-height:auto !important;
        border-radius:16px;
    }

    .page-header{
        min-height:420px !important;
        padding:42px 48px;
        grid-template-columns:minmax(0, 1fr);
    }

    .page-header > *{
        max-width:760px;
    }

    .page-header p{
        margin-bottom:14px;
        font-size:20px;
        line-height:1.25;
    }

    .page-header h1{
        margin-bottom:20px;
        font-size:40px;
        line-height:1.14;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:15px !important;
        line-height:1.48 !important;
    }

    .why-join-section,
    .looking-section,
    .content-section{
        margin-top:28px;
        padding:32px 30px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        margin-bottom:20px;
        font-size:30px;
        line-height:1.18;
    }

    .career-points{
        gap:18px;
    }

    .career-box i{
        width:44px;
        height:44px;
        margin-bottom:12px;
        font-size:18px;
    }

    .career-box h4,
    .career-entry h3,
    .career-card h3{
        margin-bottom:8px;
        padding-bottom:9px;
        font-size:19px;
        line-height:1.22;
    }

    .looking-section > *{
        width:58%;
    }

    .content-section{
        padding:30px;
    }

    .career-list{
        gap:18px;
    }

    .career-entry{
        padding:12px 0;
    }

    .career-card{
        padding:18px;
        border-radius:12px;
    }

    .application-section{
        margin-top:30px;
        padding:30px;
        grid-template-columns:minmax(240px, 0.72fr) minmax(0, 1.28fr);
        gap:24px;
    }

    .application-copy{
        top:128px;
    }

    .application-copy h2{
        margin-bottom:12px;
        font-size:36px;
    }

    .form-grid{
        gap:14px;
    }

    .application-form label{
        gap:7px;
        margin-bottom:14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea{
        min-height:44px;
        padding:11px 13px;
        border-radius:11px;
    }

    .application-form textarea{
        min-height:110px;
    }

    .file-upload-row{
        grid-template-columns:1fr 38px;
        gap:8px;
    }

    .remove-file-btn{
        width:38px;
        height:38px;
        font-size:22px;
    }

    .application-form input[type="file"]::file-selector-button{
        padding:8px 10px;
        font-size:12px;
    }

    .apply-btn{
        padding:12px 18px;
        border-radius:12px;
        font-size:15px;
    }
}

@media(min-width:1025px) and (max-width:1400px){
    .page-shell{
        width:91%;
        padding-top:28px;
    }

    .page-header{
        min-height:400px !important;
        padding:38px 44px;
    }

    .page-header h1{
        font-size:38px;
    }

    .why-join-section h3,
    .looking-section h3,
    .content-section h2{
        font-size:28px;
    }

    .page-header span,
    .career-box p,
    .looking-section p,
    .career-entry p,
    .career-card p,
    .application-copy span,
    .application-form label,
    .application-form input,
    .application-form select,
    .application-form textarea,
    .form-status,
    .application-copy p{
        font-size:14.5px !important;
        line-height:1.44 !important;
    }
}
