.company-career-page {
    background: #f4f6f7;
    color: #17313d;
}

.career-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 78px;

    background:
        linear-gradient(
            115deg,
            #073f56 0%,
            #0b566e 58%,
            #0c6179 100%
        );

    color: #ffffff;
}

.career-hero::before {
    content: "";

    position: absolute;
    top: -230px;
    right: -80px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.career-hero::after {
    content: "";

    position: absolute;
    right: 120px;
    bottom: -190px;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.career-hero-inner {
    position: relative;
    z-index: 1;
}

.career-hero-copy {
    max-width: 820px;
}

.career-hero h1 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(46px, 4.7vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: #ffffff;
}

.career-hero h1 strong {
    font-weight: 800;
}

.career-hero-subtitle {
    max-width: 720px;
    margin: 22px 0 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 1.25vw, 20px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.5;

    color: #ffffff;
}

.career-hero-description {
    max-width: 760px;
    margin: 28px 0 0;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.86);
}

.career-hero-description strong {
    color: #ffffff;
    font-weight: 700;
}

.career-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: #d5ad59;
}

.career-list-section {
    padding: 64px 0 90px;
}

.career-filter {
    position: relative;
    z-index: 3;

    margin-top: -98px;
    margin-bottom: 58px;
    padding: 26px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 14px 38px rgba(16, 47, 59, 0.12);
}

.career-filter-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(220px, 0.8fr)
        auto;

    gap: 16px;
    align-items: end;
}

.career-field,
.career-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.career-field label,
.career-form-field label {
    font-size: 13px;
    font-weight: 600;

    color: #17313d;
}

.career-field input,
.career-field select,
.career-form-field input,
.career-form-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d8e0e4;
    border-radius: 5px;

    background: #ffffff;
    color: #17313d;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.career-field input,
.career-field select,
.career-form-field input {
    min-height: 48px;
    padding: 0 14px;
}

.career-form-field textarea {
    min-height: 120px;
    padding: 13px 14px;

    resize: vertical;

    line-height: 1.65;
}

.career-field input:focus,
.career-field select:focus,
.career-form-field input:focus,
.career-form-field textarea:focus {
    border-color: #0c6179;

    box-shadow:
        0 0 0 3px rgba(12, 97, 121, 0.1);
}

.career-filter-action button,
.career-submit-button {
    min-height: 48px;

    border: 0;
    border-radius: 5px;

    background: #073f56;
    color: #ffffff;

    font: inherit;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.career-filter-action button {
    padding: 0 25px;
}

.career-filter-action button:hover,
.career-submit-button:hover:not(:disabled) {
    background: #0b566e;

    transform: translateY(-1px);
}

.career-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 28px;
}

.career-section-heading span {
    display: block;

    margin-bottom: 7px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: #b68a34;
}

.career-section-heading h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 3vw, 38px);

    color: #073f56;
}

.career-section-heading > p {
    margin: 0;

    font-size: 14px;

    color: #71808a;
}

.career-job-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.career-job-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-height: 320px;
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 72%,
            #f5f9fa 100%
        );

    border: 1px solid #dce6e9;
    border-radius: 10px;

    box-shadow:
        0 8px 24px rgba(7, 63, 86, 0.05);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.career-job-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #d5ad59 0%,
            #d5ad59 28%,
            #0b6784 28%,
            #0b6784 100%
        );
}

