.gcs-careers-page { overflow: hidden; color: var(--gcs-text); background: #fff; }

.gcs-career-hero {
    position: relative;
    padding: 92px 0 118px;
    background: radial-gradient(circle at 82% 30%, rgba(157, 205, 170, .24), transparent 31%), #fff;
}

.gcs-career-hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 96px; align-items: center; }

.gcs-career-hero h1 em { margin-top: 4px; }

.gcs-career-hero__lead { max-width: 650px; margin-top: 30px; font-size: 1.04rem; line-height: 1.78; }

.gcs-career-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }

.gcs-career-hero__visual { position: relative; min-height: 600px; }

.gcs-career-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    overflow: hidden;
    border-radius: 110px 25px 25px 25px;
    box-shadow: var(--gcs-shadow);
}

.gcs-career-hero__image img { width: 100%; height: 560px; object-fit: cover; object-position: center 25%; }

.gcs-career-hero__small-image {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 39%;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(11, 44, 28, .16);
}

.gcs-career-hero__small-image img { width: 100%; height: 225px; object-fit: cover; border-radius: 12px; }

.gcs-career-hero__badge {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 32px;
    display: flex;
    width: min(300px, calc(100% - 48px));
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
}

.gcs-career-hero__badge-icon { color: var(--gcs-green); font-size: 1.5rem; }

.gcs-career-hero__badge strong,
.gcs-career-hero__badge small { display: block; }

.gcs-career-hero__badge strong { color: var(--gcs-dark); font-size: .8rem; }

.gcs-career-hero__badge small { margin-top: 3px; color: var(--gcs-body); font-size: .68rem; }

.gcs-career-why { padding: 118px 0; background: var(--gcs-cream); }

.gcs-career-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.gcs-career-benefit {
    min-height: 330px;
    padding: 33px 32px;
    border: 1px solid var(--gcs-border);
    border-radius: 16px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.gcs-career-benefit:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(12, 51, 31, .1); }

.gcs-career-benefit__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

.gcs-career-benefit__number { color: var(--gcs-green); font-family: Georgia, serif; font-size: 1.4rem; }

.gcs-career-benefit__mark {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    color: var(--gcs-green);
    background: rgba(8, 122, 56, .08);
}

.gcs-career-benefit h3 { margin-bottom: 17px; }
.gcs-career-benefit p { font-size: .89rem; }

.gcs-career-fields { padding: 118px 0; background: var(--gcs-mint); }

.gcs-career-fields__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.gcs-career-field {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--gcs-border);
    border-radius: 15px;
    color: var(--gcs-dark);
    background: #fff;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.gcs-career-field:hover {
    transform: translateY(-7px);
    color: #fff;
    background: var(--gcs-dark);
    box-shadow: 0 20px 55px rgba(15, 48, 31, .11);
}

.gcs-career-field__number { color: var(--gcs-green); font-family: Georgia, serif; font-size: 1.2rem; }
.gcs-career-field:hover .gcs-career-field__number { color: #c7ff89; }

.gcs-career-field__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }

.gcs-career-field__label {
    color: inherit;
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    letter-spacing: -.035em;
    line-height: 1.1;
}

.gcs-career-field__arrow { color: var(--gcs-green); font-size: 1.4rem; line-height: 1; }
.gcs-career-field:hover .gcs-career-field__arrow { color: #c7ff89; }

.gcs-career-cta { position: relative; min-height: 520px; overflow: hidden; }

.gcs-career-cta__background { position: absolute; inset: 0; background-position: center; background-size: cover; }

.gcs-career-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.gcs-career-cta h2 { max-width: 680px; color: #fff; }

.gcs-career-cta p {
    max-width: min(670px, 54%);
    margin-top: 24px;
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
}

.gcs-career-cta__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

@media (max-width: 1080px) {
    .gcs-career-hero__grid { gap: 60px; }

    .gcs-career-benefits,
    .gcs-career-fields__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    .gcs-career-hero__grid { grid-template-columns: 1fr; }

    .gcs-career-hero__visual { order: -1; min-height: 520px; }
    .gcs-career-hero__image { width: 88%; }
    .gcs-career-hero__image img { height: 480px; }

    .gcs-career-cta p { max-width: 670px; }
}

@media (max-width: 600px) {
    .gcs-career-hero { padding: 35px 0 76px; }
    .gcs-career-hero__visual { min-height: 420px; }
    .gcs-career-hero__image { width: 100%; border-radius: 65px 18px 18px 18px; }
    .gcs-career-hero__image img { height: 400px; }

    .gcs-career-hero__small-image { display: none; }

    .gcs-career-hero__badge { right: 13px; bottom: 13px; left: 13px; width: auto; }

    .gcs-career-hero__actions,
    .gcs-career-cta__actions { flex-direction: column; align-self: stretch; }

    .gcs-career-why,
    .gcs-career-fields { padding: 76px 0; }

    .gcs-career-benefits,
    .gcs-career-fields__grid { grid-template-columns: 1fr; }

    .gcs-career-benefit { min-height: 0; }
    .gcs-career-benefit__top { margin-bottom: 30px; }

    .gcs-career-field { min-height: 0; gap: 26px; }

    .gcs-career-cta,
    .gcs-career-cta__content { min-height: 500px; }
}
