/* Source: scenario-inertial.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* Hero */
    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    /* Sections */
    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    /* Feature cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .feature-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .feature-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .feature-card h3 {
      font-size: var(--fs-20);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .feature-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    /* Case study */
    .case-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 40px;
      display: flex;
      gap: 40px;
      align-items: center;
    }
    .case-card-text {
      flex: 1;
    }
    .case-card-text h3 {
      font-size: var(--fs-24);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 16px;
    }
    .case-card-text p {
      font-size: var(--fs-15);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.65);
      margin: 0 0 12px;
    }
    .case-card-visual {
      width: 400px;
      height: 260px;
      background: linear-gradient(135deg, #e6efff, #f0f4fb);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .case-card-visual span {
      font-size: var(--fs-14);
      color: rgba(18, 91, 206, 0.5);
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    /* Back-to-top */
    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    /* Fade-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Source: scenario-unimodal.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .feature-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .feature-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .feature-card h3 {
      font-size: var(--fs-20);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .feature-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    /* Product matrix */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .product-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .product-card-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #e6efff, #f0f4fb);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .product-card-icon svg {
      width: 32px;
      height: 32px;
    }
    .product-card-text h3 {
      font-size: var(--fs-20);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 8px;
    }
    .product-card-text p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Source: scenario-multimodal.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .feature-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .feature-card h3 {
      font-size: var(--fs-20);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .feature-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    /* Tech advantages */
    .advantage-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .advantage-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .advantage-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .advantage-num {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--fs-20);
      font-weight: 500;
      color: #fff;
      flex-shrink: 0;
    }
    .advantage-text h3 {
      font-size: var(--fs-20);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 8px;
    }
    .advantage-text p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Source: jobs-social.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    /* Job cards */
    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .job-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      border-top: 3px solid #0048ff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .job-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .job-card h3 {
      font-size: var(--fs-18);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .job-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 16px;
    }
    .job-tag {
      font-size: var(--fs-14);
      color: rgba(5, 12, 62, 0.6);
      background: #f2f5f8;
      padding: 4px 12px;
      border-radius: 4px;
    }
    .job-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }
    .job-card .apply-btn {
      display: inline-block;
      margin-top: 16px;
      font-size: var(--fs-14);
      color: #0048ff;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
    }
    .job-card .apply-btn:hover {
      color: #0b2874;
    }

    /* Apply section */
    .apply-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 48px;
      text-align: center;
    }
    .apply-box h3 {
      font-size: var(--fs-24);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 16px;
    }
    .apply-box p {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0 0 8px;
    }
    .apply-email {
      font-size: var(--fs-18);
      color: #0048ff;
      font-weight: 500;
      margin: 16px 0 0;
      display: block;
      text-decoration: none;
    }
    .apply-email:hover {
      color: #0b2874;
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Source: jobs-campus.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    /* Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .step-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .step-num {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--fs-20);
      font-weight: 500;
      color: #fff;
      margin: 0 auto 20px;
    }
    .step-card h3 {
      font-size: var(--fs-18);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .step-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    /* Job cards */
    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .job-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      border-top: 3px solid #0048ff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .job-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .job-card h3 {
      font-size: var(--fs-18);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .job-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 16px;
    }
    .job-tag {
      font-size: var(--fs-14);
      color: rgba(5, 12, 62, 0.6);
      background: #f2f5f8;
      padding: 4px 12px;
      border-radius: 4px;
    }
    .job-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }
    .job-card .apply-btn {
      display: inline-block;
      margin-top: 16px;
      font-size: var(--fs-14);
      color: #0048ff;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
    }
    .job-card .apply-btn:hover {
      color: #0b2874;
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Source: jobs-intern.html */
body {
      margin: 0;
      background: #f5f7fa;
      color: #050c3e;
      font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    .page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      height: 500px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #050b3e, #0b2874);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-title {
      font-size: var(--fs-48);
      color: #fff;
      font-weight: 500;
      margin: 0;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: var(--fs-20);
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 0;
      letter-spacing: 2px;
    }

    .content-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: var(--fs-36);
      font-weight: 500;
      color: #050c3e;
      text-align: center;
      margin: 0 0 16px;
    }
    .section-subtitle {
      font-size: var(--fs-18);
      color: rgba(5, 12, 62, 0.6);
      text-align: center;
      margin: 0 0 60px;
    }
    .section-desc {
      font-size: var(--fs-16);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.7);
      margin: 0;
    }
    .section-desc p {
      margin: 0 0 16px;
    }

    /* Benefits grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .benefit-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .benefit-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #125bce, #0b2874);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .benefit-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .benefit-card h3 {
      font-size: var(--fs-18);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .benefit-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }

    /* Job cards */
    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .job-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 32px;
      border-top: 3px solid #0048ff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .job-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .job-card h3 {
      font-size: var(--fs-18);
      font-weight: 500;
      color: #050c3e;
      margin: 0 0 12px;
    }
    .job-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 16px;
    }
    .job-tag {
      font-size: var(--fs-14);
      color: rgba(5, 12, 62, 0.6);
      background: #f2f5f8;
      padding: 4px 12px;
      border-radius: 4px;
    }
    .job-card p {
      font-size: var(--fs-14);
      line-height: 1.8;
      color: rgba(5, 12, 62, 0.6);
      margin: 0;
    }
    .job-card .apply-btn {
      display: inline-block;
      margin-top: 16px;
      font-size: var(--fs-14);
      color: #0048ff;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
    }
    .job-card .apply-btn:hover {
      color: #0b2874;
    }

    .divider {
      height: 1px;
      background: rgba(5, 12, 62, 0.08);
      margin: 0;
    }

    /* CTA + Footer */
    .ct-foot { position: relative; background: #000; }
    .ct-foot__cta-band { position: relative; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); }
    .ct-foot__cta-wrap { max-width: 1920px; margin: 0 auto; padding: 120px 160px; position: relative; z-index: 2; }
    .ct-foot__cta-card { position: relative; width: 100%; aspect-ratio: 1600 / 390; background: #0b2874; border-radius: 16px; overflow: hidden; }
    .ct-foot__cta-bg { position: absolute; left: 34.375%; top: -67.4%; width: 65.66%; height: 191.3%; object-fit: cover; opacity: 0.7; }
    .ct-foot__cta-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,40,116,1) 0%, rgba(11,40,116,0.6) 55%, rgba(11,40,116,0) 100%); }
    .ct-foot__cta-title { position: absolute; left: 6%; top: 18.46%; font-size: var(--fs-36); line-height: 1.4; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-title p { margin: 0; }
    .ct-foot__cta-sub { position: absolute; left: 6.19%; top: 50.26%; font-size: var(--fs-20); line-height: 1.5; color: #fff; margin: 0; white-space: nowrap; }
    .ct-foot__cta-sub p { margin: 0; }
    .ct-foot__cta-arrow { position: absolute; left: 6%; top: 76.92%; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 0.75rem; cursor: pointer; transition: opacity 0.3s, transform 0.3s; }
    .ct-foot__cta-arrow:hover { opacity: 0.85; transform: translateY(0.125rem); }
    .ct-foot__cta-arrow img { width: 100%; height: 100%; display: block; object-fit: contain; }
    .ct-foot__main { padding: 80px 160px 40px; }
    .ct-foot__main-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
    .ct-foot__logo { flex-shrink: 0; width: 208px; height: 59px; }
    .ct-foot__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .ct-foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
    .ct-foot__col { min-width: 80px; }
    .ct-foot__col h4 { font-size: var(--fs-20); font-weight: 400; color: #fff; margin: 0 0 20px 0; text-align: left; white-space: nowrap; }
    .ct-foot__col ul { list-style: none; margin: 0; padding: 0; }
    .ct-foot__col ul li { font-size: var(--fs-16); line-height: 36px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; white-space: nowrap; }
    .ct-foot__col ul li:hover { color: #fff; }
    .ct-foot__bottom { background: rgba(0,0,0,0.65); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 160px; }
    .ct-foot__bottom-inner { max-width: 1600px; margin: 0 auto; }
    .ct-foot__bottom-row1 { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
    .ct-foot__social { display: flex; align-items: center; gap: 28px; }
    .ct-foot__social .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s, transform 0.3s; }
    .ct-foot__social .ico:hover { color: #fff; transform: translateY(-2px); }
    .ct-foot__social .ico svg { display: block; fill: currentColor; }
    .ct-foot__social .ico.txt { font-size: var(--fs-18); font-weight: 500; }
    .ct-foot__phone { display: flex; align-items: center; gap: 8px; font-size: var(--fs-16); color: rgba(255,255,255,0.7); white-space: nowrap; }
    .ct-foot__phone svg { opacity: 0.7; }
    .ct-foot__bottom-row2 { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 48px; font-size: var(--fs-14); color: rgba(255,255,255,0.45); white-space: normal; }
    .ct-foot__links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .ct-foot__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .ct-foot__links a:hover { color: #fff; }
    .ct-foot__links .sep { color: rgba(255,255,255,0.15); }
    .ct-foot__copy { flex: 1 1 320px; min-width: 0; text-align: center; }
    .ct-foot__copy a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
    .ct-foot__copy a:hover { color: #fff; }
    .ct-foot__anbei { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; gap: 6px; }
    .ct-foot__anbei .badge { width: 18px; height: 18px; background: radial-gradient(circle at 35% 30%, #d04949 0%, #821818 70%, #4a0e0e 100%); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(208,73,73,0.4); }
    .ct-foot__anbei a { color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; }
    .ct-foot__anbei a:hover { color: #fff; }
    @media (max-width: 1200px) {
      .ct-foot__cta-wrap { padding: 60px 60px; }
      .ct-foot__main { padding: 60px 60px 32px; }
      .ct-foot__bottom { padding: 32px 60px; }
      .ct-foot__cta-title { font-size: var(--fs-28); }
      .ct-foot__cta-sub { font-size: var(--fs-16); }
    }
    @media (max-width: 768px) {
      .ct-foot__cta-wrap { padding: 40px 24px; }
      .ct-foot__cta-card { aspect-ratio: auto; padding: 40px 28px; }
      .ct-foot__cta-title { position: static; font-size: var(--fs-22); white-space: normal; }
      .ct-foot__cta-sub { position: static; font-size: var(--fs-14); white-space: normal; margin-top: 12px; }
      .ct-foot__cta-arrow { position: static; margin-top: 20px; }
      .ct-foot__main { padding: 40px 24px 24px; }
      .ct-foot__main-inner { flex-direction: column; gap: 32px; }
      .ct-foot__cols { gap: 24px; }
      .ct-foot__bottom { padding: 24px; }
      .ct-foot__bottom-row1 { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ct-foot__bottom-row2 { flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
      .ct-foot__copy { text-align: left; }
    }

    .back-to-top {
      position: fixed;
      right: 40px; bottom: 40px;
      width: 48px; height: 48px;
      background: rgba(18,91,206,0.7);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 100;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      backdrop-filter: blur(8px);
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: rgba(18,91,206,1); }

    .header { z-index: 200; }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

html.section-html,
html.section-html body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Recruitment choose-page polish: Figma 393:5795 and in-page filters. */
body.section-page .jobs-page {
  width: 100% !important;
  background: linear-gradient(to bottom, #e5f0ff 0%, #fff 44.15%) !important;
  background-repeat: no-repeat !important;
}

body.section-page .jobs-page .jobs-filter-head .jobs-filter-clear {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(5, 12, 62, 0.4);
  font: inherit;
  font-size: var(--fs-18);
  line-height: 25px;
  cursor: pointer;
}

body.section-page .jobs-page .jobs-page__category {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

body.section-page .jobs-page .jobs-page__category::before {
  content: none !important;
}

body.section-page .jobs-page .jobs-category-toggle {
  flex: 0 0 14px;
  width: 14px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--jobs-ink);
  clip-path: polygon(32% 18%, 32% 82%, 76% 50%);
  opacity: 0.82;
  cursor: pointer;
}

body.section-page .jobs-page .jobs-category-toggle[aria-expanded="true"] {
  clip-path: polygon(18% 32%, 82% 32%, 50% 76%);
}

body.section-page .jobs-page .jobs-category-toggle:disabled {
  opacity: 0.3;
  cursor: default;
}

body.section-page .jobs-page .jobs-category-option,
body.section-page .jobs-page .jobs-page__subcategory,
body.section-page .jobs-page .jobs-page__location {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  cursor: pointer;
}

body.section-page .jobs-page .jobs-filter-checkbox {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #8f959e;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

body.section-page .jobs-page .jobs-filter-checkbox:checked,
body.section-page .jobs-page .jobs-filter-checkbox:indeterminate,
body.section-page .jobs-page .jobs-filter-checkbox.is-indeterminate {
  border-color: var(--jobs-blue);
  background-color: var(--jobs-blue);
}

body.section-page .jobs-page .jobs-filter-checkbox:checked {
  background-image: linear-gradient(45deg, transparent 44%, #fff 44%, #fff 56%, transparent 56%),
    linear-gradient(-45deg, transparent 54%, #fff 54%, #fff 66%, transparent 66%);
  background-position: 3px 7px, 7px 4px;
  background-size: 6px 5px, 8px 9px;
  background-repeat: no-repeat;
}

body.section-page .jobs-page .jobs-filter-checkbox:indeterminate,
body.section-page .jobs-page .jobs-filter-checkbox.is-indeterminate {
  background-image: linear-gradient(#fff, #fff);
  background-position: center;
  background-size: 12px 2px;
  background-repeat: no-repeat;
}

body.section-page .jobs-page .jobs-filter-checkbox:focus-visible,
body.section-page .jobs-page .jobs-category-toggle:focus-visible,
body.section-page .jobs-page .jobs-filter-clear:focus-visible {
  outline: 2px solid #1e9dec;
  outline-offset: 3px;
}

body.section-page .jobs-page .jobs-page__subcategories[hidden],
body.section-page .jobs-page .jobs-figma-job-card[hidden],
body.section-page .jobs-page .jobs-filter-empty[hidden] {
  display: none !important;
}

body.section-page .jobs-page .jobs-page__subcategory span {
  color: var(--jobs-ink);
  font-size: var(--fs-18);
  line-height: 24px;
}

body.section-page .jobs-page .jobs-page__location span {
  color: var(--jobs-ink);
  font-size: var(--fs-20);
  line-height: 28px;
}

body.section-page .jobs-page .jobs-figma-search {
  display: flex !important;
  align-items: center !important;
}

body.section-page .jobs-page .jobs-figma-search::after {
  content: none !important;
}

body.section-page .jobs-page .jobs-search-icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #a1a4b7;
}

body.section-page .jobs-page .jobs-filter-live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body.section-page .jobs-page .jobs-filter-empty {
  margin-top: 0;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-category-option span,
  body.section-page .jobs-page .jobs-page__location span {
    font-size: var(--fs-16);
  }
}

/* Mobile recruitment navigation, search, and detail readability. */
body.section-page .jobs-page .jobs-page__back {
  display: none;
}

body.section-page .jobs-page .jobs-figma-search[data-has-value="true"] > span {
  display: none !important;
}

/* Figma recruitment flow, scoped after legacy jobs styles. */
body.section-page .jobs-page {
  --jobs-scale: min(1, calc(100vw / 1920));
  --jobs-blue: #125bce;
  --jobs-ink: #050c3e;
  --jobs-muted: rgba(5, 12, 62, 0.6);
  --jobs-line: #dee1e5;
  --jobs-panel: #fff;
  --jobs-bg: #f8f9fa;
  box-sizing: border-box;
  min-height: 100vh;
  padding: var(--header-height, 70px) 0 0;
  overflow-x: clip;
  background: var(--jobs-bg);
  color: var(--jobs-ink);
}

body.section-page .jobs-page *,
body.section-page .jobs-page *::before,
body.section-page .jobs-page *::after {
  box-sizing: border-box;
}

body.section-page .jobs-page__scale {
  width: 100%;
  min-height: calc(100vh - var(--header-height, 70px));
}

body.section-page .jobs-page__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(50px * var(--jobs-scale));
  height: 70px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}

body.section-page .jobs-page__tabs a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--fs-16);
  line-height: 1;
  text-decoration: none;
}

body.section-page .jobs-page__tabs a.is-active {
  color: #fff;
}

body.section-page .jobs-page__tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 16px;
  height: 1px;
  transform: translateX(-50%);
  background: #1e9dec;
}

body.section-page .jobs-page__banner {
  position: relative;
  width: min(calc(1776px * var(--jobs-scale)), calc(100vw - 72px));
  height: max(260px, calc(392px * var(--jobs-scale)));
  margin: calc(72px * var(--jobs-scale)) auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: #071735;
}

body.section-page .jobs-page__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.section-page .jobs-page__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 12, 62, 0.48), rgba(5, 12, 62, 0.08));
}

body.section-page .jobs-page__banner-copy {
  position: absolute;
  z-index: 1;
  left: calc(156px * var(--jobs-scale));
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

body.section-page .jobs-page__banner-copy h1 {
  margin: 0;
  font-size: var(--fs-48);
  line-height: 1.2;
  font-weight: 400;
}

body.section-page .jobs-page__banner-copy p {
  margin: 2px 0 0;
  font-size: var(--fs-24);
  line-height: 32px;
  text-transform: uppercase;
}

body.section-page .jobs-page__alert {
  width: min(calc(1392px * var(--jobs-scale)), calc(100vw - 48px));
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(18, 91, 206, 0.18);
  border-radius: 12px;
  background: rgba(18, 91, 206, 0.06);
}

body.section-page .jobs-page__alert p {
  margin: 0;
  color: var(--jobs-ink);
  font-size: var(--fs-14);
  line-height: 1.7;
}

body.section-page .jobs-figma-choose,
body.section-page .jobs-figma-detail,
body.section-page .jobs-figma-apply {
  width: min(calc(1392px * var(--jobs-scale)), calc(100vw - 48px));
  margin: calc(72px * var(--jobs-scale)) auto 0;
}

body.section-page .jobs-figma-choose {
  display: grid;
  grid-template-columns: calc(420px * var(--jobs-scale)) minmax(0, 1fr);
  column-gap: calc(48px * var(--jobs-scale));
  align-items: start;
  padding-bottom: calc(96px * var(--jobs-scale));
}

body.section-page .jobs-figma-filter.jobs-page__categories {
  display: block;
  margin: 0;
  padding-right: calc(74px * var(--jobs-scale));
  border-right: 2px solid var(--jobs-line);
}

body.section-page .jobs-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 66px;
  border-bottom: 2px solid var(--jobs-line);
}

body.section-page .jobs-filter-head h2,
body.section-page .jobs-filter-group h3 {
  margin: 0;
  color: var(--jobs-ink);
  font-size: var(--fs-28);
  line-height: 39px;
  font-weight: 500;
}

body.section-page .jobs-filter-head h2 {
  font-size: var(--fs-20);
  line-height: 28px;
  font-weight: 400;
}

body.section-page .jobs-filter-head a {
  color: rgba(5, 12, 62, 0.4);
  font-size: var(--fs-18);
  line-height: 25px;
  text-decoration: none;
}

body.section-page .jobs-filter-group {
  padding-top: 45px;
}

body.section-page .jobs-filter-group + .jobs-filter-group {
  padding-top: 76px;
}

body.section-page .jobs-page__category {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--jobs-ink);
  text-decoration: none;
  box-shadow: none;
  transform: none;
}

body.section-page .jobs-page__category:hover {
  opacity: 0.8;
  transform: none;
  box-shadow: none;
}

body.section-page .jobs-page__category i,
body.section-page .jobs-page__location i {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid #8f959e;
  border-radius: 2px;
}

body.section-page .jobs-page__category.is-active i {
  position: relative;
  border-color: var(--jobs-blue);
  background: var(--jobs-blue);
}

body.section-page .jobs-page__category.is-active i::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

body.section-page .jobs-page__category span,
body.section-page .jobs-page__location {
  color: var(--jobs-ink);
  font-size: var(--fs-20);
  line-height: 28px;
}

body.section-page .jobs-page__category:not(.is-active) span {
  opacity: 0.62;
}

body.section-page .jobs-page__location {
  display: flex;
  align-items: center;
  margin-top: 20px;
  opacity: 0.62;
}

body.section-page .jobs-figma-list {
  min-width: 0;
}

body.section-page .jobs-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: -7px;
}

body.section-page .jobs-list-head h2 {
  margin: 0;
  color: var(--jobs-ink);
  font-size: var(--fs-36);
  line-height: 50px;
  font-weight: 500;
}

body.section-page .jobs-figma-search {
  position: relative;
  flex: 0 0 240px;
  height: 36px;
  margin-top: 7px;
  border: 2px solid var(--jobs-line);
  border-radius: 18px;
  background: #fff;
}

body.section-page .jobs-figma-search span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(5, 12, 62, 0.4);
  font-size: var(--fs-18);
  line-height: 1;
  pointer-events: none;
}

body.section-page .jobs-figma-search input {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 72px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  background: transparent;
  color: var(--jobs-ink);
}

body.section-page .jobs-page__cards {
  display: grid;
  gap: 48px;
  margin-top: 56px;
}

body.section-page .jobs-page__job-card {
  display: block;
  min-height: 119px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--jobs-ink);
  text-decoration: none;
  box-shadow: none;
}

body.section-page .jobs-page__job-card:hover {
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

body.section-page .jobs-page__job-card h3 {
  margin: 0;
  color: var(--jobs-ink);
  font-size: var(--fs-28);
  line-height: 39px;
  font-weight: 500;
}

body.section-page .jobs-page__job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

body.section-page .jobs-page__job-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--jobs-muted);
  font-size: var(--fs-14);
  line-height: 20px;
}

body.section-page .jobs-page__job-meta span + span::before {
  content: "｜";
  margin-right: 8px;
  color: rgba(5, 12, 62, 0.28);
}

body.section-page .jobs-page__job-card p {
  margin: 20px 0 0;
  color: rgba(5, 12, 62, 0.4);
  font-size: var(--fs-20);
  line-height: 28px;
}

body.section-page .jobs-page__empty {
  margin-top: 56px;
  padding: 32px;
  border: 2px dashed var(--jobs-line);
  border-radius: 18px;
  background: #fff;
}

body.section-page .jobs-page__empty strong {
  color: var(--jobs-ink);
  font-size: var(--fs-24);
  line-height: 1.4;
  font-weight: 500;
}

body.section-page .jobs-page__empty p {
  margin: 12px 0 0;
  color: var(--jobs-muted);
  font-size: var(--fs-16);
  line-height: 1.7;
}

body.section-page .jobs-figma-detail {
  display: grid;
  grid-template-columns: minmax(0, calc(996px * var(--jobs-scale))) calc(360px * var(--jobs-scale));
  gap: calc(36px * var(--jobs-scale));
  align-items: start;
  padding-bottom: calc(156px * var(--jobs-scale));
}

body.section-page .jobs-page__detail-card,
body.section-page .jobs-page__detail-panel,
body.section-page .jobs-apply-panel {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 12px rgba(5, 12, 62, 0.05);
}

body.section-page .jobs-page__detail-card {
  min-height: calc(948px * var(--jobs-scale));
  padding: calc(48px * var(--jobs-scale));
  color: var(--jobs-ink);
}

body.section-page .jobs-figma-detail-title,
body.section-page .jobs-apply-head h2 {
  margin: 0;
  color: var(--jobs-ink);
  font-size: var(--fs-36);
  line-height: 50px;
  font-weight: 500;
}

body.section-page .jobs-page__detail-section {
  margin-top: 54px;
  padding-top: 0;
  border-top: 0;
}

body.section-page .jobs-page__detail-section h3,
body.section-page .jobs-page__detail-panel h3,
body.section-page .jobs-apply-section__head h3 {
  position: relative;
  margin: 0;
  padding-left: 19px;
  color: var(--jobs-ink);
  font-size: var(--fs-28);
  line-height: 39px;
  font-weight: 500;
}

body.section-page .jobs-page__detail-section h3::before,
body.section-page .jobs-page__detail-panel h3::before,
body.section-page .jobs-apply-section__head h3::before,
body.section-page .jobs-apply-head > span {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--jobs-blue);
}

body.section-page .jobs-page__detail-section p,
body.section-page .jobs-page__detail-section ul {
  margin: 11px 0 0;
  padding: 0;
  color: var(--jobs-muted);
  font-size: var(--fs-20);
  line-height: 48px;
}

body.section-page .jobs-page__detail-section li {
  list-style: none;
}

body.section-page .jobs-page__detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 58px;
  margin-top: 42px;
  padding: 12px 36px;
  border-radius: 42px;
  background: var(--jobs-blue);
  color: #fff;
  font-size: var(--fs-24);
  line-height: 34px;
  text-decoration: none;
}

body.section-page .jobs-page__detail-panel {
  min-height: calc(657px * var(--jobs-scale));
  padding: calc(48px * var(--jobs-scale)) calc(36px * var(--jobs-scale));
}

body.section-page .jobs-page__related-list {
  display: grid;
  gap: 36px;
  margin-top: 42px;
}

body.section-page .jobs-page__related-list a {
  color: var(--jobs-ink);
  text-decoration: none;
}

body.section-page .jobs-page__related-list strong {
  display: block;
  font-size: var(--fs-24);
  line-height: 34px;
  font-weight: 500;
}

body.section-page .jobs-page__related-list span {
  display: block;
  margin-top: 4px;
  color: var(--jobs-muted);
  font-size: var(--fs-20);
  line-height: 28px;
}

body.section-page .jobs-page__related-list a:not(.is-active) {
  opacity: 0.68;
}

body.section-page .jobs-figma-apply {
  position: relative;
  padding-bottom: 126px;
}

body.section-page .jobs-apply-panel {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

body.section-page .jobs-apply-head {
  position: relative;
  padding: 48px;
}

body.section-page .jobs-apply-head > span {
  top: 57px;
  left: 48px;
  height: 32px;
}

body.section-page .jobs-apply-head h2 {
  padding-left: 19px;
}

body.section-page .jobs-apply-form {
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
}

body.section-page .jobs-apply-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 780px);
  column-gap: 60px;
  padding: 62px 0;
  border-top: 2px solid var(--jobs-line);
}

body.section-page .jobs-apply-section:first-child {
  border-top: 0;
}

body.section-page .jobs-apply-section__head p {
  margin: 4px 0 0 19px;
  color: var(--jobs-muted);
  font-size: var(--fs-20);
  line-height: 28px;
}

body.section-page .jobs-apply-grid {
  display: grid;
  gap: 24px;
}

body.section-page .jobs-apply-grid label {
  display: grid;
  gap: 8px;
  color: var(--jobs-ink);
  font-size: var(--fs-24);
  line-height: 34px;
}

body.section-page .jobs-apply-grid input {
  width: 100%;
  height: 60px;
  border: 2px solid var(--jobs-line);
  border-radius: 12px;
  background: #fff;
  color: var(--jobs-ink);
  font-size: var(--fs-18);
  padding: 0 16px;
}

body.section-page .jobs-apply-range {
  grid-template-columns: 1fr;
}

body.section-page .jobs-apply-range span {
  grid-column: 1 / -1;
}

body.section-page .jobs-apply-range input {
  width: calc(50% - 21px);
}

body.section-page .jobs-apply-range i {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 9px 5px;
  background: var(--jobs-line);
}

body.section-page .jobs-apply-actions {
  grid-column: 2;
  width: 100%;
  height: 36px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.section-page .jobs-apply-add {
  width: auto;
  min-width: 78px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: transparent;
  color: var(--jobs-blue);
  font-size: var(--fs-24);
  line-height: 34px;
  text-align: left;
  cursor: pointer;
}

body.section-page .jobs-apply-add > span[aria-hidden="true"] {
  display: none;
}

body.section-page .jobs-apply-add > span:not([aria-hidden]) {
  display: block;
  line-height: 34px;
}

body.section-page .jobs-apply-add::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 0;
  border-radius: 0;
  font-size: var(--fs-28);
  line-height: 20px;
}

body.section-page .jobs-apply-remove {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}

body.section-page .jobs-apply-remove::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 9V5.25C11.25 4.42157 11.9216 3.75 12.75 3.75H23.25C24.0784 3.75 24.75 4.42157 24.75 5.25V9' stroke='%23050C3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 9H31.5' stroke='%23050C3E' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8.25 9L9.75 32.25H26.25L27.75 9' stroke='%23050C3E' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14.25 26.25H21.75' stroke='%23050C3E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
}

