/* Careers / Job page redesign v2
   Exact fix for actual widget HTML:
   .zxns > .zxnsnav > .zxnsnavl
   .zxnslist > .search > .s
   .zxnatable > .th / .tr > .td
   .hm > .ckxq > .zwxqT / .zwxqC
*/
.gsee-job-page,
.gsee-job-page * {
  box-sizing: border-box;
}

.gsee-job-page {
  --gsee-red: #e60033;
  --gsee-blue: #1f5ab8;
  --gsee-navy: #061b49;
  --gsee-text: #202833;
  --gsee-muted: #687485;
  --gsee-line: #e2e9f3;
  background:
    radial-gradient(circle at 92% 2%, rgba(31, 90, 184, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 48%, #ffffff 100%);
  padding: 36px 0 76px;
  overflow: hidden;
}

.gsee-job-page a {
  color: inherit;
  text-decoration: none;
}

.gsee-job-container {
  width: min(1360px, calc(100vw - 72px));
  margin: 100px auto 0 auto;
}

/* Breadcrumb */
.gsee-job-breadcrumb {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100% !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: #7a8493;
  font-size: 14px;
}

.gsee-job-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #687485;
  transition: color .18s ease;
}

.gsee-job-breadcrumb a:hover,
.gsee-job-breadcrumb a:last-child {
  color: var(--gsee-red);
}

.gsee-job-breadcrumb > span {
  color: #b3bdca;
}

/* Hero */
.gsee-job-hero {
  position: relative;
  min-height: 238px;
  margin-bottom: 28px;
  padding: 48px 54px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(6, 27, 73, .95), rgba(25, 56, 108, .92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px);
  box-shadow: 0 22px 58px rgba(6, 27, 73, .16);
  overflow: hidden;
}

.gsee-job-hero::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 38px;
  width: 58px;
  height: 4px;
  border-radius: 99px;
  background: var(--gsee-red);
}

