.career-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: linear-gradient(100deg, #00a082 0%, #1d73c7 100%);
}

.career-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 118px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.career-hero__inner {
    position: relative;
    z-index: 1;
    width: calc(100% - 240px);
    max-width: 1203px;
    margin: 0 auto;
    padding-bottom: 104px;
}

.career-hero__title {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.career-hero__lead {
    margin: 20px 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.career-openings {
    padding: 60px 0 116px;
}

.career-openings__inner {
    width: calc(100% - 240px);
    max-width: 1203px;
    margin: 0 auto;
}

.career-openings__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 39px;
}

.career-openings__title {
    margin: 0;
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.career-openings__filter-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.career-openings__filter-label {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.career-openings__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.career-openings__filter {
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid #0e7f80;
    border-radius: 999px;
    background: #fff;
    color: #0e7f80;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.career-openings__filter.is-active {
    background: #0e7f80;
    border-color: #0e7f80;
    color: #fff;
}

.career-openings__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.career-openings__item {
    min-height: 206px;
    padding: 40px;
    border-radius: 16px;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.career-openings__copy {
    max-width: 1123px;
}

.career-openings__item-title {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.career-openings__item-summary {
    margin: 12px 0 0;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.career-openings__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.career-openings__tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-openings__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.career-openings__tag--employment {
    background: #0e7f80;
    color: #fff;
}

.career-openings__tag--contract {
    background: #007db9;
}

.career-openings__tag--location {
    background: #fff;
    color: #000;
}

.career-openings__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .career-openings__action:hover {
        opacity: 0.7;
    }
}

.career-openings__action-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0e7f80;
    position: relative;
    flex: 0 0 auto;
}

.career-openings__action-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.noneText {
    display: none;
}

@media (max-width: 1200px) {
    .career-hero__inner,
    .career-openings__inner {
        width: calc(100% - 96px);
    }
    .career-openings__head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .career-hero {
        height: 300px;
    }
    .career-hero::after {
        height: 72px;
    }
    .career-hero__inner {
        width: calc(100% - 32px);
        padding-bottom: 52px;
    }
    .career-hero__title {
        font-size: clamp(34px, 10vw, 44px);
    }
    .career-hero__lead {
        margin-top: 12px;
        font-size: 16px;
    }
    .career-openings {
        padding: 32px 0 72px;
    }
    .career-openings__inner {
        width: calc(100% - 32px);
    }
    .career-openings__title {
        font-size: 28px;
    }
    .career-openings__filter-area {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .career-openings__filter-label {
        font-size: 14px;
    }
    .career-openings__filter {
        min-height: 34px;
        font-size: 13px;
        padding: 6px 12px;
    }
    .career-openings__item {
        min-height: 0;
        padding: 24px;
        border-radius: 12px;
        gap: 18px;
    }
    .career-openings__item-title {
        font-size: 18px;
    }
    .career-openings__item-summary {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.65;
    }
    .career-openings__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
    .career-openings__tag {
        font-size: 13px;
    }
    .career-openings__action {
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
    }
}
/*# sourceMappingURL=career-list.css.map */