body.section-page .jobs-apply-submit {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 126px;
  padding: 0 calc(265px * var(--jobs-scale));
  margin-top: 0;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(5, 12, 62, 0.1);
}

body.section-page .jobs-apply-submit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 58px;
  padding: 12px 36px;
  border-radius: 42px;
  background: var(--jobs-blue);
  color: #fff;
  font-size: var(--fs-24);
  line-height: 34px;
  text-decoration: none;
}

@media (max-width: 900px) {
  body.section-page .jobs-page {
    --jobs-scale: 1;
    padding-top: var(--header-height, 70px);
  }

  body.section-page .jobs-page__tabs {
    justify-content: flex-start;
    gap: 28px;
    height: 56px;
    padding: 0 20px;
    overflow-x: auto;
  }

  body.section-page .jobs-page__tabs a {
    flex: 0 0 auto;
  }

  body.section-page .jobs-page__tabs a.is-active::after {
    bottom: -17px;
  }

  body.section-page .jobs-page__banner,
  body.section-page .jobs-figma-choose,
  body.section-page .jobs-figma-detail,
  body.section-page .jobs-figma-apply,
  body.section-page .jobs-page__alert {
    width: calc(100vw - 40px);
    margin-top: 28px;
  }

  body.section-page .jobs-page__banner {
    height: 220px;
    border-radius: 18px;
  }

  body.section-page .jobs-page__banner-copy {
    left: 28px;
  }

  body.section-page .jobs-page__banner-copy h1 {
    font-size: var(--fs-36);
  }

  body.section-page .jobs-page__banner-copy p {
    font-size: var(--fs-18);
  }

  body.section-page .jobs-figma-choose,
  body.section-page .jobs-figma-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 72px;
  }

  body.section-page .jobs-figma-filter.jobs-page__categories {
    padding-right: 0;
    border-right: 0;
    border-bottom: 2px solid var(--jobs-line);
    padding-bottom: 28px;
  }

  body.section-page .jobs-filter-group,
  body.section-page .jobs-filter-group + .jobs-filter-group {
    padding-top: 28px;
  }

  body.section-page .jobs-list-head,
  body.section-page .jobs-apply-head {
    display: grid;
  }

  body.section-page .jobs-figma-search {
    width: 100%;
    flex-basis: auto;
  }

  body.section-page .jobs-page__cards {
    gap: 28px;
    margin-top: 32px;
  }

  body.section-page .jobs-page__job-card h3,
  body.section-page .jobs-filter-head h2,
  body.section-page .jobs-filter-group h3,
  body.section-page .jobs-list-head h2,
  body.section-page .jobs-page__detail-section h3,
  body.section-page .jobs-page__detail-panel h3,
  body.section-page .jobs-apply-section__head h3 {
    font-size: var(--fs-24);
    line-height: 1.35;
  }

  body.section-page .jobs-page__job-card p,
  body.section-page .jobs-page__category span,
  body.section-page .jobs-page__location,
  body.section-page .jobs-page__detail-section p,
  body.section-page .jobs-page__detail-section ul,
  body.section-page .jobs-page__related-list span,
  body.section-page .jobs-apply-section__head p {
    font-size: var(--fs-16);
    line-height: 1.8;
  }

  body.section-page .jobs-page__detail-card,
  body.section-page .jobs-page__detail-panel,
  body.section-page .jobs-apply-panel {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }

  body.section-page .jobs-figma-detail-title,
  body.section-page .jobs-apply-head h2 {
    font-size: var(--fs-28);
    line-height: 1.3;
  }

  body.section-page .jobs-page__detail-section {
    margin-top: 32px;
  }

  body.section-page .jobs-page__detail-section p,
  body.section-page .jobs-page__detail-section ul {
    line-height: 1.9;
  }

  body.section-page .jobs-apply-head {
    padding: 24px;
  }

  body.section-page .jobs-apply-head > span {
    top: 31px;
    left: 24px;
  }

  body.section-page .jobs-apply-form {
    width: calc(100% - 48px);
  }

  body.section-page .jobs-apply-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  body.section-page .jobs-apply-grid label {
    font-size: var(--fs-18);
  }

  body.section-page .jobs-apply-range input {
    width: 100%;
  }

  body.section-page .jobs-apply-range i {
    display: block;
    margin: 10px auto;
  }

  body.section-page .jobs-apply-submit {
    height: 86px;
    padding: 0 20px;
  }

  body.section-page .jobs-page__detail-cta,
  body.section-page .jobs-apply-submit a {
    min-height: 48px;
    font-size: var(--fs-18);
  }
}
.section-page .fade-in {
  opacity: 1;
  transform: none;
}
.section-page .content-section,
.section-page .page-wrap {
  background: transparent;
}
.section-page .section-cms {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-page .section-cms h2 {
  font-size: var(--fs-36);
  font-weight: 500;
  color: #050c3e;
  text-align: center;
  margin: 0 0 24px;
}
.section-page .section-cms p {
  font-size: var(--fs-16);
  line-height: 1.9;
  color: rgba(5, 12, 62, 0.7);
  margin: 0 0 16px;
}

.section-next {
  background: #f5f7fa;
  padding: 0 24px clamp(250px, 18vw, 340px);
}

.section-next__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-top: 34px;
  border-top: 1px solid rgba(5, 12, 62, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.section-next span {
  display: block;
  margin-bottom: 8px;
  color: #125bce;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: var(--fs-14);
}

.section-next h2 {
  margin: 0;
  color: #050c3e;
  font-size: var(--fs-36);
  font-weight: 500;
}

.section-next__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.section-next__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  background: #0b2874;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.section-next__links a:hover {
  background: #1849a0;
  transform: translateY(-2px);
}

.section-page .cards-grid,
.section-page .jobs-grid,
.section-page .steps-grid,
.section-page .benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.section-page {
  --sec-fs-12: var(--fs-12);
  --sec-fs-13: var(--fs-14);
  --sec-fs-14: var(--fs-14);
  --sec-fs-15: var(--amicro-fs-15, clamp(12px, calc(15 / 1920 * 100vw), 15px));
  --sec-fs-16: var(--fs-16);
  --sec-fs-18: var(--amicro-fs-18, clamp(13px, calc(18 / 1920 * 100vw), 18px));
  --sec-fs-20: var(--fs-20);
  --sec-fs-24: var(--fs-24);
  --sec-fs-28: var(--amicro-fs-28, clamp(20px, calc(28 / 1920 * 100vw), 28px));
  --sec-fs-30: var(--amicro-fs-30, clamp(20px, calc(30 / 1920 * 100vw), 30px));
  --sec-fs-34: var(--amicro-fs-34, clamp(24px, calc(34 / 1920 * 100vw), 34px));
  --sec-fs-36: var(--fs-36);
  --sec-fs-38: var(--fs-36);
  --sec-fs-48: var(--fs-48);
}

.section-page .hero-title,
.section-page .section-title,
.section-page .ct-foot__cta-title,
.section-page .section-cms h2 {
  font-size: var(--sec-fs-48) !important;
}

.section-page .hero-subtitle,
.section-page .section-subtitle,
.section-page .ct-foot__cta-sub,
.section-page .section-cms p,
.section-page .feature-card p,
.section-page .case-card-text p {
  font-size: var(--sec-fs-20) !important;
}

.section-page .feature-card h3,
.section-page .case-card-text h3,
.section-page .ct-foot__col h4 {
  font-size: var(--sec-fs-24) !important;
}

.section-page .feature-card p,
.section-page .case-card-text p,
.section-page .ct-foot__col ul li,
.section-page .ct-foot__phone,
.section-page .ct-foot__bottom-row2 {
  font-size: var(--sec-fs-16) !important;
}

.section-page .case-card-visual span,
.section-page .ct-foot__social .ico.txt,
.section-page .section-next span {
  font-size: var(--sec-fs-13) !important;
}

.section-page .section-desc,
.section-page .section-next h2 {
  font-size: var(--sec-fs-36) !important;
}

.section-page .section-next {
  font-size: var(--sec-fs-14) !important;
}

.section-page .case-card {
  align-items: stretch;
}

.section-page .case-card-visual {
  overflow: hidden;
}

.section-page .case-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}

