main {
    background-color: var(--section-bg);
}

.career-hero {
    background-color: var(--primary-yellow);
    padding: 72px 0 90px;
    position: relative;
    overflow: hidden;
}

.career-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -52px;
    width: 116%;
    height: 120px;
    background-color: var(--section-bg);
    border-radius: 50% 50% 0 0;
}

.career-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: center;
}

.career-hero-text h1 {
    color: var(--dark-black);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.career-hero-text p {
    font-family: 'Sen', 'Paddock', sans-serif;
    color: rgba(0, 0, 0, 0.86);
    font-size: 17px;
    line-height: 1.55;
    max-width: 620px;
    margin-bottom: 12px;
}

.career-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    border-radius: 999px;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.25s ease;
}

.career-cta:hover {
    opacity: 0.82;
}

.career-hero-image {
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
}

.career-panda {
    width: min(100%, 460px);
    height: auto;
    object-fit: contain;
}

.jobs-section {
    position: relative;
    z-index: 2;
    background-color: var(--section-bg);
    padding: 56px 0 100px;
}

.jobs-title {
    color: var(--text-light);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1;
    margin-bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.talent-pool-title {
    margin-top: 90px;
    margin-bottom: 10px;
}

.talent-pool-note {
    color: var(--text-light);
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.jobs-title-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background-color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.jobs-title-icon::before,
.jobs-title-icon::after {
    content: "";
    position: absolute;
    background-color: #141414;
    border-radius: 999px;
}

.jobs-title-icon::before {
    width: 10px;
    height: 2px;
    top: 7px;
    left: 6px;
}

.jobs-title-icon::after {
    width: 10px;
    height: 2px;
    top: 13px;
    left: 6px;
}

.job-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background-color: #0b0b0b;
}

.job-name-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.job-badge {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-yellow);
    color: #131313;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.job-name {
    color: var(--text-light);
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: clamp(19px, 2.4vw, 32px);
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #f8f8f8;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.job-action:hover {
    background-color: var(--primary-yellow);
    color: #121212;
}

@media (max-width: 920px) {
    .career-hero {
        padding: 56px 0 72px;
    }

    .career-hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .career-hero-image {
        justify-content: center;
        padding-right: 0;
    }

    .career-panda {
        width: min(100%, 340px);
    }

    .job-name {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .job-item {
        padding: 12px;
        border-radius: 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .job-action {
        width: 100%;
    }

    .jobs-section {
        padding: 40px 0 72px;
    }
}

@media (max-width: 480px) {
    .career-hero {
        padding: 44px 0 62px;
    }

    .career-hero::after {
        bottom: -40px;
        height: 96px;
    }

    .career-hero-text p {
        font-size: 15px;
    }

    .job-name {
        font-size: 20px;
    }
}
