/* Recruitment page visual system aligned with the homepage. */
.jobs-page {
  --jobs-ink: #1c211d;
  --jobs-muted: #667068;
  --jobs-paper: #f7f7f3;
  --jobs-white: #ffffff;
  --jobs-green: #1c2b22;
  --jobs-green-soft: #e9eee8;
  --jobs-orange: #d66b27;
  --jobs-orange-dark: #a84418;
  --jobs-line: rgba(28, 43, 34, 0.12);
  --jobs-shadow: 0 20px 54px rgba(27, 34, 29, 0.11);
  --max: 1240px;
  color: var(--jobs-ink);
  background: var(--jobs-paper);
  letter-spacing: 0;
}

.jobs-page .container {
  width: min(100% - 64px, var(--max));
}

.jobs-page main > section,
.jobs-page #openings,
.jobs-page #apply {
  scroll-margin-top: 92px;
}

.jobs-page .site-header,
.jobs-page .site-header.is-solid,
.jobs-page.nav-open .site-header {
  background: rgba(17, 19, 16, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.jobs-page .site-header.is-solid {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.jobs-page .header-inner {
  width: min(100% - 64px, 1320px);
  min-height: 74px;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 48px;
}

.jobs-page .brand,
.jobs-page .brand-logo {
  width: 166px;
  min-width: 0;
}

.jobs-page .site-nav {
  justify-content: flex-end;
  gap: 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.jobs-page .site-nav a {
  padding: 27px 0 23px;
  transition: color 0.2s ease;
}

.jobs-page .site-nav a:hover,
.jobs-page .site-nav a.active {
  color: #fff;
}

.jobs-page .site-nav a::after {
  bottom: 16px;
  width: 0;
  height: 2px;
  border-radius: 0;
  background: var(--jobs-orange);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.jobs-page .site-nav a:hover::after,
.jobs-page .site-nav a.active::after {
  width: 24px;
}

.jobs-page .jobs-hero {
  min-height: 680px;
  padding: 118px 0 56px;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.88) 0%, rgba(7, 10, 8, 0.76) 25%, rgba(7, 10, 8, 0.46) 43%, rgba(7, 10, 8, 0.1) 60%, rgba(7, 10, 8, 0.02) 78%),
    url("美术资源/网页压缩图/jobs-people-hero.jpg") center 48% / cover no-repeat;
}

.jobs-page .jobs-hero::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.2) 100%);
}

.jobs-page .jobs-hero-inner {
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
}

.jobs-page .jobs-hero-copy {
  width: min(760px, 100%);
  padding-bottom: 0;
}

.jobs-page .jobs-hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 247, 236, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.jobs-page .jobs-hero-copy .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--jobs-orange);
}

.jobs-page .jobs-hero-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.15;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.jobs-page .jobs-hero-copy > p:not(.eyebrow) {
  width: min(580px, 100%);
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.85;
}

.jobs-page .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.jobs-page .btn::after {
  content: "→";
  margin-left: 12px;
}

.jobs-page .btn:hover {
  transform: translateY(-2px);
}

.jobs-page .btn-primary {
  background: var(--jobs-orange);
  box-shadow: 0 14px 30px rgba(214, 107, 39, 0.28);
}

.jobs-page .btn-primary:hover {
  background: #e27935;
  box-shadow: 0 18px 38px rgba(214, 107, 39, 0.34);
}

.jobs-page .jobs-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(13, 18, 14, 0.62);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.jobs-page .jobs-hero-panel img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  filter: saturate(0.92);
}