.section-page .apply-btn {
  text-decoration: none;
}

@media (max-width: 820px) {
  .section-next {
    padding-bottom: 120px;
  }

  .section-next__inner,
  .section-page .case-card {
    flex-direction: column;
  }

  .section-next__links {
    justify-content: flex-start;
  }

  .section-page .case-card-visual {
    width: 100%;
  }

  .hero {
    height: auto;
    min-height: 320px;
    padding: 72px 24px;
  }
}

html[data-mobile] body.section-page {
  background: #f5f7fa;
}

html[data-mobile] body.section-page .hero {
  margin-top: 0;
}

html[data-mobile] body.section-page .section-next {
  padding: 0 24px calc(128px + env(safe-area-inset-bottom));
}

html[data-mobile] body.section-page .section-next__links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

html[data-mobile] body.section-page .section-next__links a,
html[data-mobile] body.section-page .section-next__links a:visited {
  min-height: 46px;
  justify-content: center;
  color: #fff;
  background: #0b2874;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

html[data-mobile] body.section-page .section-next__links a span,
html[data-mobile] body.section-page .section-next__links a:visited span {
  color: rgba(255, 255, 255, 0.88);
}

html[data-mobile] body.section-page .section-next__links a:active {
  background: #1849a0;
}

@media (max-width: 520px) {
  html[data-mobile] body.section-page .section-next__links {
    grid-template-columns: 1fr;
  }
}

.section-page {
  --sec-fs-12: var(--fs-12);
  --sec-fs-13: var(--fs-14);
  --sec-fs-14: var(--fs-14);
  --sec-fs-15: var(--amicro-fs-15, clamp(12px, calc(15 / 1920 * 100vw), 15px));
  --sec-fs-16: var(--fs-16);
  --sec-fs-18: var(--amicro-fs-18, clamp(13px, calc(18 / 1920 * 100vw), 18px));
  --sec-fs-20: var(--fs-20);
  --sec-fs-22: var(--fs-22);
  --sec-fs-24: var(--fs-24);
  --sec-fs-26: var(--amicro-fs-26, clamp(18px, calc(26 / 1920 * 100vw), 26px));
  --sec-fs-28: var(--amicro-fs-28, clamp(20px, calc(28 / 1920 * 100vw), 28px));
  --sec-fs-30: var(--amicro-fs-30, clamp(20px, calc(30 / 1920 * 100vw), 30px));
  --sec-fs-32: var(--amicro-fs-32, clamp(22px, calc(32 / 1920 * 100vw), 32px));
  --sec-fs-34: var(--amicro-fs-34, clamp(24px, calc(34 / 1920 * 100vw), 34px));
  --sec-fs-36: var(--fs-36);
  --sec-fs-38: var(--fs-36);
  --sec-fs-48: var(--fs-48);
}

.section-page .hero-title,
.section-page .hero.hero--jobs .hero-title,
.section-page .section-title,
.section-page .section-cms h2,
.section-page .ct-foot__cta-title {
  font-size: var(--sec-fs-48) !important;
}

.section-page .hero-subtitle,
.section-page .hero.hero--jobs .hero-subtitle,
.section-page .section-subtitle,
.section-page .section-cms p,
.section-page .section-desc,
.section-page .jobs-page__summary,
.section-page .jobs-page__lead-panel-body,
.section-page .jobs-page__job-card p,
.section-page .jobs-page__detail-section p,
.section-page .jobs-page__detail-section ul,
.section-page .jobs-page__empty p,
.section-page .ct-foot__cta-sub,
.section-page .feature-card p,
.section-page .case-card-text p {
  font-size: var(--sec-fs-20) !important;
}

.section-page .feature-card h3,
.section-page .case-card-text h3,
.section-page .jobs-page__lead-panel-body h2,
.section-page .jobs-page__panel-head h3,
.section-page .jobs-page__detail-head h3,
.section-page .jobs-page__delivery-card h3,
.section-page .jobs-page__footer h3,
.section-page .jobs-page__empty strong,
.section-page .ct-foot__col h4 {
  font-size: var(--sec-fs-24) !important;
}

.section-page .jobs-page__category strong,
.section-page .jobs-page__job-top h4,
.section-page .jobs-page__detail-section h4,
.section-page .jobs-page__detail-meta strong,
.section-page .jobs-page__delivery-grid strong,
.section-page .section-next h2 {
  font-size: var(--sec-fs-36) !important;
}

.section-page .jobs-page__lead-panel-head strong {
  font-size: var(--sec-fs-38) !important;
}

.section-page .jobs-page__category em,
.section-page .jobs-page__category b,
.section-page .jobs-page__panel-note,
.section-page .jobs-page__job-top span,
.section-page .jobs-page__job-meta span,
.section-page .jobs-page__detail-chip,
.section-page .jobs-page__detail-meta span,
.section-page .jobs-page__delivery-grid span,
.section-page .jobs-page__alert p,
.section-page .jobs-page__detail-cta,
.section-page .jobs-page__footer a,
.section-page .ct-foot__col ul li,
.section-page .ct-foot__phone,
.section-page .ct-foot__bottom-row2 {
  font-size: var(--sec-fs-14) !important;
}

.section-page .section-next span,
.section-page .ct-foot__social .ico.txt {
  font-size: var(--sec-fs-13) !important;
}

.section-page .jobs-page__eyebrow,
.section-page .jobs-page__panel-kicker,
.section-page .jobs-page__detail-kicker,
.section-page .jobs-page__delivery-kicker,
.section-page .jobs-page__footer-kicker,
.section-page .section-next span {
  font-size: var(--sec-fs-12) !important;
}

.section-page .hero.hero--jobs .hero-title {
  font-size: var(--fs-63) !important;
}

.section-page .hero.hero--jobs .hero-subtitle {
  font-size: var(--sec-fs-22) !important;
}

.section-page .jobs-page__lead-panel-head span,
.section-page .jobs-page__alert p,
.section-page .jobs-page__detail-meta span,
.section-page .jobs-page__delivery-grid span {
  font-size: var(--sec-fs-12) !important;
}

.section-page .jobs-page__lead-panel-body,
.section-page .jobs-page__job-card p,
.section-page .jobs-page__detail-section p,
.section-page .jobs-page__detail-section ul {
  line-height: 1.9;
}

.section-page .section-next {
  font-size: var(--sec-fs-14) !important;
}

.section-page .hero.hero--jobs {
  position: relative;
  min-height: clamp(420px, 40vw, 560px);
  overflow: hidden;
  background: #081331;
}

.section-page .hero.hero--jobs > div {
  position: relative;
  z-index: 1;
}

.section-page .hero.hero--jobs .hero-title {
  font-size: var(--fs-63);
  line-height: 1.12;
}

.section-page .hero.hero--jobs .hero-subtitle {
  font-size: var(--fs-22);
}

.section-page .hero.hero--jobs .hero__media {
  position: absolute;
  inset: 0;
}

.section-page .hero.hero--jobs .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-page .hero.hero--jobs .hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 43, 0.74) 0%, rgba(6, 12, 43, 0.38) 46%, rgba(12, 46, 118, 0.18) 100%),
    radial-gradient(circle at 50% 50%, rgba(18, 91, 206, 0.16) 0%, rgba(18, 91, 206, 0) 68%);
}

.jobs-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 91, 206, 0.08), rgba(18, 91, 206, 0) 28%),
    linear-gradient(180deg, #f6f8fc 0%, #f4f7fb 100%);
  padding: 0 24px clamp(120px, 10vw, 180px);
}

.jobs-page__shell {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.jobs-page__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  margin-top: clamp(56px, 6vw, 92px);
  align-items: stretch;
}

.jobs-page__lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6px, 0.5vw, 12px) 0;
}

.jobs-page__eyebrow,
.jobs-page__panel-kicker,
.jobs-page__detail-kicker,
.jobs-page__delivery-kicker,
.jobs-page__footer-kicker {
  margin: 0;
  color: #125bce;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--fs-12);
  line-height: 1.4;
}

.jobs-page__title {
  margin: 16px 0 0;
  font-size: var(--fs-60);
  line-height: 1.08;
  color: #050c3e;
  font-weight: 500;
}

.jobs-page__summary {
  max-width: 36rem;
  margin: 18px 0 0;
  font-size: var(--fs-18);
  line-height: 1.8;
  color: rgba(5, 12, 62, 0.68);
}

.jobs-page__lead-panel,
.jobs-page__list-panel,
.jobs-page__detail-card,
.jobs-page__delivery-card,
.jobs-page__footer {
  box-shadow: 0 18px 48px rgba(18, 34, 76, 0.08);
}

.jobs-page__lead-panel {
  border: 1px solid rgba(18, 91, 206, 0.12);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
}

.jobs-page__lead-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 91, 206, 0.1);
}

.jobs-page__lead-panel-head span {
  display: block;
  font-size: var(--fs-15);
  line-height: 1.4;
  color: rgba(5, 12, 62, 0.58);
}

.jobs-page__lead-panel-head strong {
  font-size: var(--fs-36);
  line-height: 1;
  color: #125bce;
  font-weight: 600;
}

.jobs-page__lead-panel-body {
  padding-top: 18px;
  font-size: var(--fs-15);
  line-height: 1.9;
  color: rgba(5, 12, 62, 0.72);
}

.jobs-page__lead-panel-body h2 {
  margin: 0 0 14px;
  font-size: var(--fs-24);
  line-height: 1.25;
  color: #050c3e;
  font-weight: 500;
}

.jobs-page__lead-panel-body p {
  margin: 0 0 14px;
}

.jobs-page__alert {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 143, 59, 0.1);
  border: 1px solid rgba(255, 143, 59, 0.18);
  color: #8b4a00;
}

.jobs-page__alert p {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.7;
}

.jobs-page__categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.jobs-page__category {
  min-width: 0;
  min-height: 112px;
  padding: 20px 22px;
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  background: #fff;
  color: #050c3e;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jobs-page__category:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 34, 76, 0.08);
  border-color: rgba(18, 91, 206, 0.22);
}

.jobs-page__category span {
  min-width: 0;
}

.jobs-page__category strong {
  display: block;
  font-size: var(--fs-18);
  line-height: 1.25;
  font-weight: 500;
}

.jobs-page__category em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: var(--fs-14);
  line-height: 1.6;
  color: rgba(5, 12, 62, 0.56);
}

.jobs-page__category b {
  flex-shrink: 0;
  font-size: var(--fs-20);
  line-height: 1;
  color: #125bce;
}

.jobs-page__category.is-active {
  background: linear-gradient(135deg, #0b2874 0%, #125bce 100%);
  color: #fff;
  border-color: transparent;
}

.jobs-page__category.is-active em,
.jobs-page__category.is-active b {
  color: rgba(255, 255, 255, 0.82);
}

.jobs-page__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.jobs-page__list-panel,
.jobs-page__detail-panel {
  border-radius: 28px;
  padding: 28px;
  background: #fff;
}

.jobs-page__list-panel {
  border: 1px solid rgba(18, 91, 206, 0.08);
}

.jobs-page__detail-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.jobs-page__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.jobs-page__panel-head h3,
.jobs-page__delivery-card h3,
.jobs-page__footer h3 {
  margin: 8px 0 0;
  font-size: var(--fs-32);
  line-height: 1.18;
  font-weight: 500;
  color: #050c3e;
}

.jobs-page__panel-note {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.6;
  color: rgba(5, 12, 62, 0.56);
  white-space: nowrap;
}

.jobs-page__cards {
  display: grid;
  gap: 14px;
}

.jobs-page__job-card {
  display: block;
  text-decoration: none;
  color: #050c3e;
  border: 1px solid #edf1f7;
  background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jobs-page__job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 91, 206, 0.22);
  box-shadow: 0 16px 34px rgba(18, 34, 76, 0.08);
}

.jobs-page__job-card.is-active {
  background: linear-gradient(180deg, rgba(18, 91, 206, 0.08) 0%, rgba(18, 91, 206, 0.02) 100%);
  border-color: rgba(18, 91, 206, 0.36);
  box-shadow: 0 18px 40px rgba(18, 91, 206, 0.12);
}

.jobs-page__job-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.jobs-page__job-top h4 {
  margin: 0;
  font-size: var(--fs-20);
  line-height: 1.3;
  font-weight: 500;
}

.jobs-page__job-top span {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(18, 91, 206, 0.08);
  color: #125bce;
  font-size: var(--fs-12);
  line-height: 1.3;
  white-space: nowrap;
}

