:root {
    --career-hero-title-size: 34px;
    --career-hero-description-size: 16px;
}

@media (min-width: 576px) {
    :root {
        --career-hero-title-size: 38px;
        --career-hero-description-size: 18px;
    }
}

@media (min-width: 768px) {
    :root {
        --career-hero-title-size: clamp(38px, 3vw, 60px);
        --career-hero-description-size: clamp(18px, 1.4vw, 28px);
    }
}

/* @media (min-width: 992px) {
    :root {
        --career-hero-title-size: 36px;
        --career-hero-description-size: 30px;
    }
} */

.career-page {
    overflow-x: clip;
    background: #fff;
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
}

.career-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--STORE2GO-Normal, #0071BD);
}

.career-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.career-hero-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.career-hero-content {
    position: absolute;
    top: 52%;
    left: 0;
    max-width: 720px;
    transform: translateY(-50%);
    color: #fff;
}

.career-hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: var(--career-hero-title-size);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

.career-hero-description {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: var(--career-hero-description-size);
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 0;
}

.career-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    margin-top: 36px;
    padding: 16px 48px;
    border-radius: 16px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.career-hero-button:hover {
    color: #fff;
    text-decoration: none;
}

.career-jobs-section {
    position: relative;
    background: #fff;
    padding: clamp(96px, 8vw, 116px) 0 clamp(70px, 7vw, 110px);
}

.career-search-shell {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    width: min(100% - 32px, 930px);
    transform: translate(-50%, -50%);
}

.career-search-card {
    padding: 18px 20px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(33, 33, 33, 0.18);
}

.career-search-title {
    margin: 0 0 10px;
    color: var(--Neutral-100, #212121);
    font-family: Inter, sans-serif;
    font-size: clamp(20px, 1.7vw, 24px);
    font-weight: 500;
    line-height: 1.25;
}

.career-search-controls {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(170px, 200px) minmax(150px, 170px) 96px;
    gap: 10px;
    align-items: center;
}

.career-search-field,
.career-select-field {
    position: relative;
    display: block;
    margin: 0;
}

.career-search-field input,
.career-select-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    background: #fff;
    color: var(--Neutral-100, #212121);
    font-family: Inter, sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 500;
    line-height: 1.3;
}

.career-search-field input {
    padding: 12px 14px 12px 42px;
}

.career-search-field input::placeholder {
    color: #8A8A8A;
}

.career-select-field select {
    appearance: none;
    padding: 12px 42px 12px 18px;
    cursor: pointer;
}

.career-select-field::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
}

.career-search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid #777;
    border-radius: 50%;
    transform: translateY(-50%);
}

.career-search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #777;
    transform: rotate(45deg);
}

.career-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.career-search-button:hover {
    background: #005F9E;
    box-shadow: 0 5px 12px rgba(0, 95, 158, 0.28);
    transform: translateY(-1px);
}

.career-search-button:active {
    box-shadow: 0 2px 5px rgba(0, 95, 158, 0.2);
    transform: translateY(1px) scale(0.98);
}

.career-search-button:focus-visible {
    outline: 2px solid #005F9E;
    outline-offset: 3px;
}

.career-page .career-jobs-container {
    width: min(100% - 48px, 1300px);
    max-width: 1300px;
    padding-right: 0;
    padding-left: 0;
}

.career-jobs-panel {
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(33, 33, 33, 0.16);
}

.career-jobs-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.career-jobs-panel-header h2,
.career-jobs-panel-header p {
    margin: 0;
    color: var(--Neutral-100, #212121);
}

.career-jobs-panel-header h2 {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.3;
}

.career-jobs-panel-header p {
    font-family: Inter, sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 500;
    line-height: 1.4;
}

.career-table-wrap {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #C7C7C7 transparent;
}

.career-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.career-table-wrap::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #C7C7C7;
}

.career-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    color: var(--Neutral-90, #424242);
    table-layout: fixed;
}

.career-table th,
.career-table td {
    padding: 18px 8px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
    vertical-align: middle;
}

