.header-top-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-top-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #ffffff;
    font-size: 12px;
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}

.header-top-social li a:hover {
    background: var(--rr-theme-primary, #e8282d);
    color: #fff;
    border-color: var(--rr-theme-primary, #e8282d);
}

.career-value-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 34px 28px;
    height: 100%;
    transition: box-shadow .28s, transform .28s, border-color .28s;
    position: relative;
    overflow: hidden
}

.career-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e8282d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease
}

.career-value-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .1);
    transform: translateY(-6px);
    border-color: #e8282d
}

.career-value-card:hover::before {
    transform: scaleX(1)
}

.career-value-card__icon {
    width: 56px;
    height: 56px;
    background: #fff3f3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background .2s
}

.career-value-card:hover .career-value-card__icon {
    background: #e8282d
}

.career-value-card__icon i {
    color: #e8282d;
    transition: color .2s
}

.career-value-card:hover .career-value-card__icon i {
    color: #fff
}

.career-value-card h4 {
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px
}

.career-value-card p {
    color: #666;
    line-height: 1.75;
    margin: 0
}

.job-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .25s, transform .2s
}

.job-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .1);
    transform: translateY(-4px)
}

.job-card__top {
    margin-bottom: 20px
}

.job-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.job-card:hover .job-card__icon {
    background: #e8282d
}

.job-card__icon i {
    color: #fff;
    font-size: 19px
}

.job-card__dept {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    margin-top: 18px;
    margin-bottom: 4px
}

.job-card h4 {
    font-weight: 800;
    color: #111;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px
}

.job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.job-card__tag {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1.5px solid #dedede;
    border-radius: 6px;
    padding: 5px 13px;
    text-decoration: none;
    transition: border-color .15s, color .15s;
    cursor: pointer
}

a.job-card__tag:hover {
    border-color: #1a1a2e;
    color: #1a1a2e
}

.job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0
}

.job-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #999
}

.job-card__location i {
    font-size: 12px
}

.job-card__deadline {
    font-size: 12px;
    font-weight: 600;
    color: #c8181d;
    background: #fff0f0;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap
}

.job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a1a2e;
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s
}

.job-card__apply:hover {
    background: #e8282d;
    color: #fff
}

.job-card__actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.job-grid {
    margin-left: -12px;
    margin-right: -12px
}

.job-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px
}

.job-share {
    position: relative
}

.job-share__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #dde0e6;
    background: #fff;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    font-size: 13px
}

.job-share__btn:hover {
    border-color: #e8282d;
    background: #e8282d;
    color: #fff
}

.job-share__menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    min-width: 150px;
    z-index: 99;
    overflow: hidden
}

.job-share.open .job-share__menu {
    display: block
}

.job-share__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background .15s
}

.job-share__item:hover {
    background: #f7f8fb;
    color: #e8282d
}

.job-share__item i {
    width: 14px;
    text-align: center
}

.career-form-section {
    background: #f4f5f7
}

.career-form-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap
}

.career-form-left {
    background: #1a1a2e;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.career-form-left h3 {
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px
}

.career-form-left p {
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin-bottom: 36px
}

.career-form-left__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.career-form-left__list li {
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55
}

.career-form-left__list li i {
    color: #e8282d;
    margin-top: 3px;
    flex-shrink: 0
}

.career-form-left__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s
}

.career-form-left__contact a:hover {
    color: #e8282d
}

.career-form-left__contact a i {
    color: #e8282d
}

.career-form-right {
    padding: 50px 44px
}

.career-form-right h4 {
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px
}

.career-form-right .form-intro {
    color: #666;
    margin-bottom: 36px;
    line-height: 1.65
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px
}

.cf-label {
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 4px
}

.cf-label span {
    color: #e8282d
}

.cf-input {
    width: 100%;
    border: 1.5px solid #dde0e6;
    border-radius: 10px;
    padding: 13px 16px;
    color: #1a1a2e;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box
}

.cf-input::placeholder {
    color: #aab0bb
}

.cf-input:focus {
    border-color: #e8282d;
    box-shadow: 0 0 0 3px rgba(232, 40, 45, .08)
}

.cf-select-wrap {
    position: relative
}

.cf-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: #1a1a2e;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none
}

.cf-select-wrap .cf-input {
    cursor: pointer;
    padding-right: 42px
}

.cf-textarea {
    resize: vertical;
    min-height: 130px
}

.file-upload-wrap {
    border: 2px dashed #dde0e6;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: 28px;
    position: relative;
    background: #f8f9fb
}

.file-upload-wrap:hover {
    border-color: #e8282d;
    background: #fff8f8
}