.jobs-page .jobs-hero-panel div {
  min-width: 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.jobs-page .jobs-hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.jobs-page .jobs-hero-panel strong {
  color: #fff;
  font-size: 22px;
}

.jobs-page .jobs-hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.jobs-page .section-label {
  margin-bottom: 15px;
  color: var(--jobs-orange-dark);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.jobs-page .section-label::after {
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: var(--jobs-orange);
}

.jobs-page .jobs-benefits {
  padding: 92px 0 96px;
  background: #fff;
}

.jobs-page .jobs-section-head {
  display: block;
  width: min(680px, 100%);
  margin-bottom: 36px;
}

.jobs-page .jobs-section-head h2,
.jobs-page .openings-copy h2,
.jobs-page .apply-card h2,
.jobs-page .process-heading h2 {
  margin: 0;
  color: var(--jobs-ink);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.22;
}

.jobs-page .benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.jobs-page .benefit-card {
  min-height: 214px;
  padding: 28px;
  border: 1px solid var(--jobs-line);
  border-top: 3px solid var(--jobs-orange);
  border-radius: 6px;
  background: #f2f5f1;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.jobs-page .benefit-card::after {
  display: none;
}

.jobs-page .benefit-card:hover {
  background: #fff;
  box-shadow: var(--jobs-shadow);
  transform: translateY(-4px);
}

.jobs-page .benefit-card span {
  color: var(--jobs-orange-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.jobs-page .benefit-card h3 {
  margin: 30px 0 10px;
  color: var(--jobs-ink);
  font-size: 23px;
}

.jobs-page .benefit-card p {
  margin: 0;
  color: var(--jobs-muted);
  font-size: 14px;
  line-height: 1.75;
}

.jobs-page .hiring-process {
  padding: 76px 0;
  color: #fff;
  background: var(--jobs-green);
}

.jobs-page .hiring-process-inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.jobs-page .process-heading .section-label {
  color: #f0a06a;
}

.jobs-page .process-heading h2 {
  color: #fff;
  font-size: 32px;
}

.jobs-page .process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.jobs-page .process-list li {
  position: relative;
  min-width: 0;
  min-height: 138px;
  padding: 4px 22px 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.jobs-page .process-list li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 34px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jobs-orange);
  box-shadow: 0 0 0 5px rgba(214, 107, 39, 0.16);
}

.jobs-page .process-list span,
.jobs-page .process-list strong,
.jobs-page .process-list em {
  display: block;
}

.jobs-page .process-list span {
  margin-bottom: 20px;
  color: #f0a06a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.jobs-page .process-list strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 17px;
}

.jobs-page .process-list em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
}

.jobs-page .openings-section {
  padding: 96px 0 100px;
  background: #eef1ec;
}

.jobs-page .openings-layout {
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 54px;
}

.jobs-page .openings-copy {
  top: 110px;
  padding: 0;
}

.jobs-page .openings-copy h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.jobs-page .openings-copy > p {
  margin-bottom: 26px;
  color: var(--jobs-muted);
  font-size: 14px;
  line-height: 1.8;
}

.jobs-page .opening-summary {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--jobs-line);
}

.jobs-page .opening-summary strong {
  color: var(--jobs-orange-dark);
  font-family: Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.jobs-page .opening-summary span {
  color: var(--jobs-muted);
  font-size: 12px;
}

.jobs-page .opening-list {
  gap: 14px;
}

.jobs-page .opening-card {
  position: relative;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.72fr) 116px;
  gap: 24px;
  min-height: 174px;
  padding: 26px 28px;
  border: 1px solid var(--jobs-line);
  border-left: 0;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 40, 33, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.jobs-page .opening-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 7px 0 0 7px;
  background: var(--jobs-orange);
}

.jobs-page .opening-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--jobs-shadow);
}