.career-job-card::after {
    content: "";

    position: absolute;
    top: -75px;
    right: -75px;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(11, 103, 132, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.career-job-card:hover {
    transform: translateY(-5px);

    border-color: #b9d0d8;

    box-shadow:
        0 18px 38px rgba(7, 63, 86, 0.11);
}

.career-job-card-top {
    position: relative;
    z-index: 1;
}

.career-featured {
    display: inline-flex;

    margin-bottom: 12px;
    padding: 5px 9px;

    border-radius: 20px;

    background: #f8eed8;
    color: #89641d;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.career-job-card h3 {
    position: relative;
    z-index: 1;

    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;

    color: #073f56;
}

.career-job-card h3::after {
    content: "";

    display: block;

    width: 38px;
    height: 3px;

    margin-top: 10px;

    border-radius: 20px;

    background: #d5ad59;
}

.career-department {
    margin: 9px 0 0;

    font-size: 13px;

    color: #77868e;
}

.career-meta {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin: 24px 0 19px;
}

.career-meta span {
    display: flex;
    flex-direction: column;

    min-width: 88px;

    gap: 3px;

    padding: 9px 12px;

    background: #f3f7f8;

    border: 1px solid #e2eaed;
    border-radius: 6px;

    font-size: 12px;

    color: #405761;
}

.career-meta strong {
    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #899ba3;
}

.career-job-summary {
    position: relative;
    z-index: 1;

    margin: 0 0 24px;

    color: #53656e;

    font-size: 14px;
    line-height: 1.75;
}

.career-job-footer {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 18px;

    margin-top: auto;
    padding-top: 20px;

    border-top: 1px solid #e4ebed;
}

.career-job-footer > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.career-job-footer small {
    font-size: 10px;

    color: #929da3;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.career-job-footer strong {
    font-size: 12px;

    color: #40525b;
}

.career-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 38px;
    padding: 0 15px;

    border: 1px solid #0b6784;
    border-radius: 5px;

    background: #ffffff;
    color: #075b77;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.career-detail-button span {
    transition: transform 0.2s ease;
}

.career-detail-button:hover {
    background: #073f56;
    color: #ffffff;
}

.career-detail-button:hover span {
    transform: translateX(4px);
}

.career-empty {
    grid-column: 1 / -1;

    padding: 65px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e3e8ea;
    border-radius: 7px;
}

.career-empty h3 {
    margin: 0 0 10px;

    color: #073f56;
}

.career-empty p {
    max-width: 560px;

    margin: 0 auto;

    color: #728089;

    line-height: 1.7;
}

.career-empty a {
    display: inline-block;

    margin-top: 20px;

    color: #075b77;

    font-weight: 600;
    text-decoration: none;
}

.career-pagination {
    margin-top: 36px;
}

.career-detail-hero {
    padding: 105px 0 55px;

    background: #073f56;
    color: #ffffff;
}

.career-back-link {
    display: inline-block;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    text-decoration: none;
}

.career-back-link:hover {
    color: #ffffff;
}

.career-detail-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(290px, 0.7fr);

    gap: 60px;
    align-items: end;
}

.career-detail-heading h1 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 700;
    line-height: 1.08;

    color: #ffffff;
}

.career-detail-heading > div:first-child > p {
    max-width: 720px;

    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;
    line-height: 1.75;
}

.career-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.career-detail-meta div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.career-detail-meta small {
    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.career-detail-meta strong {
    color: #ffffff;

    font-size: 13px;
}

.career-detail-section {
    padding: 58px 0 90px;
}

.career-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(340px, 0.75fr);

    gap: 28px;
    align-items: start;
}