.gsee-job-kicker {
  margin-top: 26px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.gsee-job-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gsee-job-desc,
.gsee-job-desc * {
  margin-top: 18px;
  color: rgba(255,255,255,.82) !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

/* Main */
.gsee-job-card {
  min-height: 520px;
  border: 1px solid rgba(6, 27, 73, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.gsee-job-card-head {
  padding: 26px 30px;
  border-bottom: 1px solid var(--gsee-line);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.gsee-job-card-kicker {
  margin-bottom: 8px;
  color: var(--gsee-red);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.gsee-job-card-head h2 {
  margin: 0;
  color: var(--gsee-navy);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.gsee-job-widget {
  width: 100%;
  padding: 30px;
  overflow: hidden;
}

/* Reset old width */
.gsee-job-widget .w1600,
.gsee-job-widget .main {
  width: 100% !important;
  max-width: none !important;
}

/* Exact widget wrapper */
.gsee-job-widget .zxns {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Top two tabs */
.gsee-job-widget .zxnsnav {
	display:none;
 /*  display: flex !important; */
  flex-wrap: wrap;
  gap: 10px;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
}

.gsee-job-widget .zxnsnavl {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #334155 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.gsee-job-widget .zxnsnavl:hover,
.gsee-job-widget .zxnsnavl.active {
  color: #fff !important;
  border-color: var(--gsee-red) !important;
  background: var(--gsee-red) !important;
  box-shadow: 0 10px 22px rgba(230, 0, 51, .18);
}

/* Search */
.gsee-job-widget .zxnslist {
  width: 100% !important;
}

.gsee-job-widget .search {
	display:none;
  /* display: grid !important; */
  grid-template-columns: 210px 240px minmax(260px, 1fr);
  gap: 14px;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 20px !important;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  background: #fbfdff;
}

.gsee-job-widget .search .s {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
}

.gsee-job-widget .search select,
.gsee-job-widget .search input {
  width: 100% !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 44px 0 15px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #253044 !important;
  font-size: 14px !important;
  line-height: 46px !important;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.gsee-job-widget .search select:focus,
.gsee-job-widget .search input:focus {
  border-color: rgba(230, 0, 51, .46) !important;
  box-shadow: 0 0 0 4px rgba(230, 0, 51, .08);
}

.gsee-job-widget .search .s3 {
  display: flex;
}

.gsee-job-widget .shousuohezi {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 86px !important;
  height: 38px !important;
  margin: 0 !important;
  border-radius: 999px;
  background: var(--gsee-red);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.gsee-job-widget .shousuohezi::before {
  content: "Search";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  line-height: 38px;
  font-weight: 900;
}

.gsee-job-widget .shousuohezi:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(230, 0, 51, .22);
}

/* Table */
.gsee-job-widget .zxnatable {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.gsee-job-widget .zxnatable .th,
.gsee-job-widget .zxnatable .tr {
  display: grid !important;
  grid-template-columns: 1.45fr 1fr 1.05fr 1.1fr .88fr .9fr .86fr;
  align-items: stretch;
  width: 100% !important;
  margin: 0 !important;
}

.gsee-job-widget .zxnatable .th {
  background: var(--gsee-navy);
}

.gsee-job-widget .zxnatable .th .td {
  display: flex !important;
  align-items: center;
  min-height: 54px;
  padding: 13px 14px !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  border-right: 1px solid rgba(255,255,255,.12);
}

.gsee-job-widget .zxnatable .th .td:last-child {
  border-right: 0;
  justify-content: center;
}

.gsee-job-widget .zxnatable .tr {
  position: relative;
  border-top: 1px solid #edf2f8;
  background: #fff;
  transition: background .18s ease, box-shadow .18s ease;
}

.gsee-job-widget .zxnatable .tr:nth-child(odd) {
  background: #fbfdff;
}

.gsee-job-widget .zxnatable .tr:hover {
  background: #fff6f8;
  box-shadow: inset 4px 0 0 var(--gsee-red);
}

.gsee-job-widget .zxnatable .tr .td {
  display: flex !important;
  align-items: center;
  min-height: 66px;
  padding: 14px !important;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  border-right: 1px solid #edf2f8;
  word-break: break-word;
}

.gsee-job-widget .zxnatable .tr .td:first-child {
  color: var(--gsee-navy) !important;
  font-weight: 900 !important;
}

.gsee-job-widget .zxnatable .tr .td:last-child {
  justify-content: center;
  border-right: 0;
  color: var(--gsee-red) !important;
  font-weight: 900 !important;
  cursor: pointer;
}

.gsee-job-widget .zxnatable .tr .td:last-child::after {
  content: " →";
  margin-left: 4px;
  transition: transform .18s ease;
}

.gsee-job-widget .zxnatable .tr .td:last-child:hover::after {
  transform: translateX(3px);
}

/* Detail modal */
.gsee-job-widget .hm {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  padding: 54px 24px;
  background: rgba(6, 14, 30, .82);
  backdrop-filter: blur(4px);
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.gsee-job-widget .hm.gsee-job-detail-active,
.gsee-job-widget .hm[style*="display: block"],
.gsee-job-widget .hm[style*="display:block"],
.gsee-job-widget .hm[style*="display: flex"],
.gsee-job-widget .hm[style*="display:flex"] {
  display: flex !important;
}

.gsee-job-widget .ckxq {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - 108px);
  margin: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gsee-job-widget .zwxqT {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 62px;
  padding: 18px 68px 18px 24px !important;
  background: var(--gsee-navy);
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.gsee-job-widget .zwxqT span {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.gsee-job-widget .zwxqT span:hover {
  background: var(--gsee-red);
  transform: translateY(-50%) rotate(90deg);
}

.gsee-job-widget .zwxqC {
  padding: 28px 30px 34px !important;
  overflow: auto;
}

.gsee-job-widget .zwxqCtitle {
  position: relative;
  margin: 0 0 20px !important;
  padding-left: 18px;
  color: var(--gsee-navy) !important;
  font-size: 26px !important;
  line-height: 1.32 !important;
  font-weight: 900 !important;
}

.gsee-job-widget .zwxqCtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 28px;
  border-radius: 99px;
  background: var(--gsee-red);
}

.gsee-job-widget .zwxqC p {
  margin: 0 0 18px !important;
  color: #5b6678 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
}

.gsee-job-widget .zwxqC strong {
  color: var(--gsee-navy) !important;
  font-weight: 900 !important;
}

.gsee-job-widget script {
  display: none !important;
}

.gsee-job-modal-open {
  overflow: hidden !important;
}

@media (max-width: 1180px) {
  .gsee-job-container {
    width: min(1120px, calc(100vw - 40px));
  }

  .gsee-job-widget .search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsee-job-widget .search .s3 {
    grid-column: 1 / -1;
  }

  .gsee-job-widget .zxnatable {
    overflow-x: auto;
  }

  .gsee-job-widget .zxnatable .th,
  .gsee-job-widget .zxnatable .tr {
    min-width: 1040px;
  }
}

@media (max-width: 760px) {
  .gsee-job-page {
    padding: 24px 0 50px;
  }

  .gsee-job-container {
    width: calc(100vw - 28px);
  }

  .gsee-job-hero {
    min-height: 210px;
    padding: 38px 24px 30px;
    border-radius: 22px;
  }

  .gsee-job-hero::before {
    left: 24px;
    top: 28px;
  }

  .gsee-job-hero h1 {
    font-size: 32px;
  }

  .gsee-job-card {
    border-radius: 20px;
  }

  .gsee-job-card-head {
    padding: 22px;
  }

  .gsee-job-card-head h2 {
    font-size: 24px;
  }

  .gsee-job-widget {
    padding: 20px;
  }

  .gsee-job-widget .zxnsnavl {
    flex: 1 1 100%;
  }

  .gsee-job-widget .search {
    grid-template-columns: 1fr;
    padding: 18px !important;
  }

  .gsee-job-widget .search .s3 {
    grid-column: auto;
  }

  .gsee-job-widget .zxnatable {
    display: block;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .gsee-job-widget .zxnatable .th {
    display: none !important;
  }

  .gsee-job-widget .zxnatable .tr {
    display: block !important;
    min-width: 0;
    margin: 0 0 16px !important;
    padding: 18px !important;
    border: 1px solid #e4ebf3;
    border-radius: 18px;
    background: #fbfdff !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .045);
  }

  .gsee-job-widget .zxnatable .tr .td {
    display: grid !important;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 10px 0 !important;
    border-right: 0;
    border-bottom: 1px solid #edf2f8;
  }

  .gsee-job-widget .zxnatable .tr .td::before {
    content: attr(data-label);
    color: #8490a3;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    text-transform: uppercase;
  }

  .gsee-job-widget .zxnatable .tr .td:last-child {
    display: inline-flex !important;
    width: 100%;
    min-height: 40px;
    margin-top: 12px;
    padding: 0 16px !important;
    border: 0;
    border-radius: 999px;
    background: rgba(230, 0, 51, .08);
    color: var(--gsee-red) !important;
  }

  .gsee-job-widget .zxnatable .tr .td:last-child::before {
    display: none;
  }

  .gsee-job-widget .hm {
    padding: 34px 14px;
  }

  .gsee-job-widget .ckxq {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 68px);
    border-radius: 18px;
  }

  .gsee-job-widget .zwxqT {
    font-size: 18px !important;
  }

  .gsee-job-widget .zwxqC {
    padding: 22px !important;
  }

  .gsee-job-widget .zwxqCtitle {
    font-size: 22px !important;
  }
}