.jobs-page .opening-card span {
  color: var(--jobs-orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.jobs-page .opening-card h3 {
  margin: 6px 0 8px;
  color: var(--jobs-ink);
  font-size: 24px;
}

.jobs-page .opening-card p {
  margin: 0;
  color: var(--jobs-muted);
  font-size: 13px;
  line-height: 1.7;
}

.jobs-page .opening-card .opening-requirement {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--jobs-line);
  color: #49534c;
}

.jobs-page .opening-card ul {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.jobs-page .opening-card li {
  color: var(--jobs-muted);
  font-size: 12px;
  line-height: 1.55;
}

.jobs-page .opening-card li:last-child {
  color: #3c7049;
  font-weight: 700;
}

.jobs-page .opening-card a {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  color: #fff;
  background: var(--jobs-orange);
  box-shadow: none;
  font-size: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.jobs-page .opening-card a::after {
  content: "→";
  margin-left: 8px;
}

.jobs-page .opening-card a:hover {
  background: var(--jobs-orange-dark);
  transform: translateX(2px);
}

.jobs-page .opening-state {
  display: grid;
  min-height: 174px;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--jobs-line);
  border-radius: 7px;
  background: #fff;
  color: var(--jobs-muted);
  text-align: center;
}

.jobs-page .opening-state p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.jobs-page .opening-state a {
  color: var(--jobs-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.jobs-page .opening-state.is-error {
  gap: 10px;
  border-color: rgba(214, 107, 39, 0.35);
}

.jobs-page .apply-section {
  padding: 88px 0 92px;
  color: #fff;
  background: var(--jobs-green);
}

.jobs-page .apply-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.jobs-page .apply-card .section-label {
  color: #f0a06a;
}

.jobs-page .apply-card h2 {
  margin-bottom: 18px;
  color: #fff;
}

.jobs-page .apply-card > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.jobs-page .apply-contact-list {
  display: grid;
  gap: 0;
  padding: 8px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.jobs-page .apply-contact-list li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.jobs-page .apply-contact-list li:last-child {
  border-bottom: 0;
}

.jobs-page .apply-contact-list span {
  color: rgba(255, 255, 255, 0.5);
}

.jobs-page .apply-contact-list strong,
.jobs-page .apply-contact-list a {
  color: #fff;
  font-weight: 600;
}

.jobs-page .site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #111410;
}

.jobs-page .footer-grid {
  grid-template-columns: 1.18fr 1.2fr 1.05fr 0.72fr;
  gap: 42px;
  padding: 56px 0 46px;
}

.jobs-page .footer-logo {
  width: 166px;
  margin-bottom: 22px;
}

.jobs-page .footer-about h2 {
  display: none;
}

.jobs-page .site-footer h2 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 18px;
}

.jobs-page .site-footer p,
.jobs-page .contact-list,
.jobs-page .footer-links {
  font-size: 13px;
  line-height: 1.8;
}

.jobs-page .footer-links {
  display: grid;
  align-content: start;
  gap: 6px;
}

.jobs-page .footer-links h2 {
  margin-bottom: 11px;
}

.jobs-page .footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  transition: color 0.2s ease;
}

.jobs-page .footer-links a:hover {
  color: #fff;
}

.jobs-page .btn-footer {
  min-height: 36px;
  padding: 0 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  font-size: 12px;
}

.jobs-page .footer-store img {
  height: 164px;
  border-radius: 6px;
}

.jobs-page .footer-bottom {
  min-height: 48px;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
}

.js-reveal .jobs-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.js-reveal .jobs-page .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jobs-page .benefit-card:nth-child(2),
.jobs-page .process-list li:nth-child(2),
.jobs-page .opening-card:nth-child(2) {
  transition-delay: 70ms;
}

.jobs-page .benefit-card:nth-child(3),
.jobs-page .process-list li:nth-child(3),
.jobs-page .opening-card:nth-child(3) {
  transition-delay: 140ms;
}

.jobs-page .process-list li:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1220px) {
  .jobs-page .header-inner {
    width: min(100% - 40px, 1180px);
    gap: 28px;
  }

  .jobs-page .site-nav {
    gap: 28px;
    font-size: 13px;
  }

  .jobs-page .jobs-hero-inner {
    grid-template-columns: minmax(0, 720px);
    gap: 0;
  }

  .jobs-page .jobs-hero-copy h1 {
    font-size: 54px;
  }

  .jobs-page .hiring-process-inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
  }

  .jobs-page .openings-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
  }

  .jobs-page .opening-card {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .jobs-page .opening-card a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .jobs-page .jobs-hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .jobs-page .jobs-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .jobs-page .jobs-hero-copy {
    width: min(680px, 100%);
  }

  .jobs-page .jobs-hero-panel {
    width: min(620px, 100%);
  }

  .jobs-page .hiring-process-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .jobs-page .process-heading {
    width: min(520px, 100%);
  }

  .jobs-page .openings-layout {
    grid-template-columns: 1fr;
  }

  .jobs-page .openings-copy {
    position: static;
    width: min(620px, 100%);
  }

  .jobs-page .opening-summary {
    width: 220px;
  }

  .jobs-page .apply-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .jobs-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .jobs-page .header-inner {
    grid-template-columns: 166px auto;
  }

  .jobs-page .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .jobs-page .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 20px 20px;
    color: #fff;
    background: #111310;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
    transform: translateY(-125%);
    transition: transform 0.22s ease;
  }

  .jobs-page.nav-open .site-nav {
    transform: translateY(0);
  }

  .jobs-page .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .jobs-page .site-nav a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .jobs-page .container {
    width: min(100% - 28px, var(--max));
  }

  .jobs-page main > section,
  .jobs-page #openings,
  .jobs-page #apply {
    scroll-margin-top: 76px;
  }

  .jobs-page .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 64px;
    grid-template-columns: 126px auto;
  }

  .jobs-page .brand,
  .jobs-page .brand-logo {
    width: 124px;
  }

  .jobs-page .site-nav {
    inset: 64px 0 auto;
    padding: 12px 14px 18px;
  }

  .jobs-page .jobs-hero {
    padding: 108px 0 52px;
    background-position: 68% center;
  }

  .jobs-page .jobs-hero::before {
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.08), rgba(5, 7, 6, 0.18) 52%, rgba(5, 7, 6, 0.36) 100%);
  }

  .jobs-page .jobs-hero-copy h1 {
    margin-bottom: 18px;
    font-size: 43px;
    line-height: 1.13;
  }

  .jobs-page .jobs-hero-copy > p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.75;
  }

  .jobs-page .btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .jobs-page .jobs-hero-panel img {
    height: 176px;
  }

  .jobs-page .jobs-hero-panel div {
    padding: 15px;
  }

  .jobs-page .jobs-hero-panel strong {
    font-size: 18px;
  }

  .jobs-page .jobs-hero-panel span {
    font-size: 10px;
  }

  .jobs-page .jobs-benefits {
    padding: 62px 0 66px;
  }

  .jobs-page .jobs-section-head {
    margin-bottom: 26px;
  }

  .jobs-page .jobs-section-head h2,
  .jobs-page .openings-copy h2,
  .jobs-page .apply-card h2 {
    font-size: 34px;
  }

  .jobs-page .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jobs-page .benefit-card {
    min-height: 0;
    padding: 22px;
  }

  .jobs-page .benefit-card h3 {
    margin-top: 18px;
    font-size: 21px;
  }

  .jobs-page .hiring-process {
    padding: 58px 0 62px;
  }

  .jobs-page .process-heading h2 {
    font-size: 29px;
  }

  .jobs-page .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .jobs-page .process-list li {
    min-height: 118px;
    padding-right: 12px;
    padding-left: 18px;
  }

  .jobs-page .process-list span {
    margin-bottom: 14px;
  }

  .jobs-page .openings-section {
    padding: 64px 0 68px;
  }

  .jobs-page .opening-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px 20px;
  }

  .jobs-page .opening-card h3 {
    font-size: 22px;
  }

  .jobs-page .opening-card ul {
    padding-top: 15px;
    border-top: 1px solid var(--jobs-line);
  }

  .jobs-page .opening-card a {
    grid-column: auto;
  }

  .jobs-page .apply-section {
    padding: 64px 0 68px;
  }

  .jobs-page .apply-card {
    gap: 28px;
  }

  .jobs-page .apply-contact-list {
    padding: 6px 18px;
  }

  .jobs-page .apply-contact-list li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    font-size: 12px;
  }

  .jobs-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0 38px;
  }

  .jobs-page .footer-store {
    display: none;
  }

  .jobs-page .footer-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 6px 14px;
    padding: 14px;
    font-size: 10px;
  }

  .jobs-page .footer-bottom span + span::before {
    display: none;
  }
}

@media (max-width: 420px) {
  .jobs-page .jobs-hero-copy h1 {
    font-size: 39px;
  }

  .jobs-page .process-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .jobs-page .process-list li {
    min-height: 100px;
  }

  .jobs-page .apply-contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jobs-page *,
  .jobs-page *::before,
  .jobs-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
