:root {
    --career-blue: #2e4a8f;
    --career-blue-dark: #19346f;
    --career-teal: #79b7ba;
    --career-text: #050505;
    --career-muted: #f3f6fb;
    --career-border: #d6d9e0;
    --career-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    --career-radius: 10px;
}

.career-page {
    color: var(--career-text);
    font-family: inherit;
    overflow: hidden;
}

.career-page h1,
.career-page h2,
.career-page h3 {
    font-weight: 800;
    line-height: 1.18;
}

.section-pad {
    padding: 86px 0;
}

.btn-career-primary,
.btn-career-outline {
    min-height: 46px;
    padding: 11px 34px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid var(--career-teal);
}

.btn-career-primary {
    color: #fff;
    background: var(--career-teal);
}

.btn-career-primary:hover,
.btn-career-primary:focus {
    color: #fff;
    background: #63a7aa;
    border-color: #63a7aa;
}

.btn-career-outline {
    color: #fff;
    background: transparent;
    border-color: #fff;
    min-width: 320px;
}

.btn-career-outline:hover,
.btn-career-outline:focus {
    color: var(--career-blue);
    background: #fff;
}

.career-hero {
    min-height: 768px;
    background-image: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.career-hero__inner {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-hero__panel {
    max-width: 620px;
    padding: 54px 32px 34px;
    color: #fff;
    background: rgba(15, 15, 15, .58);
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: var(--career-radius);
    backdrop-filter: blur(8px);
}

.career-hero__panel h1 {
    margin: 0 0 26px;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.career-hero__panel p {
    max-width: 560px;
    margin-bottom: 25px;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 700;
}

.career-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
    margin-top: 85px;
}

.career-search__field label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 800;
}

.career-input {
    display: block;
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid #e1e7f2;
    border-radius: 6px;
    color: #5f6675;
    background: #eef4fc;
}

.career-input--icon {
    position: relative;
    background: #eef4fc;
}

.career-input--icon input {
    width: 100%;
    height: 56px;
    border: 0;
    outline: 0;
    background: transparent;
}

.career-input--icon span {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c94a3;
    font-size: 1.35rem;
}

.career-search__button {
    height: 54px;
    padding-inline: 30px;
}

.career-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
}

.career-about__text {
    z-index: 2;
    padding: 34px 32px 38px;
    color: #fff;
    background: var(--career-blue);
    border-radius: var(--career-radius);
    box-shadow: var(--career-shadow);
}

.career-about__text h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.career-about__text p {
    font-size: 1.02rem;
    line-height: 1.55;
}

.career-video {
    position: relative;
    display: block;
    min-height: 330px;
    margin-left: -24px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--career-radius);
    box-shadow: var(--career-shadow);
    background: #000;
}

.career-video img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.career-video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .52);
}

.career-video__play::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 29px;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 30px solid #fff;
}

.career-clients {
    margin-top: 70px;
}

.career-clients h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.career-clients__row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
    align-items: center;
    color: #1d2e63;
    font-weight: 900;
    text-transform: uppercase;
}

.career-featured {
    position: relative;
    color: #fff;
    background: var(--career-blue);
}

.career-featured::before {
    content: '';
    position: absolute;
    left: -90px;
    bottom: -170px;
    width: 380px;
    height: 380px;
    border: 54px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.career-featured h2 {
    margin-bottom: 46px;
    font-size: 2.15rem;
}

.career-job-card {
    position: relative;
    min-height: 472px;
    display: flex;
    flex-direction: column;
    padding: 118px 26px 22px;
    color: var(--career-blue-dark);
    background: #fff;
    border-radius: var(--career-radius);
    box-shadow: var(--career-shadow);
    overflow: hidden;
}

.career-job-card::after {
    content: '';
    position: absolute;
    right: -56px;
    top: -82px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #f1f4fb;
}

.career-badge {
    position: absolute;
    right: 26px;
    top: 28px;
    z-index: 1;
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 10px;
    color: #fff;
    background: #d86e14;
    font-weight: 900;
}

.career-job-card h3 {
    position: relative;
    z-index: 1;
    min-height: 75px;
    margin: 0;
    font-size: 1.12rem;
    color: var(--career-blue-dark);
}

.career-job-card hr {
    margin: 20px 0 26px;
    border-color: var(--career-blue-dark);
    opacity: 1;
}

.career-job-card ul {
    display: grid;
    gap: 15px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    font-weight: 800;
}

.career-job-card li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.career-job-card li img {
    width: 22px;
    height: 22px;
}

.career-job-card .btn {
    margin-top: auto;
}

.career-categories h2,
.career-benefits h2,
.career-stories h2 {
    margin-bottom: 38px;
    font-size: 2.1rem;
}

.career-category-card {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 14px 12px;
    border-radius: var(--career-radius);
    overflow: hidden;
    box-shadow: var(--career-shadow);
    background-image: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.1) 40%, rgba(0,0,0,.38)), var(--category-image);
    background-size: cover;
    background-position: center;
}