.career-detail-content {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.career-content-card,
.career-application-card {
    background: #ffffff;

    border: 1px solid #e3e8ea;
    border-radius: 7px;
}

.career-content-card {
    padding: 30px;
}

.career-content-card h2,
.career-application-heading h2 {
    margin: 0 0 20px;

    font-family: "Montserrat", sans-serif;
    font-size: 21px;

    color: #073f56;
}

.career-rich-text {
    overflow-wrap: anywhere;

    color: #485b64;

    font-size: 14px;
    line-height: 1.8;
}

.career-rich-text > *:first-child {
    margin-top: 0;
}

.career-rich-text > *:last-child {
    margin-bottom: 0;
}

.career-rich-text ul,
.career-rich-text ol {
    padding-left: 22px;
}

.career-rich-text li + li {
    margin-top: 7px;
}

.career-rich-text a {
    color: #075b77;
}

.career-rich-text blockquote {
    margin: 20px 0;
    padding: 5px 0 5px 18px;

    border-left: 3px solid #d5ad59;

    color: #61727a;
}

.career-rich-text table {
    width: 100%;

    border-collapse: collapse;
}

.career-rich-text th,
.career-rich-text td {
    padding: 9px;

    border: 1px solid #dfe5e8;

    text-align: left;
}

.career-deadline-card {
    border-left: 4px solid #d5ad59;
}

.career-deadline-card.is-closed {
    border-left-color: #b94a48;

    background: #fff8f8;
}

.career-deadline-card > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.career-deadline-card small {
    color: #89979e;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.career-deadline-card strong {
    color: #073f56;

    font-size: 16px;
}

.career-deadline-card.is-closed strong {
    color: #9d3737;
}

.career-application-card {
    position: sticky;
    top: 100px;

    padding: 28px;
}

.career-application-heading {
    margin-bottom: 22px;
    padding-bottom: 20px;

    border-bottom: 1px solid #edf0f1;
}

.career-application-heading > span {
    display: block;

    margin-bottom: 7px;

    color: #b68a34;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.career-application-heading h2 {
    margin-bottom: 8px;
}

.career-application-heading p {
    margin: 0;

    color: #728089;

    font-size: 13px;
    line-height: 1.6;
}

.career-application-card form {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.career-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.career-form-field label span {
    color: #c83b3b;
}

.career-form-field small {
    color: #829098;

    font-size: 11px;
    line-height: 1.5;
}

.career-form-field input[type="file"] {
    height: auto;
    min-height: 48px;

    padding: 10px;
}

.career-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 100%;

    margin-top: 3px;
}

.career-submit-button:disabled {
    background: #aeb8bd;
    color: #ffffff;

    cursor: not-allowed;

    opacity: 1;

    transform: none;
}

.career-application-closed {
    padding: 14px 16px;

    border: 1px solid #efc8c8;
    border-radius: 5px;

    background: #fff3f3;
    color: #8f3737;

    font-size: 12px;
    line-height: 1.6;
}

.career-privacy-note {
    margin: 0;

    text-align: center;

    color: #89969c;

    font-size: 10px;
    line-height: 1.55;
}

.career-alert {
    margin-bottom: 20px;
    padding: 13px 15px;

    border-radius: 5px;

    font-size: 12px;
    line-height: 1.6;
}

.career-alert-success {
    background: #eaf6ef;

    border: 1px solid #badfc8;

    color: #28683f;
}

.career-alert-error {
    background: #fff0f0;

    border: 1px solid #efc7c7;

    color: #8e3333;
}

.career-alert ul {
    margin: 7px 0 0;
    padding-left: 18px;
}

.career-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}

@media (max-width: 980px) {
    .career-job-grid {
        grid-template-columns: 1fr;
    }

    .career-detail-heading,
    .career-detail-layout {
        grid-template-columns: 1fr;
    }

    .career-detail-heading {
        gap: 36px;
    }

    .career-detail-meta {
        max-width: 600px;
    }

    .career-application-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .career-hero {
        padding: 94px 0 92px;
    }

    .career-list-section {
        padding-top: 48px;
    }

    .career-filter {
        margin-top: -86px;
        padding: 20px;
    }

    .career-filter-grid {
        grid-template-columns: 1fr;
    }

    .career-filter-action button {
        width: 100%;
    }

    .career-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .career-job-card {
        min-height: 0;
        padding: 24px;
    }

    .career-job-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-detail-hero {
        padding: 90px 0 45px;
    }

    .career-detail-meta,
    .career-form-grid {
        grid-template-columns: 1fr;
    }

    .career-content-card,
    .career-application-card {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .career-hero h1 {
        font-size: 40px;
    }

    .career-detail-heading h1 {
        font-size: 34px;
    }

    .career-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .career-meta span {
        min-width: 0;
    }
}