.career-header {
    position: sticky;
    top: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 54px;
    min-height: 54px;
    padding: 0 max(24px, calc((100vw - 1200px) / 2));
    border-bottom: 1px solid #e5e5e7;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.career-header .career-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: #1d1d1f;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}
.career-header .career-brand img {
    display: block;
    width: auto;
    height: 35px;
    max-width: 180px;
    object-fit: contain;
}
.career-header .career-brand span {
    padding-left: 12px;
    border-left: 1px solid #d2d2d7;
    color: #6e6e73;
    line-height: 22px;
}
.career-header nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.career-header nav a,
.career-header nav a:first-child {
    display: inline-flex;
    width: auto;
    min-height: 40px;
    margin: 0;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
.career-header nav a:hover { background: #e8e8ed; color: #0066cc; }
.career-header nav a:last-child { gap: 6px; border-color: #0071e3; background: #0071e3; color: #fff; }
.career-header nav a:last-child::after { content: "↗"; font-size: 13px; }
.career-header nav a:last-child:hover { background: #0066cc; color: #fff; }
@media (max-width: 760px) {
    .career-header { height: 48px; min-height: 48px; padding: 0 14px; }
    .career-header .career-brand { gap: 8px; }
    .career-header .career-brand img { height: 28px; max-width: 112px; }
    .career-header .career-brand span { padding-left: 8px; font-size: 12px; }
    .career-header nav { gap: 4px; }
    .career-header nav a,
    .career-header nav a:first-child { display: inline-flex; min-height: 34px; padding: 0 9px; font-size: 11px; }
    .career-header nav a:nth-child(2) { display: none; }
}
@media (max-width: 480px) {
    .career-header nav a:last-child { width: 34px; padding: 0; font-size: 0; }
    .career-header nav a:last-child::after { font-size: 15px; }
    .career-header .career-brand img { max-width: 98px; }
}
