.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.gentle-fade {
    transition: opacity 0.3s ease;
}

/* ── Career Hero ── */
.career-hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.career-hero__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.career-hero__inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.career-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .career-hero__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 4vw, 3rem);
    }

    .career-hero__copy {
        text-align: left;
        padding-left: clamp(1rem, 3vw, 3rem);
        justify-self: start;
    }

    .career-hero__kicker {
        justify-content: flex-start;
    }

    .career-hero__actions {
        justify-content: flex-start;
    }

    .career-hero__stats {
        justify-content: flex-start;
    }
}

.career-hero__copy {
    min-width: 0;
}

.career-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0f766e;
}

.career-hero__kicker::after {
    content: "";
    width: 2.5rem;
    height: 2px;
    background: #14b8a6;
    border-radius: 1px;
}

.career-hero__title {
    margin: 1rem 0 0;
    font-size: clamp(2.35rem, 4.8vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #001736;
}

.career-hero__title span {
    color: #e89b00;
}

.career-hero__lead {
    margin: 1.1rem 0 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 30rem;
}

.career-hero__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.career-hero__btn-primary,
.career-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 0.625rem;
    padding: 0.8rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.career-hero__btn-primary {
    background: #001736;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 23, 54, 0.16);
}

.career-hero__btn-primary:hover {
    background: #002b5b;
    transform: translateY(-1px);
}

.career-hero__btn-primary .material-symbols-outlined {
    font-size: 1.125rem;
}

.career-hero__btn-secondary {
    border: 1.5px solid #cbd5e1;
    color: #001736;
    background: #ffffff;
}

.career-hero__btn-secondary:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.career-hero__btn-secondary .material-symbols-outlined {
    font-size: 1.125rem;
}

.career-hero__stats {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
}

.career-hero__stat {
    flex: 1 1 auto;
    min-width: 5.5rem;
    padding-right: 1.25rem;
}

.career-hero__stat + .career-hero__stat {
    padding-left: 1.25rem;
    border-left: 1px solid #e2e8f0;
}

.career-hero__stat strong {
    display: block;
    font-size: 1.625rem;
    font-weight: 800;
    color: #001736;
    line-height: 1;
}

.career-hero__stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.career-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    padding-right: clamp(0.25rem, 1.5vw, 1rem);
}

.career-hero__figure {
    margin: 0;
    width: min(100%, 40rem);
    line-height: 0;
}

.career-hero__figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .career-hero__figure {
        width: min(100%, 42rem);
        transform: scale(1.04);
        transform-origin: center center;
    }
}

@media (max-width: 1023px) {
    .career-hero__copy {
        text-align: center;
    }

    .career-hero__kicker {
        justify-content: center;
    }

    .career-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .career-hero__actions {
        justify-content: center;
    }

    .career-hero__stats {
        justify-content: center;
    }

    .career-hero__stat {
        flex: 0 1 auto;
        text-align: center;
        padding: 0 1rem;
    }

    .career-hero__stat + .career-hero__stat {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .career-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .career-hero__btn-primary,
    .career-hero__btn-secondary {
        width: 100%;
    }

    .career-hero__stats {
        gap: 1rem;
        border-top: none;
        padding-top: 0;
    }

    .career-hero__stat,
    .career-hero__stat + .career-hero__stat {
        border-left: none;
        padding: 0;
        flex: 1 1 30%;
        text-align: center;
    }
}
