/* ==========================================================================
   Trang tuyển dụng (/tuyen-dung) — listing + bộ lọc
   Dùng chung :root + .shell từ shell.css
   ========================================================================== */
.rec-hero,
.rec-main {
    font-family: var(--font-shell);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.rec-hero {
    position: relative;
    padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 84px);
    text-align: center;
    color: #fff;
}

.rec-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.rec-hero > .shell {
    position: relative;
    z-index: 1;
}

.rec-hero__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.15;
}

.rec-hero__line { display: block; }

.rec-hero__line--gold {
    padding: .08em 0;
    font-size: clamp(24px, 3.4vw, 40px);
    background: linear-gradient(180deg, #FDDA35 36.06%, #FE9C2B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.rec-hero__line--white {
    font-size: clamp(17px, 3.4vw, 40px);
    color: rgba(255, 255, 255, 1);
}

.rec-hero__sub {
    max-width: 880px;
    margin: 18px auto 0;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 1);
}

.rec-search {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 720px;
    margin: 28px auto 0;
    padding: 6px 6px 6px 20px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.rec-search__icon { color: #9ca3af; font-size: 16px; flex: 0 0 auto; }

.rec-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: #111827;
    font-family: inherit;
}

.rec-search__btn {
    flex: 0 0 auto;
    border: 0;
    border-radius: 100px;
    padding: 12px 30px;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: filter .18s var(--ease);
}

.rec-search__btn:hover { filter: brightness(1.06); }

/* -------------------------------------------------------------------------- */
/* Main layout                                                                */
/* -------------------------------------------------------------------------- */
.rec-main { padding: 44px 0 0; }

@media (max-width: 991px) {
    .rec-main { padding-bottom: 40px; }
}

.rec-main__title {
    margin: 0 0 24px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
}

.rec-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

/* Sidebar */
.rec-fgroup { margin-bottom: 26px; }

.rec-fgroup__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    color: rgba(160, 160, 160, 1);
}

.rec-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
}

.rec-check input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    accent-color: var(--brand);
    cursor: pointer;
}

.rec-check__label {
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(38, 38, 38, 1);
}

.rec-check__count {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(38, 38, 38, 1);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.rec-check input:checked ~ .rec-check__label { color: var(--brand); font-weight: 600; }

/* Job list */
.rec-list__count {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: rgba(160, 160, 160, 1);
}

.rec-list__count strong { font-weight: 800; color: rgba(38, 38, 38, 1); }

.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 112px;
    padding: 20px 28px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 1);
    border-radius: 13px;
    box-shadow: 0 4px 12.7px 4px rgba(126, 126, 126, .25);
    transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}

.job-row:hover { transform: translateY(-2px); box-shadow: 0 10px 24px 4px rgba(126, 126, 126, .3); }

.job-row__title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.job-row__title a { color: rgba(39, 39, 39, 1); text-decoration: none; }
.job-row__title a:hover { color: var(--brand); }

.job-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: rgba(80, 80, 80, 1);
}

.job-row__meta i { color: var(--brand); margin-right: 5px; }

.job-row__tag {
    padding: 7px 16px;
    border-radius: 10px;
    background: rgba(219, 31, 31, .1);
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-transform: capitalize;
}