.jobs-page__job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jobs-page__job-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3fb;
  color: rgba(5, 12, 62, 0.72);
  font-size: var(--fs-12);
  line-height: 1.4;
}

.jobs-page__job-card p {
  margin: 14px 0 0;
  font-size: var(--fs-14);
  line-height: 1.8;
  color: rgba(5, 12, 62, 0.68);
}

.jobs-page__job-link {
  margin-top: 16px;
  font-size: var(--fs-14);
  line-height: 1.4;
  color: #125bce;
  font-weight: 500;
}

.jobs-page__empty {
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed rgba(18, 91, 206, 0.24);
  background: rgba(18, 91, 206, 0.03);
  color: rgba(5, 12, 62, 0.68);
}

.jobs-page__empty strong {
  display: block;
  margin-bottom: 10px;
  font-size: var(--fs-20);
  color: #050c3e;
}

.jobs-page__empty p {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.8;
}

.jobs-page__detail-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0b2874 0%, #125bce 100%);
  color: #fff;
}

.jobs-page__detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.jobs-page__detail-head h3 {
  margin: 8px 0 0;
  font-size: var(--fs-36);
  line-height: 1.15;
  color: #fff;
  font-weight: 500;
}

.jobs-page__detail-chip {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-12);
  line-height: 1.3;
  white-space: nowrap;
}

.jobs-page__detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.jobs-page__detail-meta div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.jobs-page__detail-meta span,
.jobs-page__delivery-grid span {
  display: block;
  font-size: var(--fs-12);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.jobs-page__detail-meta strong,
.jobs-page__delivery-grid strong {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-14);
  line-height: 1.6;
  font-weight: 500;
}

.jobs-page__detail-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.jobs-page__detail-section h4 {
  margin: 0 0 12px;
  font-size: var(--fs-16);
  line-height: 1.4;
  font-weight: 500;
}

.jobs-page__detail-section p,
.jobs-page__detail-section ul {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.jobs-page__detail-section ul {
  padding-left: 18px;
}

.jobs-page__detail-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: #125bce;
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: 600;
}

.jobs-page__delivery-card {
  padding: 24px 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(18, 91, 206, 0.08);
}

.jobs-page__delivery-card h3 {
  margin-top: 8px;
}

.jobs-page__delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.jobs-page__delivery-grid div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e7edf7;
  background: #f8fbff;
}

.jobs-page__delivery-grid span {
  color: rgba(5, 12, 62, 0.56);
}

.jobs-page__delivery-grid strong {
  color: #050c3e;
}

.jobs-page__footer {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(90deg, #0b2874 0%, #125bce 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.jobs-page__footer h3 {
  color: #fff;
}

.jobs-page__footer a {
  flex-shrink: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: 600;
}

.jobs-page__footer a:hover,
.jobs-page__detail-cta:hover {
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  .section-page .hero.hero--jobs {
    min-height: 360px;
  }

  .jobs-page__lead,
  .jobs-page__workspace {
    grid-template-columns: 1fr;
  }

  .jobs-page__detail-panel {
    position: static;
  }

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

@media (max-width: 767px) {
  .section-page .hero.hero--jobs {
    min-height: 320px;
  }

  .section-page .hero.hero--jobs .hero-title {
    font-size: var(--fs-36);
  }

  .section-page .hero.hero--jobs .hero-subtitle {
    font-size: var(--fs-16);
  }

  .jobs-page {
    padding-inline: 20px;
    padding-bottom: 120px;
  }

  .jobs-page__lead {
    gap: 18px;
    margin-top: 42px;
  }

  .jobs-page__title {
    font-size: var(--fs-30);
  }

  .jobs-page__summary {
    font-size: var(--fs-16);
  }

  .jobs-page__lead-panel,
  .jobs-page__list-panel,
  .jobs-page__detail-card,
  .jobs-page__delivery-card,
  .jobs-page__footer {
    border-radius: 22px;
    padding: 20px;
  }

  .jobs-page__categories {
    grid-template-columns: 1fr;
  }

  .jobs-page__panel-head,
  .jobs-page__detail-head,
  .jobs-page__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobs-page__panel-note {
    white-space: normal;
  }

  .jobs-page__detail-meta,
  .jobs-page__delivery-grid {
    grid-template-columns: 1fr;
  }

  .jobs-page__job-top {
    flex-direction: column;
  }

  .jobs-page__job-top span {
    align-self: flex-start;
  }
}

body.section-page .jobs-page .jobs-page__banner-copy h1 {
  font-size: var(--fs-48) !important;
}

body.section-page .jobs-page .jobs-page__banner-copy p,
body.section-page .jobs-page .jobs-page__detail-cta,
body.section-page .jobs-page .jobs-apply-submit a,
body.section-page .jobs-page .jobs-apply-grid label,
body.section-page .jobs-page .jobs-apply-add {
  font-size: var(--fs-24) !important;
}

body.section-page .jobs-page .jobs-list-head h2,
body.section-page .jobs-page .jobs-figma-detail-title,
body.section-page .jobs-page .jobs-apply-head h2 {
  font-size: var(--fs-36) !important;
}

body.section-page .jobs-page .jobs-filter-group h3,
body.section-page .jobs-page .jobs-page__job-card h3,
body.section-page .jobs-page .jobs-page__detail-section h3,
body.section-page .jobs-page .jobs-page__detail-panel h3,
body.section-page .jobs-page .jobs-apply-section__head h3 {
  font-size: var(--fs-28) !important;
}

body.section-page .jobs-page .jobs-page__category span,
body.section-page .jobs-page .jobs-page__location,
body.section-page .jobs-page .jobs-page__job-card p,
body.section-page .jobs-page .jobs-page__detail-section p,
body.section-page .jobs-page .jobs-page__detail-section ul,
body.section-page .jobs-page .jobs-page__related-list span,
body.section-page .jobs-page .jobs-apply-section__head p {
  font-size: var(--fs-20) !important;
}

body.section-page .jobs-page .jobs-filter-head a,
body.section-page .jobs-page .jobs-figma-search span {
  font-size: var(--fs-18) !important;
}

body.section-page .jobs-page .jobs-page__tabs a,
body.section-page .jobs-page .jobs-page__job-meta span {
  font-size: var(--fs-16) !important;
}

body.section-page .jobs-page .jobs-page__related-list strong {
  font-size: var(--fs-24) !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-page__banner-copy h1 {
    font-size: var(--fs-36) !important;
  }

  body.section-page .jobs-page .jobs-page__banner-copy p,
  body.section-page .jobs-page .jobs-page__detail-cta,
  body.section-page .jobs-page .jobs-apply-submit a,
  body.section-page .jobs-page .jobs-apply-grid label {
    font-size: var(--fs-18) !important;
  }

  body.section-page .jobs-page .jobs-list-head h2,
  body.section-page .jobs-page .jobs-filter-group h3,
  body.section-page .jobs-page .jobs-page__job-card h3,
  body.section-page .jobs-page .jobs-page__detail-section h3,
  body.section-page .jobs-page .jobs-page__detail-panel h3,
  body.section-page .jobs-page .jobs-apply-section__head h3 {
    font-size: var(--fs-24) !important;
  }

  body.section-page .jobs-page .jobs-figma-detail-title,
  body.section-page .jobs-page .jobs-apply-head h2 {
    font-size: var(--fs-28) !important;
  }

  body.section-page .jobs-page .jobs-page__category span,
  body.section-page .jobs-page .jobs-page__location,
  body.section-page .jobs-page .jobs-page__job-card p,
  body.section-page .jobs-page .jobs-page__detail-section p,
  body.section-page .jobs-page .jobs-page__detail-section ul,
  body.section-page .jobs-page .jobs-page__related-list span,
  body.section-page .jobs-page .jobs-apply-section__head p {
    font-size: var(--fs-16) !important;
  }
}

/* Final Figma recruitment layout overrides. Keep at EOF to win over legacy jobs rules. */
body.section-page .jobs-page {
  --jobs-scale: min(1, calc(100vw / 1920));
  --jobs-blue: #125bce;
  --jobs-ink: #050c3e;
  --jobs-muted: rgba(5, 12, 62, 0.58);
  --jobs-line: #dee1e5;
  --jobs-bg: #f8f9fa;
  width: 100% !important;
  padding: 0 0 calc(120px * var(--jobs-scale)) !important;
  background: var(--jobs-bg) !important;
  color: var(--jobs-ink) !important;
  overflow-x: clip !important;
}

body.section-page .jobs-page .jobs-page__scale {
  width: 100% !important;
}

body.section-page .jobs-page .jobs-page__tabs {
  width: min(calc(1392px * var(--jobs-scale)), calc(100vw - 48px)) !important;
  height: calc(72px * var(--jobs-scale)) !important;
  min-height: 52px !important;
  margin: calc(48px * var(--jobs-scale)) auto 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: calc(96px * var(--jobs-scale)) !important;
  border-bottom: 1px solid var(--jobs-line) !important;
}

body.section-page .jobs-page .jobs-page__tabs a {
  height: 100% !important;
  min-width: calc(96px * var(--jobs-scale)) !important;
  padding: 0 calc(8px * var(--jobs-scale)) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(5, 12, 62, 0.52) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-page__tabs a.is-active {
  position: relative !important;
  color: var(--jobs-blue) !important;
  font-weight: 600 !important;
}

body.section-page .jobs-page .jobs-page__tabs a.is-active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -1px !important;
  width: calc(80px * var(--jobs-scale)) !important;
  min-width: 54px !important;
  height: 2px !important;
  transform: translateX(-50%) !important;
  background: var(--jobs-blue) !important;
}

body.section-page .jobs-page .jobs-page__banner {
  position: relative !important;
  width: min(calc(1776px * var(--jobs-scale)), calc(100vw - 72px)) !important;
  height: max(260px, calc(392px * var(--jobs-scale))) !important;
  min-height: 260px !important;
  margin: 3.75vw auto 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: clamp(16px, 1.25vw, 24px) !important;
  background: #dce7f6 !important;
}

body.section-page .jobs-page .jobs-page__banner img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

body.section-page .jobs-page .jobs-page__banner::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(2, 22, 56, 0.48) 0%, rgba(2, 22, 56, 0.12) 42%, rgba(2, 22, 56, 0) 100%) !important;
  pointer-events: none !important;
}

body.section-page .jobs-page .jobs-page__banner-copy {
  position: absolute !important;
  z-index: 1 !important;
  left: calc(156px * var(--jobs-scale)) !important;
  top: 50% !important;
  width: calc(520px * var(--jobs-scale)) !important;
  max-width: calc(100% - 48px) !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  color: #fff !important;
}

body.section-page .jobs-page .jobs-page__banner-copy h1,
body.section-page .jobs-page .jobs-page__banner-copy p {
  margin: 0 !important;
  color: #fff !important;
  letter-spacing: 0 !important;
}