.file-upload-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%
}

.file-upload-wrap i {
    color: #e8282d;
    margin-bottom: 10px;
    display: block
}

.file-upload-wrap p {
    color: #777;
    margin: 0
}

.file-upload-wrap .file-hint {
    color: #aab0bb;
    margin-top: 5px
}

.file-upload-wrap .file-chosen {
    color: #1a7a35;
    font-weight: 600;
    margin-top: 8px;
    display: none
}

.career-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px
}

#pzToast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    max-width: 380px;
    width: calc(100% - 40px);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none
}

#pzToast.pz-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

#pzToast.pz-success {
    background: #fff;
    border-left: 4px solid #22c55e;
    color: #166534
}

#pzToast.pz-error {
    background: #fff;
    border-left: 4px solid #ef4444;
    color: #991b1b
}

#pzToast .pz-toast-icon {
    font-size: 20px;
    flex-shrink: 0
}

#pzToast .pz-toast-close {
    margin-left: auto;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: inherit;
    opacity: .5;
    line-height: 1;
    padding: 0
}

#pzToast .pz-toast-close:hover {
    opacity: 1
}

.rr-btn .pz-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pzSpin .7s linear infinite;
    vertical-align: middle;
    margin-right: 6px
}

.rr-btn.pz-loading .pz-spinner {
    display: inline-block
}

.rr-btn.pz-loading {
    opacity: .75;
    cursor: not-allowed;
    pointer-events: none
}

@keyframes pzSpin {
    to {
        transform: rotate(360deg)
    }
}

.jd-hero {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 48px 0 40px
}

.jd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.jd-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2
}

.jd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center
}

.jd-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    text-decoration: none
}

a.jd-meta-item:hover {
    color: #e8282d
}

.jd-meta-item i {
    color: #e8282d;
    width: 16px;
    text-align: center
}

a.jd-sidebar-value {
    color: #1a1a2e;
    text-decoration: none
}

a.jd-sidebar-value:hover {
    color: #e8282d;
    text-decoration: underline
}

.jd-body {
    padding: 48px 0
}

.jd-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0
}

.jd-description {
    color: #444;
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 40px
}

.jd-description p {
    margin-bottom: 12px
}

.jd-requirements {
    color: #444;
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 40px
}

.jd-requirements ul {
    padding-left: 20px;
    margin: 0
}

.jd-requirements ul li {
    margin-bottom: 8px
}

.jd-requirements p {
    margin-bottom: 12px
}

.jd-sidebar {
    position: sticky;
    top: 100px
}

.jd-apply-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    padding: 32px 28px;
    margin-bottom: 24px
}

.jd-apply-card h5 {
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-size: 18px
}

.jd-apply-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px
}

.jd-apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #e8282d;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    transition: background .2s, transform .2s
}

.jd-apply-btn:hover {
    background: #c01e22;
    color: #fff;
    transform: translateY(-2px)
}

.jd-info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    padding: 28px;
    margin-bottom: 24px
}

.jd-info-card h6 {
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.jd-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.jd-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444
}

.jd-info-list li i {
    color: #e8282d;
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0
}

.jd-info-list li span {
    font-weight: 600;
    color: #1a1a2e
}

.jd-deadline-card {
    background: linear-gradient(135deg, #fff3f3 0%, #fff8f8 100%);
    border: 1px solid #fdd;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px
}

.jd-deadline-card i {
    color: #e8282d;
    font-size: 28px;
    flex-shrink: 0
}

.jd-deadline-card .jd-dl-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.jd-deadline-card .jd-dl-date {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e
}

.jd-deadline-card .jd-dl-left {
    font-size: 12px;
    color: #e8282d;
    font-weight: 700;
    margin-top: 2px
}

.jd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color .2s
}

.jd-back-link:hover {
    color: #e8282d
}

.career-apply-hero {
    background: #f8f9fa;
    padding: 40px 0 32px;
    border-bottom: 1px solid #eee
}

.career-apply-hero .cap-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3f3;
    color: #e8282d;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px
}

.career-apply-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px
}

.career-apply-hero p {
    color: #666;
    font-size: 15px;
    margin: 0
}

@media(max-width:767px) {
    .jd-title {
        font-size: 26px
    }

    .career-form-left {
        padding: 36px 28px
    }

    .career-form-right {
        padding: 36px 28px
    }

    .jd-apply-card,
    .jd-info-card,
    .jd-deadline-card {
        margin-bottom: 16px
    }

    .jd-sidebar {
        position: static;
        top: auto
    }
}

.latest-service2__title-wrapper-subtitle {
    font-family: var(--rr-ff-subtitle)
}