.career-category-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -2px -2px 0;
    padding: 10px 12px;
    color: #fff;
    background: rgba(0,0,0,.55);
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

.career-category-card__top h3 {
    margin: 0;
    font-size: clamp(1.25rem, 1.6vw, 1.7rem);
}

.career-category-card__top img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.career-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.career-benefits__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    text-align: center;
}

.career-benefits article img {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.career-benefits article h3 {
    font-size: 1.1rem;
}

.career-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 54px;
}

.career-slider-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--career-teal);
    color: var(--career-teal);
    background: #fff;
    font-size: 1.5rem;
}

.career-story-featured {
    display: grid;
    grid-template-columns: 32% 68%;
    border: 1px solid var(--career-border);
    border-radius: var(--career-radius);
    box-shadow: 0 7px 18px rgba(0,0,0,.1);
    overflow: hidden;
}

.career-story-featured__image {
    position: relative;
    min-height: 280px;
}

.career-story-featured__image img,
.career-story-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-story-featured__image .career-badge {
    left: 12px;
    right: auto;
    top: 14px;
}

.career-story-featured__content {
    padding: 28px 28px 22px;
}

.career-tag {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 8px;
    color: #fff;
    background: var(--career-blue);
    font-weight: 900;
}

.career-story-featured h3 {
    margin: 18px 0 24px;
    font-size: 1.25rem;
    font-style: italic;
}

.career-story-featured p {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--career-border);
}

.career-person {
    display: flex;
    align-items: center;
    gap: 18px;
}

.career-person img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.career-person strong,
.career-story-card strong {
    display: block;
    font-size: 1.25rem;
}

.career-person span,
.career-story-card span:last-child {
    display: block;
}

.career-story-grid {
    margin-top: 42px;
}

.career-story-card,
.career-load-more {
    height: 100%;
    min-height: 385px;
    border: 1px solid var(--career-border);
    border-radius: var(--career-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 7px 18px rgba(0,0,0,.1);
}

.career-story-card > img {
    height: 195px;
}

.career-story-card__body {
    padding: 28px 16px 18px;
}

.career-story-card h3 {
    margin: 22px 0;
    font-size: 1.18rem;
}

.career-load-more {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 32px;
    border-style: solid;
    text-align: left;
    font-weight: 800;
    font-size: 1.2rem;
}

.career-final {
    text-align: center;
    background: #fff;
    box-shadow: inset 0 -26px 40px rgba(0,0,0,.06);
}

.career-final__inner {
    max-width: 620px;
}

.career-final h2 {
    margin-bottom: 32px;
    font-size: 2rem;
}

.career-final p {
    margin-bottom: 42px;
    line-height: 1.55;
}

.career-final__cv {
    min-width: 360px;
}

.career-final hr {
    margin: 42px auto 38px;
    width: 360px;
    border-color: #000;
    opacity: 1;
}

.career-alert {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
}

.career-alert label {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.career-alert input {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid #d6d9e0;
    border-radius: 8px;
    background: #f7f9fc;
}

.career-alert__button {
    width: 100%;
    min-height: 46px;
    margin-top: 40px;
    border-radius: 999px;
    color: #0060a8;
    background: #fff;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

@media (max-width: 1199.98px) {
    .career-search { grid-template-columns: repeat(2, 1fr); }
    .career-search__button { width: 100%; }
    .career-benefits__row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .section-pad { padding: 64px 0; }
    .career-hero { min-height: auto; padding: 80px 0 50px; }
    .career-hero__inner { min-height: auto; }
    .career-search { margin-top: 42px; }
    .career-about__grid { grid-template-columns: 1fr; }
    .career-video { margin-left: 0; margin-top: 24px; }
    .career-section-head { flex-direction: column; margin-bottom: 38px; }
    .career-story-featured { grid-template-columns: 1fr; }
    .career-story-featured__image { min-height: 330px; }
}

@media (max-width: 767.98px) {
    .career-search { grid-template-columns: 1fr; }
    .career-hero__panel { padding: 32px 22px; }
    .career-benefits__row { grid-template-columns: 1fr 1fr; }
    .career-final__cv,
    .btn-career-outline { min-width: 0; width: 100%; }
    .career-final hr { width: 100%; }
}

@media (max-width: 575.98px) {
    .career-benefits__row { grid-template-columns: 1fr; }
    .career-story-featured__content { padding: 24px 18px; }
}