body.section-page .jobs-page .jobs-page__banner-copy h1 {
  font-size: var(--fs-56) !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page .jobs-page__banner-copy p {
  margin-top: calc(14px * var(--jobs-scale)) !important;
  font-size: var(--fs-28) !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

body.section-page .jobs-page .jobs-page__warnings {
  width: min(calc(1392px * var(--jobs-scale)), calc(100vw - 48px)) !important;
  margin: calc(32px * var(--jobs-scale)) auto 0 !important;
}

body.section-page .jobs-page .jobs-figma-choose,
body.section-page .jobs-page .jobs-figma-detail,
body.section-page .jobs-page .jobs-figma-apply {
  width: min(calc(1392px * var(--jobs-scale)), calc(100vw - 48px)) !important;
  margin: calc(72px * var(--jobs-scale)) auto 0 !important;
}

body.section-page .jobs-page .jobs-figma-choose {
  display: grid !important;
  grid-template-columns: calc(420px * var(--jobs-scale)) minmax(0, 1fr) !important;
  gap: calc(48px * var(--jobs-scale)) !important;
  align-items: start !important;
}

body.section-page .jobs-page .jobs-figma-filter.jobs-page__categories {
  width: auto !important;
  margin: 0 !important;
  padding: 0 calc(74px * var(--jobs-scale)) 0 0 !important;
  display: block !important;
  border: 0 !important;
  border-right: 2px solid var(--jobs-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.section-page .jobs-page .jobs-filter-head {
  margin-bottom: calc(54px * var(--jobs-scale)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

body.section-page .jobs-page .jobs-filter-head a {
  color: rgba(5, 12, 62, 0.44) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-filter-group {
  margin: 0 0 calc(56px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-filter-group h3,
body.section-page .jobs-page .jobs-list-head h2 {
  margin: 0 !important;
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

body.section-page .jobs-page .jobs-filter-options {
  margin-top: calc(28px * var(--jobs-scale)) !important;
  display: grid !important;
  gap: calc(18px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__category,
body.section-page .jobs-page .jobs-page__location {
  min-height: calc(36px * var(--jobs-scale)) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: calc(14px * var(--jobs-scale)) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--jobs-muted) !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-page__category::before,
body.section-page .jobs-page .jobs-page__location::before {
  content: "" !important;
  width: calc(20px * var(--jobs-scale)) !important;
  min-width: 16px !important;
  height: calc(20px * var(--jobs-scale)) !important;
  min-height: 16px !important;
  border: 1px solid #c8ced8 !important;
  border-radius: 50% !important;
  background: #fff !important;
}

body.section-page .jobs-page .jobs-page__category.is-active,
body.section-page .jobs-page .jobs-page__location.is-active {
  color: var(--jobs-blue) !important;
}

body.section-page .jobs-page .jobs-page__category.is-active::before,
body.section-page .jobs-page .jobs-page__location.is-active::before {
  border-color: var(--jobs-blue) !important;
  box-shadow: inset 0 0 0 5px #fff !important;
  background: var(--jobs-blue) !important;
}

body.section-page .jobs-page .jobs-figma-list.jobs-page__list-panel {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.section-page .jobs-page .jobs-list-head {
  margin-bottom: calc(30px * var(--jobs-scale)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: calc(24px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-figma-search {
  width: calc(380px * var(--jobs-scale)) !important;
  min-width: 260px !important;
  height: calc(54px * var(--jobs-scale)) !important;
  min-height: 44px !important;
  padding: 0 calc(24px * var(--jobs-scale)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  border: 1px solid var(--jobs-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: rgba(5, 12, 62, 0.36) !important;
}

body.section-page .jobs-page .jobs-page__jobs {
  display: grid !important;
  gap: calc(24px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__job-card {
  min-height: calc(180px * var(--jobs-scale)) !important;
  padding: calc(30px * var(--jobs-scale)) calc(34px * var(--jobs-scale)) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 12px 32px rgba(8, 28, 71, 0.06) !important;
  color: var(--jobs-ink) !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-page__job-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 42px rgba(8, 28, 71, 0.1) !important;
}

body.section-page .jobs-page .jobs-page__job-card h3,
body.section-page .jobs-page .jobs-page__job-card p {
  margin: 0 !important;
}

body.section-page .jobs-page .jobs-page__job-card h3 {
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

body.section-page .jobs-page .jobs-page__job-card p {
  margin-top: calc(18px * var(--jobs-scale)) !important;
  color: rgba(5, 12, 62, 0.5) !important;
  line-height: 1.7 !important;
}

body.section-page .jobs-page .jobs-page__job-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

body.section-page .jobs-page .jobs-page__job-top span {
  min-width: calc(96px * var(--jobs-scale)) !important;
  min-height: calc(34px * var(--jobs-scale)) !important;
  padding: 0 calc(14px * var(--jobs-scale)) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  background: rgba(18, 91, 206, 0.08) !important;
  color: var(--jobs-blue) !important;
  font-size: var(--fs-16) !important;
  white-space: nowrap !important;
}

body.section-page .jobs-page .jobs-page__job-meta {
  margin-top: calc(24px * var(--jobs-scale)) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: calc(18px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__job-meta span {
  color: rgba(5, 12, 62, 0.42) !important;
}

body.section-page .jobs-page .jobs-figma-detail {
  display: grid !important;
  grid-template-columns: minmax(0, calc(996px * var(--jobs-scale))) calc(360px * var(--jobs-scale)) !important;
  gap: calc(36px * var(--jobs-scale)) !important;
  align-items: start !important;
}

body.section-page .jobs-page .jobs-page__detail-card,
body.section-page .jobs-page .jobs-page__detail-panel,
body.section-page .jobs-page .jobs-apply-panel {
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 14px 44px rgba(8, 28, 71, 0.06) !important;
}

body.section-page .jobs-page .jobs-page__detail-card {
  padding: calc(58px * var(--jobs-scale)) calc(64px * var(--jobs-scale)) calc(70px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__detail-head {
  margin: 0 0 calc(44px * var(--jobs-scale)) !important;
  padding: 0 0 calc(34px * var(--jobs-scale)) !important;
  display: block !important;
  border-bottom: 1px solid var(--jobs-line) !important;
}

body.section-page .jobs-page .jobs-figma-detail-title {
  margin: 0 !important;
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
}

body.section-page .jobs-page .jobs-page__detail-meta {
  margin-top: calc(22px * var(--jobs-scale)) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: calc(14px * var(--jobs-scale)) calc(28px * var(--jobs-scale)) !important;
  color: rgba(5, 12, 62, 0.5) !important;
}

body.section-page .jobs-page .jobs-page__detail-section {
  margin: 0 0 calc(42px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__detail-section h3 {
  margin: 0 0 calc(20px * var(--jobs-scale)) !important;
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page .jobs-page__detail-section p,
body.section-page .jobs-page .jobs-page__detail-section ul {
  margin: 0 !important;
  color: rgba(5, 12, 62, 0.62) !important;
  line-height: 1.85 !important;
}

body.section-page .jobs-page .jobs-page__detail-section ul {
  padding-left: 1.2em !important;
}

body.section-page .jobs-page .jobs-page__detail-cta,
body.section-page .jobs-page .jobs-figma-apply-link,
body.section-page .jobs-page .jobs-apply-submit a {
  width: calc(180px * var(--jobs-scale)) !important;
  min-width: 146px !important;
  height: calc(58px * var(--jobs-scale)) !important;
  min-height: 48px !important;
  padding: 0 calc(26px * var(--jobs-scale)) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--jobs-blue) !important;
  color: #fff !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-page__detail-panel {
  padding: calc(34px * var(--jobs-scale)) calc(30px * var(--jobs-scale)) !important;
  position: sticky !important;
  top: calc(96px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__detail-panel h3 {
  margin: 0 0 calc(22px * var(--jobs-scale)) !important;
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page .jobs-page__related-list {
  display: grid !important;
  gap: calc(18px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-page__related-list a {
  padding: 0 0 calc(18px * var(--jobs-scale)) !important;
  display: grid !important;
  gap: calc(8px * var(--jobs-scale)) !important;
  border-bottom: 1px solid var(--jobs-line) !important;
  color: var(--jobs-ink) !important;
  text-decoration: none !important;
}

body.section-page .jobs-page .jobs-page__related-list strong {
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

body.section-page .jobs-page .jobs-page__related-list span {
  color: rgba(5, 12, 62, 0.46) !important;
}

body.section-page .jobs-page .jobs-apply-panel {
  overflow: hidden !important;
}

body.section-page .jobs-page .jobs-apply-head {
  padding: calc(52px * var(--jobs-scale)) calc(64px * var(--jobs-scale)) calc(34px * var(--jobs-scale)) !important;
  border-bottom: 1px solid var(--jobs-line) !important;
}

body.section-page .jobs-page .jobs-apply-head h2,
body.section-page .jobs-page .jobs-apply-head p {
  margin: 0 !important;
}

body.section-page .jobs-page .jobs-apply-head h2 {
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page .jobs-apply-head p {
  margin-top: calc(16px * var(--jobs-scale)) !important;
  color: rgba(5, 12, 62, 0.52) !important;
}

body.section-page .jobs-page .jobs-apply-section {
  padding: calc(44px * var(--jobs-scale)) calc(64px * var(--jobs-scale)) !important;
  border-bottom: 1px solid var(--jobs-line) !important;
}

body.section-page .jobs-page .jobs-apply-section__head {
  margin-bottom: calc(30px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-apply-section__head h3,
body.section-page .jobs-page .jobs-apply-section__head p {
  margin: 0 !important;
}

body.section-page .jobs-page .jobs-apply-section__head h3 {
  color: var(--jobs-ink) !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page .jobs-apply-section__head p {
  margin-top: calc(10px * var(--jobs-scale)) !important;
  color: rgba(5, 12, 62, 0.48) !important;
}

body.section-page .jobs-page .jobs-apply-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: calc(28px * var(--jobs-scale)) calc(36px * var(--jobs-scale)) !important;
}

body.section-page .jobs-page .jobs-apply-grid label {
  display: grid !important;
  gap: calc(12px * var(--jobs-scale)) !important;
  color: rgba(5, 12, 62, 0.72) !important;
}

body.section-page .jobs-page .jobs-apply-grid input,
body.section-page .jobs-page .jobs-apply-grid textarea {
  width: 100% !important;
  min-width: 0 !important;
  height: calc(56px * var(--jobs-scale)) !important;
  min-height: 46px !important;
  padding: 0 calc(18px * var(--jobs-scale)) !important;
  border: 1px solid var(--jobs-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--jobs-ink) !important;
  font: inherit !important;
}

body.section-page .jobs-page .jobs-apply-grid textarea {
  min-height: calc(132px * var(--jobs-scale)) !important;
  padding-top: calc(16px * var(--jobs-scale)) !important;
  resize: vertical !important;
}

body.section-page .jobs-page .jobs-apply-grid .is-wide {
  grid-column: 1 / -1 !important;
}

body.section-page .jobs-page .jobs-apply-submit {
  padding: calc(34px * var(--jobs-scale)) calc(64px * var(--jobs-scale)) !important;
  display: flex !important;
  justify-content: flex-end !important;
  background: #fff !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page {
    --jobs-scale: 1;
    padding-bottom: 72px !important;
    overflow-x: hidden !important;
  }

  body.section-page .jobs-page .jobs-page__tabs {
    width: calc(100vw - 32px) !important;
    height: 56px !important;
    margin-top: 24px !important;
    gap: 24px !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }

  body.section-page .jobs-page .jobs-page__tabs a {
    min-width: 72px !important;
    flex: 0 0 auto !important;
    font-size: var(--fs-15) !important;
  }

  body.section-page .jobs-page .jobs-page__banner {
    width: calc(100vw - 32px) !important;
    height: 220px !important;
    min-height: 220px !important;
    margin-top: 3.75vw !important;
  }

  body.section-page .jobs-page .jobs-page__banner-copy {
    left: 24px !important;
    width: calc(100% - 48px) !important;
  }

  body.section-page .jobs-page .jobs-page__banner-copy h1 {
    font-size: var(--fs-36) !important;
  }

  body.section-page .jobs-page .jobs-page__banner-copy p {
    font-size: var(--fs-18) !important;
  }

  body.section-page .jobs-page .jobs-page__warnings,
  body.section-page .jobs-page .jobs-figma-choose,
  body.section-page .jobs-page .jobs-figma-detail,
  body.section-page .jobs-page .jobs-figma-apply {
    width: calc(100vw - 32px) !important;
    margin-top: 32px !important;
  }

  body.section-page .jobs-page .jobs-figma-choose,
  body.section-page .jobs-page .jobs-figma-detail {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.section-page .jobs-page .jobs-figma-filter.jobs-page__categories {
    padding: 0 0 28px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--jobs-line) !important;
  }

  body.section-page .jobs-page .jobs-filter-head,
  body.section-page .jobs-page .jobs-filter-group {
    margin-bottom: 26px !important;
  }

  body.section-page .jobs-page .jobs-filter-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  body.section-page .jobs-page .jobs-list-head {
    display: grid !important;
    gap: 16px !important;
  }

  body.section-page .jobs-page .jobs-figma-search {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.section-page .jobs-page .jobs-page__job-card {
    min-height: auto !important;
    padding: 22px !important;
  }

  body.section-page .jobs-page .jobs-page__job-top {
    display: grid !important;
  }

  body.section-page .jobs-page .jobs-page__job-top span {
    justify-self: start !important;
  }

  body.section-page .jobs-page .jobs-page__detail-card,
  body.section-page .jobs-page .jobs-page__detail-panel,
  body.section-page .jobs-page .jobs-apply-head,
  body.section-page .jobs-page .jobs-apply-section,
  body.section-page .jobs-page .jobs-apply-submit {
    padding: 24px !important;
  }

  body.section-page .jobs-page .jobs-page__detail-panel {
    position: static !important;
  }

  body.section-page .jobs-page .jobs-apply-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.section-page .jobs-page .jobs-apply-submit {
    justify-content: stretch !important;
  }

  body.section-page .jobs-page .jobs-page__detail-cta,
  body.section-page .jobs-page .jobs-figma-apply-link,
  body.section-page .jobs-page .jobs-apply-submit a {
    width: 100% !important;
  }
}

/* Valid proportional sizing for current browsers: avoid calc(length * custom-property). */
body.section-page .jobs-page {
  padding-top: 70px !important;
  padding-bottom: clamp(72px, 6.25vw, 120px) !important;
}

body.section-page .jobs-page#pageContent,
body.section-page .jobs-page #jobDetail,
body.section-page .jobs-page #jobApply,
body.section-page .jobs-page #pageContent {
  scroll-margin-top: 104px !important;
}

body.section-page .jobs-page .jobs-page__tabs {
  width: min(1392px, 72.5vw, calc(100vw - 48px)) !important;
  height: clamp(52px, 3.75vw, 72px) !important;
  margin-top: clamp(32px, 2.5vw, 48px) !important;
  gap: clamp(48px, 5vw, 96px) !important;
  background: transparent !important;
  color: var(--jobs-ink) !important;
}

body.section-page .jobs-page .jobs-page__tabs a {
  min-width: clamp(72px, 5vw, 96px) !important;
  padding: 0 clamp(6px, 0.42vw, 8px) !important;
}

body.section-page .jobs-page .jobs-page__tabs a.is-active::after {
  width: clamp(54px, 4.17vw, 80px) !important;
}

body.section-page .jobs-page .jobs-page__banner {
  width: min(1776px, 92.5vw, calc(100vw - 72px)) !important;
  height: clamp(260px, 20.42vw, 392px) !important;
  margin-top: 3.75vw !important;
}

body.section-page .jobs-page .jobs-page__banner-copy {
  left: clamp(56px, 8.13vw, 156px) !important;
  width: min(520px, 36vw) !important;
}

body.section-page .jobs-page .jobs-page__banner-copy h1 {
  font-size: var(--fs-56) !important;
}

body.section-page .jobs-page .jobs-page__banner-copy p {
  margin-top: clamp(10px, 0.73vw, 14px) !important;
  font-size: var(--fs-28) !important;
}

body.section-page .jobs-page .jobs-page__warnings,
body.section-page .jobs-page .jobs-figma-choose,
body.section-page .jobs-page .jobs-figma-detail,
body.section-page .jobs-page .jobs-figma-apply {
  width: min(1392px, 72.5vw, calc(100vw - 48px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-top: clamp(48px, 3.75vw, 72px) !important;
}

body.section-page .jobs-page .jobs-page__tabs,
body.section-page .jobs-page .jobs-page__banner {
  margin-right: auto !important;
  margin-left: auto !important;
}

body.section-page .jobs-page .jobs-page__warnings {
  margin-top: clamp(24px, 1.67vw, 32px) !important;
}

body.section-page .jobs-page .jobs-figma-choose {
  grid-template-columns: minmax(260px, min(420px, 21.875vw)) minmax(0, 1fr) !important;
  gap: clamp(28px, 2.5vw, 48px) !important;
}

body.section-page .jobs-page .jobs-figma-filter.jobs-page__categories {
  padding-right: clamp(32px, 3.85vw, 74px) !important;
}

body.section-page .jobs-page .jobs-filter-head {
  margin-bottom: clamp(34px, 2.81vw, 54px) !important;
}

body.section-page .jobs-page .jobs-filter-group {
  margin-bottom: clamp(34px, 2.92vw, 56px) !important;
}

body.section-page .jobs-page .jobs-filter-options {
  margin-top: clamp(18px, 1.46vw, 28px) !important;
  gap: clamp(12px, 0.94vw, 18px) !important;
}

body.section-page .jobs-page .jobs-page__category,
body.section-page .jobs-page .jobs-page__location {
  min-height: clamp(28px, 1.875vw, 36px) !important;
  gap: clamp(10px, 0.73vw, 14px) !important;
}

body.section-page .jobs-page .jobs-page__category::before,
body.section-page .jobs-page .jobs-page__location::before {
  width: clamp(16px, 1.04vw, 20px) !important;
  height: clamp(16px, 1.04vw, 20px) !important;
}

body.section-page .jobs-page .jobs-list-head {
  margin-bottom: clamp(22px, 1.56vw, 30px) !important;
  gap: clamp(16px, 1.25vw, 24px) !important;
}

body.section-page .jobs-page .jobs-figma-search {
  width: clamp(260px, 19.79vw, 380px) !important;
  height: clamp(44px, 2.8125vw, 54px) !important;
  padding: 0 clamp(16px, 1.25vw, 24px) !important;
}

body.section-page .jobs-page .jobs-page__jobs {
  gap: clamp(18px, 1.25vw, 24px) !important;
}

body.section-page .jobs-page .jobs-page__job-card {
  min-height: clamp(132px, 9.375vw, 180px) !important;
  padding: clamp(22px, 1.56vw, 30px) clamp(24px, 1.77vw, 34px) !important;
}

body.section-page .jobs-page .jobs-page__job-card p {
  margin-top: clamp(12px, 0.94vw, 18px) !important;
}

body.section-page .jobs-page .jobs-page__job-top span {
  min-width: clamp(78px, 5vw, 96px) !important;
  min-height: clamp(28px, 1.77vw, 34px) !important;
  padding: 0 clamp(10px, 0.73vw, 14px) !important;
}

body.section-page .jobs-page .jobs-page__job-meta {
  margin-top: clamp(16px, 1.25vw, 24px) !important;
  gap: clamp(12px, 0.94vw, 18px) !important;
}

body.section-page .jobs-page .jobs-figma-detail {
  grid-template-columns: minmax(0, min(996px, 51.875vw)) min(360px, 18.75vw) !important;
  gap: clamp(24px, 1.875vw, 36px) !important;
}

body.section-page .jobs-page .jobs-page__detail-card {
  padding: clamp(36px, 3.02vw, 58px) clamp(40px, 3.33vw, 64px) clamp(48px, 3.65vw, 70px) !important;
}

body.section-page .jobs-page .jobs-page__detail-head {
  margin-bottom: clamp(30px, 2.29vw, 44px) !important;
  padding-bottom: clamp(24px, 1.77vw, 34px) !important;
}

body.section-page .jobs-page .jobs-page__detail-meta {
  margin-top: clamp(16px, 1.15vw, 22px) !important;
  gap: clamp(10px, 0.73vw, 14px) clamp(18px, 1.46vw, 28px) !important;
}

body.section-page .jobs-page .jobs-page__detail-section {
  margin-bottom: clamp(30px, 2.19vw, 42px) !important;
}

body.section-page .jobs-page .jobs-page__detail-section h3 {
  margin-bottom: clamp(14px, 1.04vw, 20px) !important;
}

body.section-page .jobs-page .jobs-page__detail-cta,
body.section-page .jobs-page .jobs-figma-apply-link,
body.section-page .jobs-page .jobs-apply-submit a {
  width: clamp(146px, 9.375vw, 180px) !important;
  height: clamp(48px, 3.02vw, 58px) !important;
  padding: 0 clamp(18px, 1.35vw, 26px) !important;
}

body.section-page .jobs-page .jobs-page__detail-panel {
  padding: clamp(26px, 1.77vw, 34px) clamp(22px, 1.56vw, 30px) !important;
  top: clamp(72px, 5vw, 96px) !important;
}

body.section-page .jobs-page .jobs-page__detail-panel h3 {
  margin-bottom: clamp(16px, 1.15vw, 22px) !important;
}

body.section-page .jobs-page .jobs-page__related-list {
  gap: clamp(12px, 0.94vw, 18px) !important;
}

body.section-page .jobs-page .jobs-page__related-list a {
  padding-bottom: clamp(12px, 0.94vw, 18px) !important;
  gap: clamp(6px, 0.42vw, 8px) !important;
}

body.section-page .jobs-page .jobs-apply-head {
  padding: clamp(34px, 2.71vw, 52px) clamp(40px, 3.33vw, 64px) clamp(24px, 1.77vw, 34px) !important;
}

body.section-page .jobs-page .jobs-apply-head p {
  margin-top: clamp(10px, 0.83vw, 16px) !important;
}

body.section-page .jobs-page .jobs-apply-section {
  padding: clamp(30px, 2.29vw, 44px) clamp(40px, 3.33vw, 64px) !important;
}

body.section-page .jobs-page .jobs-apply-section__head {
  margin-bottom: clamp(20px, 1.56vw, 30px) !important;
}

body.section-page .jobs-page .jobs-apply-section__head p {
  margin-top: clamp(8px, 0.52vw, 10px) !important;
}

body.section-page .jobs-page .jobs-apply-grid {
  gap: clamp(20px, 1.46vw, 28px) clamp(24px, 1.875vw, 36px) !important;
}

body.section-page .jobs-page .jobs-apply-grid label {
  gap: clamp(8px, 0.625vw, 12px) !important;
}

body.section-page .jobs-page .jobs-apply-grid input,
body.section-page .jobs-page .jobs-apply-grid textarea {
  height: clamp(46px, 2.92vw, 56px) !important;
  padding: 0 clamp(14px, 0.94vw, 18px) !important;
}

body.section-page .jobs-page .jobs-apply-grid textarea {
  min-height: clamp(104px, 6.875vw, 132px) !important;
  padding-top: clamp(12px, 0.83vw, 16px) !important;
}

body.section-page .jobs-page .jobs-apply-submit {
  padding: clamp(24px, 1.77vw, 34px) clamp(40px, 3.33vw, 64px) !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page {
    padding-top: 52px !important;
  }

  body.section-page .jobs-page#pageContent,
  body.section-page .jobs-page #jobDetail,
  body.section-page .jobs-page #jobApply,
  body.section-page .jobs-page #pageContent {
    scroll-margin-top: 76px !important;
  }

  body.section-page .jobs-page .jobs-page__tabs,
  body.section-page .jobs-page .jobs-page__banner,
  body.section-page .jobs-page .jobs-page__warnings,
  body.section-page .jobs-page .jobs-figma-choose,
  body.section-page .jobs-page .jobs-figma-detail,
  body.section-page .jobs-page .jobs-figma-apply {
    width: calc(100vw - 32px) !important;
  }

  body.section-page .jobs-page .jobs-page__tabs {
    height: 56px !important;
    margin-top: 24px !important;
    gap: 24px !important;
  }

  body.section-page .jobs-page .jobs-page__banner {
    height: 220px !important;
    margin-top: 3.75vw !important;
  }

  body.section-page .jobs-page .jobs-page__banner-copy {
    left: 24px !important;
    width: calc(100% - 48px) !important;
  }

  body.section-page .jobs-page .jobs-page__warnings,
  body.section-page .jobs-page .jobs-figma-choose,
  body.section-page .jobs-page .jobs-figma-detail,
  body.section-page .jobs-page .jobs-figma-apply {
    margin-top: 32px !important;
  }

  body.section-page .jobs-page .jobs-figma-choose,
  body.section-page .jobs-page .jobs-figma-detail {
    grid-template-columns: 1fr !important;
  }

  body.section-page .jobs-page .jobs-figma-filter.jobs-page__categories {
    padding-right: 0 !important;
  }
}

/* Recruitment choose-page fidelity fixes from Figma node 292:5333. */
body.section-page .jobs-page .jobs-page__tabs {
  width: 100% !important;
  max-width: none !important;
  height: 70px !important;
  min-height: 70px !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 50px !important;
  border-bottom: 0 !important;
  background: #fff !important;
  color: var(--jobs-ink) !important;
}

body.section-page .jobs-page .jobs-page__tabs a {
  position: relative !important;
  width: auto !important;
  min-width: 64px !important;
  height: 70px !important;
  padding: 0 !important;
  color: rgba(5, 12, 62, 0.6) !important;
  font-size: var(--fs-16) !important;
  font-weight: 400 !important;
}

body.section-page .jobs-page .jobs-page__tabs a.is-active {
  color: var(--jobs-ink) !important;
}

body.section-page .jobs-page .jobs-page__tabs a.is-active::after {
  bottom: 8px !important;
  width: 16px !important;
  min-width: 16px !important;
  height: 1px !important;
  background: #1e9dec !important;
}

body.section-page .jobs-page .jobs-page__banner {
  /* 72px on the 1920px design width, scaled by viewport width. */
  margin-top: 3.75vw !important;
  border-radius: clamp(16px, 1.25vw, 24px) !important;
  overflow: hidden !important;
}

body.section-page .jobs-page .jobs-filter-head {
  margin-bottom: clamp(26px, 1.8229167vw, 35px) !important;
}

body.section-page .jobs-page .jobs-filter-group,
body.section-page .jobs-page .jobs-filter-group + .jobs-filter-group {
  padding-top: 0 !important;
}

body.section-page .jobs-page .jobs-page__category-group {
  margin-top: clamp(20px, 1.25vw, 24px) !important;
  margin-left: clamp(8px, 0.5208333vw, 10px) !important;
}

body.section-page .jobs-page .jobs-page__category,
body.section-page .jobs-page .jobs-page__location {
  gap: 10px !important;
  justify-content: flex-start !important;
}

body.section-page .jobs-page .jobs-page__category {
  margin-top: 0 !important;
}

body.section-page .jobs-page .jobs-page__category::before {
  content: "" !important;
  flex: 0 0 14px !important;
  display: block !important;
  width: 14px !important;
  min-width: 14px !important;
  height: 14px !important;
  min-height: 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--jobs-ink) !important;
  box-shadow: none !important;
  clip-path: polygon(36% 20%, 36% 80%, 72% 50%) !important;
  opacity: 0.82 !important;
}

body.section-page .jobs-page .jobs-page__category.is-expanded::before {
  clip-path: polygon(20% 36%, 80% 36%, 50% 72%) !important;
}

body.section-page .jobs-page .jobs-page__location::before {
  content: none !important;
  display: inline !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.section-page .jobs-page .jobs-page__location.is-active::before {
  content: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.section-page .jobs-page .jobs-page__category i,
body.section-page .jobs-page .jobs-page__location i {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 0 !important;
  border: 1px solid #8f959e !important;
  border-radius: 2px !important;
  background: #fff !important;
}

body.section-page .jobs-page .jobs-page__category.is-active i {
  border-color: var(--jobs-blue) !important;
  background: var(--jobs-blue) !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-page__tabs {
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    margin-top: 0 !important;
    gap: 32px !important;
    justify-content: center !important;
    overflow-x: auto !important;
  }

  body.section-page .jobs-page .jobs-page__tabs a {
    height: 70px !important;
    min-width: max-content !important;
    flex: 0 0 auto !important;
  }

  body.section-page .jobs-page .jobs-page__banner {
    margin-top: 3.75vw !important;
  }
}

body.section-page .header.header--jobs {
  background: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.section-page .header.header--jobs .nav.jobs-page__tabs--header {
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 50px !important;
  border-bottom: 0 !important;
  background: transparent !important;
}

body.section-page .header.header--jobs .nav.jobs-page__tabs--header .nav-link {
  height: 70px !important;
  display: inline-flex !important;
  align-items: center !important;
  color: #fff !important;
  font-size: var(--fs-16) !important;
  line-height: 1 !important;
  opacity: 0.6 !important;
}

body.section-page .header.header--jobs .nav.jobs-page__tabs--header .nav-link.active {
  opacity: 1 !important;
}

body.section-page .header.header--jobs .nav.jobs-page__tabs--header .nav-link::after {
  bottom: 8px !important;
  width: 16px !important;
  height: 1px !important;
  border-radius: 1px !important;
  background: #1e9dec !important;
}

body.section-page .jobs-page .jobs-page__tabs--inline {
  display: flex !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-page__tabs--inline {
    display: flex !important;
  }
}

/* Figma node 292:5333 recruitment list fidelity. */
body.section-page .jobs-page .jobs-figma-choose {
  grid-template-columns: minmax(260px, min(420px, 21.875vw)) minmax(0, min(897px, 46.71875vw)) !important;
  gap: clamp(32px, 3.90625vw, 75px) !important;
}

body.section-page .jobs-page .jobs-figma-search {
  position: relative !important;
  flex: 0 0 clamp(180px, 12.5vw, 240px) !important;
  width: clamp(180px, 12.5vw, 240px) !important;
  min-width: 0 !important;
  height: clamp(32px, 1.875vw, 36px) !important;
  min-height: 0 !important;
  padding: 0 clamp(14px, 1.04vw, 20px) !important;
  gap: 12px !important;
  border: 2px solid var(--jobs-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
}

body.section-page .jobs-page .jobs-figma-search::after {
  content: "" !important;
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px !important;
  border: 2px solid #a1a4b7 !important;
  border-radius: 50% !important;
  box-shadow: 5px 5px 0 -3px #a1a4b7 !important;
  transform: rotate(45deg) !important;
}

body.section-page .jobs-page .jobs-figma-search input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 100% !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--jobs-ink) !important;
  font: inherit !important;
  line-height: normal !important;
}

body.section-page .jobs-page .jobs-figma-search input::-webkit-search-decoration,
body.section-page .jobs-page .jobs-figma-search input::-webkit-search-cancel-button {
  display: none !important;
}

body.section-page .jobs-page .jobs-list-head {
  margin-bottom: 64px !important;
  align-items: flex-start !important;
}

body.section-page .jobs-page .jobs-list-head h2 {
  line-height: 50px !important;
}

body.section-page .jobs-page .jobs-page__cards {
  margin-top: 0 !important;
  gap: 48px !important;
}

body.section-page .jobs-page .jobs-page__job-card {
  height: 119px !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.section-page .jobs-page .jobs-page__job-card:hover {
  opacity: 0.82 !important;
  transform: none !important;
  box-shadow: none !important;
}

body.section-page .jobs-page .jobs-page__job-card h3 {
  line-height: 39px !important;
}

body.section-page .jobs-page .jobs-page__job-meta {
  margin-top: 12px !important;
  gap: 8px !important;
}

body.section-page .jobs-page .jobs-page__job-meta span {
  line-height: 20px !important;
}

body.section-page .jobs-page .jobs-page__job-card p {
  margin-top: 21px !important;
  line-height: 28px !important;
}

body.section-page .jobs-page .jobs-page__subcategories {
  display: grid !important;
  gap: 20px !important;
  margin-top: 20px !important;
  margin-left: clamp(44px, 2.3958333vw, 46px) !important;
}

body.section-page .jobs-page .jobs-filter-group .jobs-page__location {
  margin-top: clamp(20px, 1.25vw, 24px) !important;
}

body.section-page .jobs-page .jobs-page__subcategory {
  min-height: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--jobs-ink) !important;
  font-size: var(--fs-18) !important;
  line-height: 24px !important;
}

body.section-page .jobs-page .jobs-page__subcategory i {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  border: 1px solid #8f959e !important;
  border-radius: 2px !important;
  background: #fff !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-figma-choose {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.section-page .jobs-page .jobs-figma-search {
    flex-basis: auto !important;
    width: 100% !important;
  }

  body.section-page .jobs-page .jobs-list-head {
    margin-bottom: 32px !important;
  }

  body.section-page .jobs-page .jobs-list-head h2 {
    line-height: 1.25 !important;
  }

  body.section-page .jobs-page .jobs-page__cards {
    gap: 28px !important;
  }

  body.section-page .jobs-page .jobs-page__job-card {
    height: auto !important;
    min-height: 119px !important;
  }
}

/* Figma nodes 292:5466 and 292:5587: detail/apply states do not use the choose-page banner. */
body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail {
  grid-template-columns: minmax(0, min(996px, 51.875vw)) min(360px, 18.75vw) !important;
  gap: min(36px, 1.875vw) !important;
  align-items: start !important;
}

body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card,
body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
  border-radius: 24px !important;
  background: #fff !important;
  box-shadow: 0 0 12px rgba(5, 12, 62, 0.05) !important;
}

body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card {
  min-height: min(948px, 49.375vw) !important;
  padding: min(48px, 2.5vw) !important;
}

body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
  min-height: min(657px, 34.21875vw) !important;
  padding: min(48px, 2.5vw) min(36px, 1.875vw) !important;
  position: static !important;
}

body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section p,
body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section ul {
  font-size: var(--fs-20) !important;
  line-height: 48px !important;
}

body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-cta,
body.section-page .jobs-page.jobs-page--detail .jobs-figma-apply-link {
  width: auto !important;
  min-width: 108px !important;
  height: 58px !important;
  padding: 12px 36px !important;
  border-radius: 42px !important;
  font-size: var(--fs-24) !important;
  font-weight: 400 !important;
  line-height: 34px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-panel {
  width: 100% !important;
  border-radius: 24px 24px 0 0 !important;
  background: #fff !important;
  box-shadow: 0 0 12px rgba(5, 12, 62, 0.05) !important;
  overflow: hidden !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-head {
  min-height: 218px !important;
  padding: min(48px, 2.5vw) !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  border-bottom: 0 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-head > span {
  top: min(57px, 2.96875vw) !important;
  left: min(48px, 2.5vw) !important;
  width: 3px !important;
  height: 32px !important;
  border-radius: 2px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-head h2 {
  padding-left: 19px !important;
  font-size: var(--fs-36) !important;
  line-height: 50px !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-form {
  width: min(1200px, 62.5vw) !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section {
  display: grid !important;
  grid-template-columns: min(360px, 18.75vw) min(780px, 40.625vw) !important;
  column-gap: min(60px, 3.125vw) !important;
  align-items: start !important;
  padding: 0 !important;
  border: 0 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section + .jobs-apply-section {
  margin-top: min(72px, 3.75vw) !important;
  padding-top: min(62px, 3.2291667vw) !important;
  border-top: 2px solid var(--jobs-line) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head {
  margin: 0 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head h3 {
  padding-left: 19px !important;
  font-size: var(--fs-28) !important;
  line-height: 39px !important;
  font-weight: 500 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head h3::before {
  top: 8px !important;
  width: 3px !important;
  height: 24px !important;
  border-radius: 2px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head p {
  margin: 4px 0 0 19px !important;
  font-size: var(--fs-20) !important;
  line-height: 28px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid {
  width: min(780px, 40.625vw) !important;
  margin-top: 3px !important;
  display: grid !important;
  grid-template-columns: min(780px, 40.625vw) !important;
  gap: min(24px, 1.25vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label {
  width: min(780px, 40.625vw) !important;
  min-height: min(102px, 5.3125vw) !important;
  display: grid !important;
  gap: 8px !important;
  color: var(--jobs-ink) !important;
  font-size: var(--fs-24) !important;
  line-height: 34px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label span {
  font-size: var(--fs-24) !important;
  line-height: 34px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid input {
  width: 100% !important;
  height: clamp(46px, 3.125vw, 60px) !important;
  min-height: clamp(46px, 3.125vw, 60px) !important;
  padding: 0 18px !important;
  border: 2px solid var(--jobs-line) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.99) !important;
  color: var(--jobs-ink) !important;
  font-size: var(--fs-20) !important;
  line-height: 28px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-range {
  grid-template-columns: min(360px, 18.75vw) min(24px, 1.25vw) min(360px, 18.75vw) !important;
  column-gap: min(18px, 0.9375vw) !important;
  row-gap: 8px !important;
  align-items: center !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-range span {
  grid-column: 1 / -1 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input {
  width: min(360px, 18.75vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-range i {
  width: min(24px, 1.25vw) !important;
  height: 2px !important;
  margin: 0 !important;
  background: var(--jobs-line) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-actions {
  grid-column: 2 !important;
  width: min(780px, 40.625vw) !important;
  height: min(36px, 1.875vw) !important;
  margin-top: min(24px, 1.25vw) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-section:last-of-type .jobs-apply-actions {
  margin-bottom: min(34px, 1.7708333vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-add {
  width: auto !important;
  min-width: min(78px, 4.0625vw) !important;
  height: min(36px, 1.875vw) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: min(10px, 0.5208333vw) !important;
  background: transparent !important;
  color: var(--jobs-blue) !important;
  font-size: var(--fs-24) !important;
  line-height: 34px !important;
  text-align: left !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-add > span[aria-hidden="true"] {
  display: none !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-add > span:not([aria-hidden]) {
  display: block !important;
  line-height: 34px !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-add::before {
  flex: 0 0 min(20px, 1.0416667vw) !important;
  width: min(20px, 1.0416667vw) !important;
  height: min(20px, 1.0416667vw) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: var(--fs-28) !important;
  line-height: min(20px, 1.0416667vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-remove {
  flex: 0 0 min(36px, 1.875vw) !important;
  width: min(36px, 1.875vw) !important;
  height: min(36px, 1.875vw) !important;
  margin-right: min(18px, 0.9375vw) !important;
  padding: 0 !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-remove::before {
  width: min(36px, 1.875vw) !important;
  height: min(36px, 1.875vw) !important;
  background-size: min(36px, 1.875vw) min(36px, 1.875vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit {
  width: 100vw !important;
  min-height: 126px !important;
  margin-left: 50% !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  box-shadow: 0 -4px 24px rgba(5, 12, 62, 0.1) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit__inner {
  width: min(1392px, 72.5vw) !important;
  min-height: 126px !important;
  padding: 34px 264px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit a {
  width: auto !important;
  min-width: 156px !important;
  height: 58px !important;
  padding: 12px 36px !important;
  border-radius: 42px !important;
  font-size: var(--fs-24) !important;
  font-weight: 400 !important;
  line-height: 34px !important;
}

@media (min-width: 901px) {
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    border-radius: min(24px, 1.25vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card {
    height: min(948px, 49.375vw) !important;
    min-height: 0 !important;
    padding: min(48px, 2.5vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    height: min(657px, 34.21875vw) !important;
    min-height: 0 !important;
    padding: min(48px, 2.5vw) min(36px, 1.875vw) !important;
    align-content: start !important;
    gap: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail-title {
    font-size: var(--fs-36) !important;
    line-height: min(50px, 2.6041667vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail-main > .jobs-page__job-meta {
    margin-top: min(16px, 0.8333333vw) !important;
    gap: min(8px, 0.4166667vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta span {
    font-size: var(--fs-20) !important;
    line-height: min(28px, 1.4583333vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta span + span::before {
    margin-right: min(8px, 0.4166667vw) !important;
    font-size: var(--fs-14) !important;
    line-height: min(20px, 1.0416667vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section {
    margin: 0 !important;
    padding: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta + .jobs-page__detail-section {
    margin-top: min(48px, 2.5vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section + .jobs-page__detail-section {
    margin-top: min(72px, 3.75vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3 {
    margin: 0 !important;
    padding-left: min(12px, 0.625vw) !important;
    font-size: var(--fs-28) !important;
    line-height: min(39px, 2.03125vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3::before,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3::before {
    top: min(9px, 0.46875vw) !important;
    width: min(3px, 0.15625vw) !important;
    height: min(21px, 1.09375vw) !important;
    border-radius: min(2px, 0.1041667vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section p,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section ul {
    margin: min(11px, 0.5729167vw) 0 0 !important;
    padding: 0 !important;
    font-size: var(--fs-20) !important;
    line-height: min(48px, 2.5vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section li {
    list-style: none !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-cta,
  body.section-page .jobs-page.jobs-page--detail .jobs-figma-apply-link {
    min-width: min(120px, 6.25vw) !important;
    height: min(58px, 3.0208333vw) !important;
    margin-top: min(48px, 2.5vw) !important;
    padding: min(12px, 0.625vw) min(36px, 1.875vw) !important;
    border-radius: min(42px, 2.1875vw) !important;
    font-size: var(--fs-24) !important;
    line-height: min(34px, 1.7708333vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list {
    margin-top: min(48px, 2.5vw) !important;
    display: grid !important;
    gap: min(36px, 1.875vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list a {
    min-height: min(66px, 3.4375vw) !important;
    padding: 0 !important;
    display: grid !important;
    gap: min(4px, 0.2083333vw) !important;
    border-bottom: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list strong {
    font-size: var(--fs-24) !important;
    line-height: min(34px, 1.7708333vw) !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list span {
    margin-top: 0 !important;
    font-size: var(--fs-20) !important;
    line-height: min(28px, 1.4583333vw) !important;
  }
}

@media (max-width: 900px) {
  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail,
  body.section-page .jobs-page.jobs-page--apply .jobs-figma-apply {
    width: calc(100vw - 32px) !important;
    margin-top: 32px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-section {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    min-height: 0 !important;
    padding: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-head {
    min-height: 0 !important;
    padding: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-head > span {
    top: 37px !important;
    left: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-form,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-actions,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-add {
    width: 100% !important;
    max-width: none !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-actions {
    height: 36px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-add {
    width: auto !important;
    min-width: 78px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-remove {
    width: 36px !important;
    height: 36px !important;
    margin-right: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-section {
    padding: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-section + .jobs-apply-section {
    margin-top: 0 !important;
    padding-top: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-range {
    grid-template-columns: 1fr !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input {
    width: 100% !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-range i {
    display: none !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit {
    min-height: 96px !important;
    padding: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit__inner {
    width: calc(100vw - 32px) !important;
    min-height: 96px !important;
    padding: 20px 0 !important;
  }
}

@media (min-width: 901px) {
  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo {
    --mod-cta-content-w: 100vw;
    --mod-cta-content-max: none;
    --mod-cta-text-max: 34rem;
    --mod-cta-scroll-distance-factor: 0.05;
    --mod-cta-target-radius: 4;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell:has(.mod-cta--photo) {
    margin-top: calc(260 / 1920 * 100vw) !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell:has(.mod-cta--photo) .ct-foot {
    --ct-foot-main-top-gap: clamp(2rem, calc(48 / 1920 * 100vw), 3rem);
    margin-top: calc(-144 / 1920 * 100vw) !important;
    padding-top: 0 !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .mod-cta-wrap {
    width: var(--mod-cta-content-w) !important;
    max-width: var(--mod-cta-content-max) !important;
    margin: 0 auto !important;
    aspect-ratio: 1600 / 390 !important;
    overflow: hidden !important;
    border-radius: var(--mod-cta-radius, 0) !important;
    background: transparent !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-card {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 5 !important;
    display: block !important;
    width: var(--mod-cta-content-w) !important;
    max-width: var(--mod-cta-content-max) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 calc(96 / 1920 * 100vw) !important;
    border: 0 !important;
    border-radius: 0 !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translate(-50%, -50%) !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .mod-cta-text {
    position: relative !important;
    width: 60% !important;
    max-width: var(--mod-cta-text-max) !important;
    color: #fff !important;
    transform: none !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .mod-cta-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
    transform: none !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-bg,
  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-bg-mobile {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.01) !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-bg-mobile {
    display: none !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-title,
  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-sub {
    position: static !important;
    left: auto !important;
    top: auto !important;
    white-space: normal !important;
    transform: none !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-title {
    margin: 0 0 calc(28.8 / 1080 * 100dvh) !important;
    max-width: 11em !important;
    color: #fff !important;
    font-size: var(--fs-36) !important;
    font-weight: 400 !important;
    line-height: 1.3889 !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-sub {
    max-width: 22em !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: var(--fs-24) !important;
    line-height: min(38px, 1.9791667vw) !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-title p,
  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-sub p {
    margin: 0 !important;
    white-space: nowrap !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-sub p {
    color: #fff !important;
    font-size: var(--fs-24) !important;
    line-height: 1.4 !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-arrow {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: clamp(var(--mod-cta-arrow-w-min), 1.25vw, var(--mod-cta-arrow-w)) !important;
    height: clamp(var(--mod-cta-arrow-h-min), 0.625vw, var(--mod-cta-arrow-h)) !important;
    margin-top: clamp(var(--mod-cta-arrow-top-min), 2.604vw, var(--mod-cta-arrow-top)) !important;
  }

  body.section-page .jobs-page ~ .site-footer-shell .ct-foot__cta-band.mod-cta.mod-cta--photo .ct-foot__cta-arrow img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

/* Final mobile recruitment interaction overrides. */
@media (max-width: 900px) {
  html[data-mobile] body.section-page.jobs-page-root {
    padding-top: 0 !important;
  }

  body.section-page .jobs-page {
    padding-top: var(--header-height, 70px) !important;
  }

  body.section-page .jobs-page .jobs-page__tabs--inline {
    position: relative !important;
    padding: 0 16px 0 54px !important;
    gap: clamp(12px, 4vw, 28px) !important;
    overflow: visible !important;
  }

  body.section-page .jobs-page .jobs-page__back {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    width: 40px !important;
    height: 44px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--jobs-ink) !important;
    font-size: var(--fs-27) !important;
    line-height: 1 !important;
    transform: translateY(-50%) !important;
  }

  body.section-page .jobs-page .jobs-list-head {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }

  body.section-page .jobs-page .jobs-figma-search {
    flex: 0 0 auto !important;
    width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    height: clamp(44px, 12vw, 50px) !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 25px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail-title {
    font-size: var(--fs-27) !important;
    line-height: 1.3 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3 {
    font-size: var(--fs-21) !important;
    line-height: 1.4 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section p,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section ul,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list span {
    font-size: var(--fs-18) !important;
    line-height: 1.8 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list strong {
    font-size: var(--fs-20) !important;
    line-height: 1.45 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-cta,
  body.section-page .jobs-page.jobs-page--detail .jobs-figma-apply-link {
    height: 48px !important;
    padding: 9px 28px !important;
    font-size: var(--fs-18) !important;
    line-height: 30px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail {
    margin-top: 24px !important;
    gap: 20px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card,
  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    padding: 24px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail-main > .jobs-page__job-meta {
    margin-top: 8px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section {
    margin: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta + .jobs-page__detail-section {
    margin-top: 24px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section + .jobs-page__detail-section {
    margin-top: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3 {
    margin-bottom: 10px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-cta,
  body.section-page .jobs-page.jobs-page--detail .jobs-figma-apply-link {
    margin-top: 28px !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3 {
    margin-bottom: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    gap: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list {
    margin-top: 20px !important;
    gap: 24px !important;
  }
}

/* Keep the new explicit controls above the legacy pseudo-element fallbacks. */
body.section-page .jobs-page {
  width: 100% !important;
  background: linear-gradient(to bottom, #e5f0ff 0%, #fff 44.15%) !important;
  background-repeat: no-repeat !important;
}

body.section-page .jobs-page .jobs-page__category::before,
body.section-page .jobs-page .jobs-figma-search::after {
  content: none !important;
  display: none !important;
}

/* Apply-page fixed submit bar, safe area, and repeatable entries. */
body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit {
  position: fixed !important;
  right: 0 !important;
  bottom: var(--jobs-apply-footer-offset, 0px) !important;
  left: 0 !important;
  z-index: 1000 !important;
  margin-left: 0 !important;
  transform: none !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entries {
  display: grid !important;
  gap: min(24px, 1.25vw) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry {
  min-width: 0 !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) {
  box-sizing: border-box !important;
  width: min(780px, 40.625vw) !important;
  padding: min(24px, 1.25vw) !important;
  border-radius: min(12px, 0.625vw) !important;
  background: #f7f8fa !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) .jobs-apply-grid,
body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) .jobs-apply-grid label {
  width: 100% !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) .jobs-apply-grid label.jobs-apply-range {
  grid-template-columns: minmax(0, 1fr) min(24px, 1.25vw) minmax(0, 1fr) !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) .jobs-apply-range input {
  width: 100% !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-remove[hidden] {
  display: none !important;
}

@media (min-width: 901px) {
  body.section-page .jobs-page.jobs-page--apply {
    padding-bottom: 126px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-figma-apply {
    padding-bottom: 0 !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit__inner {
    padding: 34px min(96px, 5vw) !important;
  }
}

@media (max-width: 900px) {
  body.section-page .jobs-page.jobs-page--apply {
    padding-bottom: 96px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-entries {
    gap: 20px !important;
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-entry:not(:last-child) {
    width: 100% !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-add:focus:not(:focus-visible),
body.section-page .jobs-page.jobs-page--apply .jobs-apply-remove:focus:not(:focus-visible) {
  outline: none !important;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit button {
  min-width: calc(156 / 1920 * 100vw);
  min-height: calc(58 / 1920 * 100vw);
  padding: calc(12 / 1920 * 100vw) calc(36 / 1920 * 100vw);
  border: 0;
  border-radius: calc(42 / 1920 * 100vw);
  background: #0d63f3;
  color: #fff;
  font-size: var(--fs-24);
  cursor: pointer;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-file {
  grid-column: 1 / -1;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-file small,
body.section-page .jobs-page.jobs-page--apply .jobs-apply-privacy,
body.section-page .jobs-page.jobs-page--apply .jobs-apply-status {
  color: rgba(5, 12, 62, 0.58);
  font-size: var(--fs-14);
  line-height: 1.6;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-status.is-success { color: #16834a; }
body.section-page .jobs-page.jobs-page--apply .jobs-apply-status.is-error { color: #c73535; }

@media (max-width: 900px) {
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit button {
    min-width: calc(420 / 1080 * 100vw);
    min-height: calc(88 / 1080 * 100vw);
    padding: calc(16 / 1080 * 100vw) calc(48 / 1080 * 100vw);
    border-radius: calc(48 / 1080 * 100vw);
    font-size: var(--fs-32);
  }

  body.section-page .jobs-page.jobs-page--apply .jobs-apply-file small,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-privacy,
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-status {
    font-size: var(--fs-25);
  }
}

@media (min-width: 901px) {
  body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label.jobs-apply-range {
    column-gap: min(18px, 0.9375vw) !important;
  }
}

/* Recruitment type navigation remains visible below the global header. */
body.section-page.jobs-page-root {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body.section-page.jobs-page-root .jobs-page {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body.section-page .jobs-page .jobs-page__tabs--inline {
  position: sticky !important;
  top: var(--header-height, 70px) !important;
  z-index: 90 !important;
  box-shadow: 0 calc(8 / 1920 * 100vw) calc(24 / 1920 * 100vw) rgba(5, 12, 62, 0.08) !important;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.section-page .jobs-page .jobs-figma-choose {
  align-items: stretch !important;
}

body.section-page .jobs-page .jobs-category-option span,
body.section-page .jobs-page .jobs-page__subcategory span,
body.section-page .jobs-page .jobs-page__location span {
  color: rgba(5, 12, 62, 0.6) !important;
}

body.section-page .jobs-page .jobs-category-option input:checked + span,
body.section-page .jobs-page .jobs-category-option input:indeterminate + span,
body.section-page .jobs-page .jobs-page__subcategory input:checked + span,
body.section-page .jobs-page .jobs-page__location input:checked + span {
  color: var(--jobs-ink) !important;
}

body.section-page .jobs-page .jobs-category-toggle:disabled,
body.section-page .jobs-page .jobs-category-checkbox:disabled {
  opacity: 0.82 !important;
}

body.section-page .header.header--jobs.hidden ~ .jobs-page .jobs-page__tabs--inline {
  top: 0 !important;
}

@media (max-width: 900px) {
  body.section-page .jobs-page .jobs-page__tabs--inline {
    top: 52px !important;
    box-shadow: 0 calc(8 / 1080 * 100vw) calc(24 / 1080 * 100vw) rgba(5, 12, 62, 0.08) !important;
  }

  body.section-page .header.hidden ~ .jobs-page .jobs-page__tabs--inline {
    top: 0 !important;
  }
}

/* Final H5 recruitment layout: 1080 design baseline and global font tokens. */
@media (max-width: 900px) {
  html[data-mobile] body.section-page .jobs-page {
    padding-top: calc(120 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__tabs--inline {
    top: calc(120 / 1080 * 100vw) !important;
    width: 100% !important;
    height: calc(132 / 1080 * 100vw) !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 calc(48 / 1080 * 100vw) !important;
    justify-content: center !important;
    gap: calc(64 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__back {
    left: calc(32 / 1080 * 100vw) !important;
    width: calc(72 / 1080 * 100vw) !important;
    height: calc(96 / 1080 * 100vw) !important;
    font-size: var(--fs-42) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__tabs a {
    flex: 0 0 auto !important;
    height: 100% !important;
    min-width: 0 !important;
    padding: 0 calc(8 / 1080 * 100vw) !important;
    align-self: center !important;
    font-size: var(--fs-42) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__tabs a.is-active::after {
    width: calc(72 / 1080 * 100vw) !important;
    min-width: 0 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__banner,
  html[data-mobile] body.section-page .jobs-page .jobs-figma-choose,
  html[data-mobile] body.section-page .jobs-page .jobs-figma-detail,
  html[data-mobile] body.section-page .jobs-page .jobs-figma-apply,
  html[data-mobile] body.section-page .jobs-page .jobs-page__alert {
    width: calc(100vw - calc(88 / 1080 * 100vw)) !important;
    margin-top: calc(80 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__banner {
    height: calc(610 / 1080 * 100vw) !important;
    min-height: 0 !important;
    border-radius: calc(48 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__banner-copy {
    left: calc(72 / 1080 * 100vw) !important;
    width: calc(600 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__banner-copy h1 {
    font-size: var(--fs-56) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__banner-copy p {
    margin-top: calc(16 / 1080 * 100vw) !important;
    font-size: var(--fs-32) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-figma-choose,
  html[data-mobile] body.section-page .jobs-page .jobs-figma-detail {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: calc(80 / 1080 * 100vw) !important;
    padding-bottom: calc(180 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-figma-filter.jobs-page__categories {
    padding: 0 0 calc(72 / 1080 * 100vw) !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--jobs-line) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-head {
    min-height: calc(96 / 1080 * 100vw) !important;
    margin-bottom: calc(72 / 1080 * 100vw) !important;
    border-bottom: 1px solid var(--jobs-line) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-head h2 {
    font-size: var(--fs-36) !important;
    line-height: 1.35 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-head .jobs-filter-clear {
    font-size: var(--fs-30) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-group,
  html[data-mobile] body.section-page .jobs-page .jobs-filter-group + .jobs-filter-group {
    margin-bottom: calc(72 / 1080 * 100vw) !important;
    padding-top: 0 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-group + .jobs-filter-group {
    padding-top: calc(32 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-group h3 {
    font-size: var(--fs-36) !important;
    line-height: 1.35 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__category {
    min-height: calc(72 / 1080 * 100vw) !important;
    margin-top: calc(48 / 1080 * 100vw) !important;
    gap: calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__category span,
  html[data-mobile] body.section-page .jobs-page .jobs-page__subcategory span,
  html[data-mobile] body.section-page .jobs-page .jobs-page__location span {
    font-size: var(--fs-32) !important;
    line-height: 1.55 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__subcategories {
    gap: calc(32 / 1080 * 100vw) !important;
    margin-top: calc(32 / 1080 * 100vw) !important;
    margin-left: calc(104 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__subcategory,
  html[data-mobile] body.section-page .jobs-page .jobs-filter-group .jobs-page__location {
    min-height: calc(72 / 1080 * 100vw) !important;
    margin-top: calc(32 / 1080 * 100vw) !important;
    gap: calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-category-option {
    gap: calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-category-toggle {
    flex-basis: calc(40 / 1080 * 100vw) !important;
    width: calc(40 / 1080 * 100vw) !important;
    height: calc(48 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-checkbox {
    flex-basis: calc(48 / 1080 * 100vw) !important;
    width: calc(48 / 1080 * 100vw) !important;
    height: calc(48 / 1080 * 100vw) !important;
    border-radius: calc(4 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-checkbox:checked {
    background-position:
      calc(8 / 1080 * 100vw) calc(19 / 1080 * 100vw),
      calc(19 / 1080 * 100vw) calc(11 / 1080 * 100vw) !important;
    background-size:
      calc(16 / 1080 * 100vw) calc(13 / 1080 * 100vw),
      calc(21 / 1080 * 100vw) calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-filter-checkbox:indeterminate,
  html[data-mobile] body.section-page .jobs-page .jobs-filter-checkbox.is-indeterminate {
    background-size: calc(32 / 1080 * 100vw) calc(5 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-list-head {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: calc(48 / 1080 * 100vw) !important;
    margin-bottom: calc(64 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-list-head h2 {
    font-size: var(--fs-42) !important;
    line-height: 1.35 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-figma-search {
    width: 100% !important;
    justify-self: stretch !important;
    height: calc(132 / 1080 * 100vw) !important;
    min-height: 0 !important;
    padding: 0 calc(48 / 1080 * 100vw) !important;
    border-radius: calc(66 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-figma-search span,
  html[data-mobile] body.section-page .jobs-page .jobs-figma-search input {
    font-size: var(--fs-32) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__cards {
    gap: calc(24 / 1080 * 100vw) !important;
    padding: calc(24 / 1080 * 100vw) !important;
    background: transparent !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__job-card {
    min-height: calc(300 / 1080 * 100vw) !important;
    padding: calc(32 / 1080 * 100vw) !important;
    border: 1px solid var(--jobs-line) !important;
    border-radius: calc(12 / 1080 * 100vw) !important;
    background: #fff !important;
    box-shadow: 0 calc(4 / 1080 * 100vw) calc(16 / 1080 * 100vw) rgba(5, 12, 62, 0.06) !important;
    box-sizing: border-box !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__job-card h3 {
    font-size: var(--fs-42) !important;
    line-height: 1.4 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__job-meta {
    margin-top: calc(24 / 1080 * 100vw) !important;
    gap: calc(16 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__job-meta span {
    font-size: var(--fs-28) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page .jobs-page__job-card p {
    margin-top: calc(32 / 1080 * 100vw) !important;
    font-size: var(--fs-32) !important;
    line-height: 1.75 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-card,
  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel {
    padding: calc(64 / 1080 * 100vw) !important;
    border-radius: calc(48 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-figma-detail-title {
    font-size: var(--fs-48) !important;
    line-height: 1.35 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta {
    margin-top: calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta span {
    font-size: var(--fs-30) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__job-meta + .jobs-page__detail-section {
    margin-top: calc(64 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section + .jobs-page__detail-section {
    margin-top: calc(72 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3,
  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3 {
    padding-left: calc(32 / 1080 * 100vw) !important;
    font-size: var(--fs-42) !important;
    line-height: 1.4 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section h3::before,
  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-panel h3::before {
    top: calc(10 / 1080 * 100vw) !important;
    width: calc(6 / 1080 * 100vw) !important;
    height: calc(48 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section p,
  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-section ul {
    margin-top: calc(24 / 1080 * 100vw) !important;
    font-size: var(--fs-36) !important;
    line-height: 1.8 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__detail-cta,
  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-figma-apply-link {
    width: auto !important;
    min-width: calc(280 / 1080 * 100vw) !important;
    height: calc(112 / 1080 * 100vw) !important;
    min-height: 0 !important;
    margin-top: calc(64 / 1080 * 100vw) !important;
    padding: 0 calc(56 / 1080 * 100vw) !important;
    border-radius: calc(56 / 1080 * 100vw) !important;
    font-size: var(--fs-32) !important;
    line-height: 1 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list {
    margin-top: calc(48 / 1080 * 100vw) !important;
    gap: calc(48 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list strong {
    font-size: var(--fs-36) !important;
    line-height: 1.45 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--detail .jobs-page__related-list span {
    margin-top: calc(8 / 1080 * 100vw) !important;
    font-size: var(--fs-30) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply {
    padding-bottom: calc(180 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-figma-apply {
    width: calc(100vw - calc(88 / 1080 * 100vw)) !important;
    margin-top: calc(80 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-panel {
    padding: 0 !important;
    border-radius: calc(48 / 1080 * 100vw) calc(48 / 1080 * 100vw) 0 0 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-head {
    min-height: 0 !important;
    padding: calc(60 / 1080 * 100vw) !important;
    display: block !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-head > span {
    top: calc(76 / 1080 * 100vw) !important;
    left: calc(60 / 1080 * 100vw) !important;
    width: calc(6 / 1080 * 100vw) !important;
    height: calc(64 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-head h2 {
    padding-left: calc(40 / 1080 * 100vw) !important;
    font-size: var(--fs-48) !important;
    line-height: 1.35 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-head .jobs-page__job-meta {
    margin: calc(24 / 1080 * 100vw) 0 0 calc(40 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-form,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-actions {
    width: 100% !important;
    max-width: none !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section + .jobs-apply-section {
    grid-template-columns: minmax(0, 1fr) !important;
    column-gap: 0 !important;
    row-gap: calc(48 / 1080 * 100vw) !important;
    margin-top: 0 !important;
    padding: calc(60 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section + .jobs-apply-section {
    border-top: 1px solid var(--jobs-line) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head h3 {
    padding-left: calc(40 / 1080 * 100vw) !important;
    font-size: var(--fs-42) !important;
    line-height: 1.4 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head h3::before {
    top: calc(10 / 1080 * 100vw) !important;
    width: calc(6 / 1080 * 100vw) !important;
    height: calc(56 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-section__head p {
    margin: calc(16 / 1080 * 100vw) 0 0 calc(40 / 1080 * 100vw) !important;
    font-size: var(--fs-32) !important;
    line-height: 1.6 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid {
    margin-top: 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: calc(40 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label {
    min-height: 0 !important;
    gap: calc(16 / 1080 * 100vw) !important;
    font-size: var(--fs-36) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid label span,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid input {
    font-size: var(--fs-36) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-grid input {
    height: calc(112 / 1080 * 100vw) !important;
    min-height: 0 !important;
    padding: 0 calc(32 / 1080 * 100vw) !important;
    border-radius: calc(20 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-file input[type="file"] {
    padding: calc(8 / 1080 * 100vw) !important;
    color: rgba(5, 12, 62, 0.52) !important;
    font-size: var(--fs-30) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-file input[type="file"]::file-selector-button {
    height: calc(88 / 1080 * 100vw);
    margin-right: calc(24 / 1080 * 100vw);
    padding: 0 calc(32 / 1080 * 100vw);
    border: 0;
    border-radius: calc(14 / 1080 * 100vw);
    background: rgba(18, 91, 206, 0.1);
    color: var(--jobs-blue);
    font: inherit;
    font-size: var(--fs-30);
    cursor: pointer;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-range {
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: calc(24 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input {
    width: 100% !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-range i {
    display: none !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-actions {
    grid-column: 1 !important;
    height: calc(96 / 1080 * 100vw) !important;
    margin-top: calc(32 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-add {
    min-width: 0 !important;
    height: calc(96 / 1080 * 100vw) !important;
    gap: calc(20 / 1080 * 100vw) !important;
    font-size: var(--fs-36) !important;
    line-height: 1.5 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-add::before {
    flex-basis: calc(48 / 1080 * 100vw) !important;
    width: calc(48 / 1080 * 100vw) !important;
    height: calc(48 / 1080 * 100vw) !important;
    font-size: var(--fs-42) !important;
    line-height: 1 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-file small,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-privacy,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-status {
    font-size: var(--fs-30) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-privacy {
    margin: calc(48 / 1080 * 100vw) calc(60 / 1080 * 100vw) calc(64 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit,
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit__inner {
    height: calc(180 / 1080 * 100vw) !important;
    min-height: calc(180 / 1080 * 100vw) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit__inner {
    width: calc(100vw - calc(88 / 1080 * 100vw)) !important;
    padding: calc(34 / 1080 * 100vw) 0 !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-submit button {
    min-width: calc(320 / 1080 * 100vw);
    min-height: calc(112 / 1080 * 100vw);
    padding: 0 calc(40 / 1080 * 100vw);
    border-radius: calc(56 / 1080 * 100vw);
    font-size: var(--fs-32);
  }
}

/* Recruitment application month picker. */
body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input[data-month-picker] {
  padding: 0 calc(54 / 1920 * 100vw) 0 calc(18 / 1920 * 100vw) !important;
  border: 1px solid var(--jobs-line) !important;
  border-radius: calc(10 / 1920 * 100vw) !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236d7188' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
  background-position: right calc(18 / 1920 * 100vw) center !important;
  background-repeat: no-repeat !important;
  background-size: calc(22 / 1920 * 100vw) calc(22 / 1920 * 100vw) !important;
  color: var(--jobs-ink) !important;
  caret-color: transparent;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif !important;
  font-size: var(--fs-18) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input[data-month-picker]:focus {
  border-color: rgba(5, 12, 62, 0.45) !important;
  box-shadow: 0 0 0 calc(3 / 1920 * 100vw) rgba(5, 12, 62, 0.06) !important;
  outline: none;
}

.jobs-month-picker {
  position: fixed;
  z-index: 1300;
  box-sizing: border-box;
  width: calc(460 / 1920 * 100vw);
  padding: calc(24 / 1920 * 100vw);
  border: 1px solid rgba(5, 12, 62, 0.12);
  border-radius: calc(16 / 1920 * 100vw);
  background: #fff;
  box-shadow:
    0 calc(18 / 1920 * 100vw) calc(48 / 1920 * 100vw) rgba(5, 12, 62, 0.16),
    0 calc(2 / 1920 * 100vw) calc(8 / 1920 * 100vw) rgba(5, 12, 62, 0.08);
  color: #050c3e;
}

.jobs-month-picker[hidden] {
  display: none;
}

.jobs-month-picker__head {
  display: grid;
  grid-template-columns: calc(48 / 1920 * 100vw) 1fr calc(48 / 1920 * 100vw);
  align-items: center;
  margin-bottom: calc(20 / 1920 * 100vw);
}

.jobs-month-picker__head strong {
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.jobs-month-picker__nav {
  width: calc(48 / 1920 * 100vw);
  height: calc(48 / 1920 * 100vw);
  padding: 0;
  border: 1px solid #dee1e5;
  border-radius: 50%;
  background: #fff;
  color: #050c3e;
  font-family: Arial, sans-serif;
  font-size: var(--fs-32);
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.jobs-month-picker__nav:hover,
.jobs-month-picker__nav:focus-visible {
  border-color: rgba(18, 91, 206, 0.4);
  background: #f2f6ff;
  outline: none;
}

.jobs-month-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(12 / 1920 * 100vw);
}

.jobs-month-picker__month {
  height: calc(58 / 1920 * 100vw);
  padding: 0;
  border: 1px solid #e7e9ef;
  border-radius: calc(10 / 1920 * 100vw);
  background: #f8f9fc;
  color: #050c3e;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--fs-18);
  font-weight: 400;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.jobs-month-picker__month:hover,
.jobs-month-picker__month:focus-visible {
  border-color: rgba(18, 91, 206, 0.35);
  background: #edf4ff;
  color: #125bce;
  outline: none;
}

.jobs-month-picker__month.is-selected {
  border-color: #125bce;
  background: #125bce;
  color: #fff;
}

@media (max-width: 900px) {
  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input[data-month-picker] {
    padding: 0 calc(112 / 1080 * 100vw) 0 calc(32 / 1080 * 100vw) !important;
    border-radius: calc(20 / 1080 * 100vw) !important;
    background-position: right calc(32 / 1080 * 100vw) center !important;
    background-size: calc(48 / 1080 * 100vw) calc(48 / 1080 * 100vw) !important;
    font-size: var(--fs-36) !important;
  }

  html[data-mobile] body.section-page .jobs-page.jobs-page--apply .jobs-apply-range input[data-month-picker]:focus {
    box-shadow: 0 0 0 calc(6 / 1080 * 100vw) rgba(5, 12, 62, 0.06) !important;
  }

  .jobs-month-picker {
    width: calc(920 / 1080 * 100vw);
    padding: calc(48 / 1080 * 100vw);
    border-radius: calc(32 / 1080 * 100vw);
    box-shadow:
      0 calc(36 / 1080 * 100vw) calc(96 / 1080 * 100vw) rgba(5, 12, 62, 0.18),
      0 calc(4 / 1080 * 100vw) calc(16 / 1080 * 100vw) rgba(5, 12, 62, 0.08);
  }

  .jobs-month-picker__head {
    grid-template-columns: calc(112 / 1080 * 100vw) 1fr calc(112 / 1080 * 100vw);
    margin-bottom: calc(40 / 1080 * 100vw);
  }

  .jobs-month-picker__head strong {
    font-size: var(--fs-42);
  }

  .jobs-month-picker__nav {
    width: calc(112 / 1080 * 100vw);
    height: calc(112 / 1080 * 100vw);
    font-size: var(--fs-54);
  }

  .jobs-month-picker__grid {
    gap: calc(24 / 1080 * 100vw);
  }

  .jobs-month-picker__month {
    height: calc(112 / 1080 * 100vw);
    border-radius: calc(20 / 1080 * 100vw);
    font-size: var(--fs-36);
  }
}