.career-table th {
    border: 0;
    background: #F4F4F4;
    color: var(--Neutral-100, #212121);
    font-weight: 700;
}

.career-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.career-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.career-table td {
    border-bottom: 1px solid #D9D9D9;
    font-weight: 500;
}

.career-table tr[hidden] {
    display: none;
}

.career-table th:nth-child(1),
.career-table td:nth-child(1) {
    width: 22%;
}

.career-table th:nth-child(2),
.career-table td:nth-child(2) {
    width: 16%;
}

.career-table th:nth-child(3),
.career-table td:nth-child(3) {
    width: 16%;
}

.career-table th:nth-child(4),
.career-table td:nth-child(4) {
    width: 15%;
}

.career-table th:nth-child(5),
.career-table td:nth-child(5) {
    width: 17%;
}

.career-table th:nth-child(6),
.career-table td:nth-child(6) {
    width: 14%;
    text-align: center;
}

.career-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.career-icon-button,
.career-apply-button,
.career-see-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.career-icon-button {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 1px solid #C7C7C7;
    background: #fff;
}

.career-icon-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.career-icon-button:hover {
    border-color: var(--STORE2GO-Normal, #0071BD);
    background: #F2FAFF;
}

.career-apply-button {
    min-width: 102px;
    min-height: 40px;
    padding: 10px 16px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.career-apply-button:hover,
.career-see-all-button:hover {
    background: #005F9E;
    color: #fff;
    text-decoration: none;
}

.career-table-footer {
    display: flex;
    justify-content: center;
    padding: 20px 0 2px;
}

.career-see-all-button {
    min-width: 192px;
    min-height: 48px;
    border: 0;
    padding: 14px 24px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.career-empty-state {
    padding: 42px 24px;
    border-radius: 16px;
    background: var(--STORE2GO-Lightest, #E8F6FF);
    text-align: center;
}

.career-empty-state h3 {
    margin: 0 0 8px;
    color: var(--Neutral-100, #212121);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
}

.career-empty-state p {
    margin: 0;
    color: var(--Neutral-80, #616161);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.career-empty-filter {
    margin-top: 18px;
}

@media screen and (max-width: 1199px) {
    .career-page .career-jobs-container {
        width: min(100% - 48px, 1100px);
    }

    .career-table {
        min-width: 0;
    }
}

@media screen and (max-width: 991px) {
    .career-jobs-section {
        padding-top: 0;
    }

    .career-search-shell {
        position: relative;
        top: auto;
        left: auto;
        width: min(100% - 32px, 820px);
        margin: -72px auto 48px;
        transform: none;
    }

    .career-hero-content {
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .career-page .career-jobs-container {
        width: calc(100% - 32px);
    }

    .career-search-controls {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .career-keyword-field,
    .career-search-button {
        grid-column: span 2;
    }

    .career-table {
        min-width: 800px;
    }

    .career-table th,
    .career-table td {
        font-size: 15px;
    }

    .career-actions {
        gap: 8px;
    }

    .career-apply-button {
        min-width: 96px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media screen and (max-width: 767px) {
    .career-search-shell {
        width: min(100% - 32px, 640px);
    }

    .career-search-card {
        border-radius: 12px;
    }

    .career-page .career-jobs-container {
        width: min(100% - 32px, 640px);
    }

    .career-jobs-panel {
        padding: 16px;
        border-radius: 10px;
    }

    .career-jobs-panel-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .career-table-wrap {
        overflow-x: visible;
    }

    .career-table,
    .career-table tbody,
    .career-table tr,
    .career-table td {
        display: block;
        min-width: 0;
    }

    .career-table,
    .career-table tbody,
    .career-table tr,
    .career-table td,
    .career-table th:nth-child(1),
    .career-table td:nth-child(1),
    .career-table th:nth-child(2),
    .career-table td:nth-child(2),
    .career-table th:nth-child(3),
    .career-table td:nth-child(3),
    .career-table th:nth-child(4),
    .career-table td:nth-child(4),
    .career-table th:nth-child(5),
    .career-table td:nth-child(5) {
        width: 100%;
    }

    .career-table th:nth-child(6),
    .career-table td:nth-child(6) {
        width: 100%;
    }

    .career-table thead {
        display: none;
    }

    .career-table tr {
        padding: 14px;
        border: 1px solid #E4E4E4;
        border-radius: 8px;
        box-shadow: 0 4px 14px rgba(33, 33, 33, 0.06);
    }

    .career-table tr + tr {
        margin-top: 12px;
    }

    .career-table td {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 12px;
        padding: 7px 0;
        border-bottom: 0;
        font-size: 15px;
        text-align: left;
        word-break: break-word;
    }

    .career-table td::before {
        content: attr(data-label);
        color: var(--Neutral-100, #212121);
        font-weight: 700;
    }

    .career-table td[data-label="Action"] {
        align-items: center;
        grid-template-columns: 118px minmax(0, 1fr);
        text-align: left;
    }

    .career-actions {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .career-apply-button {
        min-width: 112px;
    }
}

@media screen and (max-width: 575px) {
    .career-hero-content {
        top: 55%;
    }

    .career-hero-button {
        min-height: 54px;
        border-radius: 12px;
    }

    .career-jobs-section {
        padding-bottom: 64px;
    }

    .career-search-card {
        padding: 16px;
    }

    .career-search-shell,
    .career-page .career-jobs-container {
        width: calc(100% - 24px);
    }

    .career-search-controls {
        grid-template-columns: 1fr;
    }

    .career-keyword-field,
    .career-search-button {
        grid-column: auto;
    }

    .career-table td {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .career-table td[data-label="Action"] {
        grid-template-columns: 1fr;
    }

    .career-apply-button {
        width: 100%;
    }

    .career-icon-button {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .career-see-all-button {
        width: 100%;
    }
}

.career-detail-page {
    overflow-x: clip;
    background: #fff;
    color: #212121;
    font-family: Poppins, sans-serif;
}

.career-detail-container {
    width: calc(100% - clamp(32px, 8vw, 128px));
    max-width: 1424px;
    margin-right: auto;
    margin-left: auto;
}

.career-detail-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0071bd;
}

.career-detail-hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.career-detail-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--site-navbar-space, 148px);
    color: #fff;
}

.career-detail-title {
    width: min(100%, 1120px);
    max-width: 1120px;
    margin: 0 0 34px;
    color: #fff;
    font-size: 84px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.career-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    align-items: center;
}

.career-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
}

.career-detail-meta-item img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
}

.career-detail-content-section {
    padding: 46px 0 64px;
    background: #fff;
}

.career-detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 532px);
    gap: 28px;
    align-items: start;
}

.career-detail-main {
    min-width: 0;
}

.career-detail-section {
    padding-bottom: 34px;
    border-bottom: 1px solid #cfcfcf;
}

.career-detail-section + .career-detail-section {
    padding-top: 34px;
}

.career-detail-section:last-child {
    border-bottom: 0;
}

.career-detail-section h2 {
    margin: 0 0 18px;
    color: #212121;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.career-rich-text {
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0;
}

.career-rich-text p,
.career-rich-text ul,
.career-rich-text ol {
    margin-top: 0;
    margin-bottom: 16px;
}

.career-rich-text h1,
.career-rich-text h2,
.career-rich-text h3 {
    margin: 0 0 18px;
    color: #212121;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.career-rich-text h1 {
    font-size: 32px;
}

.career-rich-text h2 {
    font-size: 26px;
}

.career-rich-text h3 {
    font-size: 22px;
}

.career-rich-text > :last-child {
    margin-bottom: 0;
}

.career-rich-text ul,
.career-rich-text ol {
    padding-left: 24px;
}

.career-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.career-detail-aside {
    position: sticky;
    top: calc(var(--site-navbar-space, 148px) + 24px);
    align-self: start;
    min-height: 360px;
    padding-left: 28px;
    border-left: 1px solid #cfcfcf;
}

.career-detail-apply {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: #0071bd;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

.career-detail-apply:hover {
    background: #0064a8;
    color: #fff;
    text-decoration: none;
}

.career-detail-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
    color: #2f2f2f;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
}

.career-detail-copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 5px 13px;
    border: 1px solid #0879be;
    border-radius: 8px;
    background: #fff;
    color: #0879be;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.career-detail-copy-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.career-detail-copy-link:hover,
.career-detail-copy-link:focus-visible,
.career-detail-copy-link.is-copied {
    background: #eaf6fd;
    color: #0064a8;
}

.career-detail-copy-link:focus-visible {
    outline: 2px solid #0879be;
    outline-offset: 2px;
}

.career-detail-company {
    margin: 34px 0 0;
    color: #707070;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
}

.career-similar-section {
    padding: 54px 0 72px;
    background: #f4f4f4;
    font-family: Poppins, sans-serif;
}

.career-similar-container {
    width: calc(100% - clamp(32px, 8vw, 128px));
    max-width: 1424px;
    margin-right: auto;
    margin-left: auto;
}

.career-similar-title {
    margin: 0 0 34px;
    color: #212121;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
}

.career-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.career-similar-card {
    display: flex;
    min-height: 158px;
    flex-direction: column;
    padding: 16px 16px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: #212121;
}

.career-similar-card-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.career-similar-card-header h3 {
    margin: 0;
    color: #212121;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
}

.career-similar-share {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
}

.career-similar-share img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.career-similar-location {
    margin: 8px 0 14px;
    color: #707070;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.career-similar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.career-similar-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 25px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #f3f3f3;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.career-similar-tags img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(37%) sepia(0%) saturate(0%) hue-rotate(164deg) brightness(92%) contrast(89%);
}

.career-similar-card-footer {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.career-similar-card-footer p {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    min-width: 0;
    margin: 0;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.career-similar-detail {
    display: inline-flex;
    min-width: 112px;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: #424242;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.career-similar-detail:hover {
    border-color: #0071bd;
    color: #0071bd;
    text-decoration: none;
}

.career-similar-empty {
    margin: 0;
    padding: 32px 0 20px;
    color: #424242;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.career-similar-more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.career-similar-more a {
    display: inline-flex;
    min-width: 240px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    background: #0071bd;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.career-similar-more a:hover {
    background: #0064a8;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1199px) {
    .career-detail-hero,
    .career-detail-hero-inner {
        min-height: 100vh;
    }

    .career-detail-title {
        width: min(100%, 860px);
        max-width: 860px;
        font-size: 60px;
    }

    .career-detail-meta-item {
        font-size: 20px;
    }

    .career-detail-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    }

    .career-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 991px) {
    .career-detail-container {
        width: calc(100% - 32px);
    }

    .career-detail-hero,
    .career-detail-hero-inner {
        min-height: 100vh;
    }

    .career-detail-title {
        max-width: 720px;
        font-size: 48px;
    }

    .career-detail-content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .career-detail-aside {
        position: static;
        min-height: 0;
        padding-top: 32px;
        padding-left: 0;
        border-top: 1px solid #cfcfcf;
        border-left: 0;
    }

    .career-similar-container {
        width: calc(100% - 32px);
    }
}

@media screen and (max-width: 767px) {
    .career-detail-hero,
    .career-detail-hero-inner {
        min-height: 100vh;
    }

    .career-detail-title {
        margin-bottom: 26px;
        font-size: 40px;
    }

    .career-detail-meta {
        gap: 14px;
    }

    .career-detail-meta-item {
        width: 100%;
        font-size: 18px;
    }

    .career-rich-text {
        font-size: 17px;
    }

    .career-rich-text h1 {
        font-size: 28px;
    }

    .career-rich-text h2 {
        font-size: 24px;
    }

    .career-rich-text h3 {
        font-size: 21px;
    }

    .career-detail-company,
    .career-detail-share {
        font-size: 16px;
    }

    .career-similar-section {
        padding: 42px 0 58px;
    }

    .career-similar-title {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .career-similar-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 575px) {
    .career-detail-container {
        width: calc(100% - 24px);
    }

    .career-detail-hero,
    .career-detail-hero-inner {
        min-height: 100vh;
    }

    .career-detail-title {
        font-size: 34px;
    }

    .career-detail-content-section {
        padding-top: 36px;
    }

    .career-detail-apply {
        min-height: 48px;
        font-size: 17px;
    }

    .career-similar-container {
        width: calc(100% - 24px);
    }

    .career-similar-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-similar-detail,
    .career-similar-more a {
        width: 100%;
    }
}