.job-row__side {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.job-row__salary {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-transform: capitalize;
    white-space: nowrap;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.job-row__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 100px;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .18s var(--ease);
}

.job-row__apply:hover { filter: brightness(1.07); color: #fff; }

.rec-empty {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.rec-empty p { margin: 0 0 16px; color: #6b7280; }

.rec-pagination { margin-top: 24px; }
.rec-pagination .pagination { justify-content: center; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 860px) {
    .rec-layout { grid-template-columns: 1fr; gap: 28px; }
    .rec-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 24px;
    }
}

@media (max-width: 560px) {
    .rec-search { flex-wrap: wrap; border-radius: 16px; padding: 12px; }
    .rec-search input { width: 100%; }
    .rec-search__btn { width: 100%; }
    .job-row { flex-direction: column; align-items: flex-start; }
    .job-row__side { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
    .rec-filters { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Chi tiết tuyển dụng (recruitment.view)
   ========================================================================== */
.jd-breadcrumb,
.jd-wrap {
    font-family: var(--font-shell);
}

.jd-breadcrumb {
    padding: 22px 0 0;
}

.jd-breadcrumb .link {
    max-width: 1240px;
    margin: 0 auto;
    background: none;
    border: 0;
    padding: 0;
    font-family: var(--font-shell);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: justify;
    color: rgba(80, 80, 80, 1);
}

.jd-breadcrumb .link a { color: rgba(80, 80, 80, 1); text-decoration: none; }
.jd-breadcrumb .link a:hover { color: var(--brand); }

.jd-wrap {
    display: grid;
    grid-template-columns: minmax(0, 832px) 380px;
    justify-content: center;
    align-items: start;
    gap: 28px;
    padding: 18px 0 64px;
}

/* -------------------------------------------------------------------------- */
/* Cột chính                                                                  */
/* -------------------------------------------------------------------------- */
.jd-main {
    min-width: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

/* Header card đỏ */
.jd-header {
    padding: 28px 34px 26px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    box-shadow: 3px 4px 30px 0 rgba(58, 22, 22, .1);
    color: #fff;
}

.jd-header__badge {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
    font-size: 14px;
    font-weight: 700;
}

.jd-header__title {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}

.jd-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.jd-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jd-header__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.jd-header__meta i { font-size: 14px; opacity: .9; }

.jd-header__salary {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    white-space: nowrap;
}

/* Khối nội dung */
.jd-block { padding: 26px 34px 0; }
.jd-block:last-child { padding-bottom: 30px; }

.jd-block__title {
    position: relative;
    margin: 0 0 16px;
    padding-left: 14px;
    font-size: 20px;
    font-weight: 800;
    color: #1f1f1f;
}

.jd-block__title::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 4px;
    height: calc(100% - 4px);
    border-radius: 4px;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
}

/* Rich text từ CMS */
.jd-rich { font-size: 16px; line-height: 1.7; color: #3f3f3f; }
.jd-rich p { margin: 0 0 12px; }
.jd-rich ul, .jd-rich ol { margin: 0 0 12px; padding-left: 4px; list-style: none; }
.jd-rich ul li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.jd-rich ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--brand);
    font-size: 13px;
}
.jd-rich ol { padding-left: 20px; list-style: decimal; }
.jd-rich ol li { margin-bottom: 10px; }
.jd-rich h2, .jd-rich h3, .jd-rich h4 { font-size: 17px; font-weight: 700; margin: 18px 0 10px; color: #1f1f1f; }
.jd-rich a { color: var(--brand); }

/* Quyền lợi & phúc lợi */
.jd-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.jd-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 0;
    border-radius: 14px;
    background: rgba(243, 243, 243, 1);
    transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}

.jd-benefit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .08); }

.jd-benefit__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-soft, rgba(219, 31, 31, .1));
    color: var(--brand);
    font-size: 17px;
}

.jd-benefit__title { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: #1f1f1f; line-height: 1.3; }
.jd-benefit__desc { margin: 0; font-size: 14px; line-height: 1.45; color: #6f6f6f; }

.jd-address { margin: 0; font-size: 16px; line-height: 1.7; color: #3f3f3f; }

.jd-expired {
    margin: 20px 34px 0;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff7e6;
    border: 1px solid #ffe2a8;
    color: #8a6d1f;
    font-size: 15px;
}
.jd-expired a { color: var(--brand); font-weight: 600; }

.jd-tags { padding: 18px 34px 28px; font-size: 14px; color: #6f6f6f; }
.jd-tags a {
    display: inline-block;
    margin: 4px 6px 0 0;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--brand-soft, rgba(219, 31, 31, .1));
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Sidebar                                                                    */
/* -------------------------------------------------------------------------- */
.jd-side {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jd-cta,
.jd-overview,
.jd-related {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 22px 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.jd-cta__title { margin: 0 0 8px; font-size: 19px; font-weight: 800; color: #1f1f1f; }
.jd-cta__sub { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: #6f6f6f; }
.jd-cta__sub strong { color: var(--brand); }

.jd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.jd-btn--primary {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 8px 18px rgba(219, 31, 31, .28);
}
.jd-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(219, 31, 31, .34); }

.jd-btn--ghost {
    margin-top: 12px;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e6b9b9;
}
.jd-btn--ghost:hover { background: var(--brand-soft, rgba(219, 31, 31, .08)); }
.jd-btn--ghost.is-active {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    border-color: transparent;
}

.jd-btn.is-disabled {
    background: #d9d9d9;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}

/* Thông tin tổng quan */
.jd-overview__title,
.jd-related__title {
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    font-weight: 800;
    color: #1f1f1f;
}

.jd-overview__list { margin: 0; padding: 0; list-style: none; }
.jd-overview__list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    font-size: 15px;
    border-bottom: 1px dashed #efefef;
}
.jd-overview__list li:last-child { border-bottom: 0; }
.jd-overview__list span { color: #8a8a8a; flex: 0 0 auto; }
.jd-overview__list strong { color: #1f1f1f; font-weight: 700; text-align: right; }

/* Vị trí liên quan — dùng .job-card (compact) */
.jd-related { display: flex; flex-direction: column; gap: 0; }
.jd-related .jd-related__title { margin-bottom: 16px; }

.jd-related .job-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 18px 18px 16px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(126, 126, 126, .12);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.jd-related .job-card:last-child { margin-bottom: 0; }
.jd-related .job-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(126, 126, 126, .18); }

.jd-related .job-card__badge {
    align-self: flex-start;
    display: inline-flex;
    padding: 4px 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: var(--brand-soft, rgba(219, 31, 31, .1));
    font-size: 13px;
    font-weight: 700;
}
.jd-related .job-card__badge span {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.jd-related .job-card__title { margin: 0 0 12px; font-size: 16px; font-weight: 800; line-height: 1.35; }
.jd-related .job-card__title a { color: #272727; text-decoration: none; }
.jd-related .job-card__title a:hover { color: var(--brand); }

.jd-related .job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}
.jd-related .job-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #6f6f6f;
}
.jd-related .job-card__meta i { color: var(--brand); font-size: 12px; }

.jd-related .job-card__divider { height: 0; margin: 0 0 12px; border: 0; border-top: 1px solid #eee; }

.jd-related .job-card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: auto;
}

.jd-related .job-card__fav {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ead9d9;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    font-size: 14px;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.jd-related .job-card__fav:hover { background: var(--brand-soft, rgba(219, 31, 31, .08)); transform: scale(1.06); }
.jd-related .job-card__fav.is-active { background: var(--brand); color: #fff; }

.jd-related .job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(219, 31, 31, .24);
}
.jd-related .job-card__apply:hover { transform: translateY(-1px); }

/* -------------------------------------------------------------------------- */
/* Responsive chi tiết                                                        */
/* -------------------------------------------------------------------------- */
/* Section ảnh dưới chi tiết — full màn hình */
.jd-banner { padding: 8px 0 0; }
.jd-banner__link { display: block; }
.jd-banner__link img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .jd-wrap { grid-template-columns: 1fr; }
    .jd-side { position: static; }
    .jd-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .jd-header { padding: 22px 20px; }
    .jd-block { padding: 22px 20px 0; }
    .jd-header__row { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Section ảnh + FAQ (trang tuyển dụng)
   ========================================================================== */
.rec-banner { width: 100%; }
.rec-banner__bg { display: block; width: 100%; height: auto; }

.rec-faq {
    font-family: var(--font-shell);
    padding: 0 0 72px;
}

.rec-faq__title {
    margin: 0 0 36px;
    padding: .08em 0;
    text-align: center;
    font-size: clamp(19px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@media (max-width: 991px) {
    .rec-faq { padding-bottom: 40px; }
    .rec-faq__title { padding-top: 28px; }
}

.rec-faq__sub {
    margin: -24px 0 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(80, 80, 80, 1);
}

.rec-faq__list {
    max-width: 770px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
    overflow: hidden;
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.faq-item__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    font-size: 12px;
    transition: transform .25s var(--ease);
}

.faq-item.is-open .faq-item__icon { transform: rotate(90deg); }

.faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s var(--ease);
}

.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }

/* FAQ inner content */
.faq-item__body {
    overflow: hidden;
    padding: 0;
}

.faq-item.is-open .faq-item__body { padding: 4px 24px 20px; }

.faq-bullets {
    margin: 0 0 8px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
    line-height: 1.55;
    color: #374151;
}

.faq-note {
    margin: 8px 0 0;
    font-size: 14px;
    font-style: italic;
    color: #6b7280;
}

.faq-group-label {
    margin: 12px 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
}

.faq-steps {
    margin: 0 0 4px;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #374151;
}

/* Custom pager */
.job-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.job-pager__btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    color: #9ca3af;
    font-size: 15px;
    text-decoration: none;
    transition: background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}

.job-pager__btn--next {
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(157, 11, 15, .35);
}

.job-pager__btn--prev:hover:not(.is-disabled) {
    background: #f3f4f6;
    color: var(--brand);
}

.job-pager__btn--next:hover:not(.is-disabled) { filter: brightness(1.08); }

.job-pager__btn.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.job-pager__label {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}
