:root {
  --voc-bg: #221818;
  --voc-text: #e7e7e7;
  --voc-muted: #d6d8d9;
  --voc-brand: #b81c22;
  --voc-divider: rgba(231, 231, 231, 0.18);
  --voc-inner: 93.75vw;
  --about-brand: #b81c22;
  --about-inner: 83.333vw;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-inner: 83.333vw;
}

body.zs-vocation {
  background: var(--voc-bg);
  color: var(--voc-text);
}

.vocation-page {
  width: 100%;
}

.zs-inner {
  width: var(--zs-inner);
  margin: 0 auto;
  padding: 0 2.083vw;
  box-sizing: border-box;
}

.vocation-inner {
  width: var(--voc-inner);
  margin: 0 auto;
  padding: 0 3.125vw;
  box-sizing: border-box;
}

.vocation-hero {
  position: relative;
  width: 100%;
  min-height: 56.25vw;
  padding-top: 4.062vw;
  overflow: hidden;
  background: var(--voc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vocation-hero-bg {
  position: absolute;
  inset: 0;
}

.vocation-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vocation-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 10, 10, 0.52) 0%, rgba(18, 10, 10, 0.2) 22%, rgba(18, 10, 10, 0.58) 58%, rgba(34, 24, 24, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.vocation-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.458vw;
  color: #ffffff;
  padding-top: 6.25vw;
  padding-bottom: 6.25vw;
}

.vocation-hero-title {
  margin: 0;
  line-height: 1.4;
}

.vocation-hero-desc {
  margin: 0;
  width: 55.52vw;
  color: rgba(231, 231, 231, 0.85);
  line-height: 1.7;
}

.vocation-list {
  background: var(--voc-bg);
  position: relative;
}

.vocation-list .vocation-inner {
  width: 100%;
  padding: 0 3.125vw;
}

.vocation-item {
  display: grid;
  grid-template-columns: minmax(0, 34.3333%) minmax(0, 61.1667%);
  column-gap: 4.5%;
  align-items: stretch;
  padding: 6.25vw 0;
  position: sticky;
  left: 0;
  top: 0;
  background: #221818;
  border-top: 0.052vw solid #9c9c9c;
}

.vocation-item:first-child {
  border-top: none;
}

.vocation-item-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  min-height: inherit;
  padding: 3.229vw 0 2.76vw 0.208vw;
  box-sizing: border-box;
}

.vocation-item-head {
  display: flex;
  align-items: center;
  gap: 0.833vw;
  color: var(--voc-text);
  letter-spacing: -0.093vw;
}

.vocation-item-head h2,
.vocation-item-head .vocation-item-num {
  margin: 0;
  line-height: 1.5;
}

.vocation-item-title {
  margin: 0;
}

.vocation-item-desc {
  margin: 2.343vw 0 0;
  color: var(--voc-text);
  line-height: 1.5;
  max-width: 31.875vw;
}

.vocation-item-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.52vw;
  width: 8.333vw;
  height: 2.604vw;
  margin-top: 2.343vw;
  padding: 0 2.291vw;
  border-radius: 52.031vw;
  background: var(--voc-brand);
  color: #ffffff;
  align-self: flex-start;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.vocation-item-cta span {
  white-space: nowrap;
}

.vocation-item-cta:hover {
  background: #ffffff;
  color: var(--voc-brand);
  box-shadow: 0 0.468vw 0.364vw rgba(0, 0, 0, 0.25);
}

.vocation-cta-arrow {
  width: 0.52vw;
  height: 0.52vw;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.vocation-cta-arrow::before {
  content: "";
  position: absolute;
  inset: 0.052vw;
  border-top: 0.078vw solid currentColor;
  border-right: 0.078vw solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.vocation-item-tabs {
  margin-top: auto;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.833vw 2.343vw;
  align-items: center;
}

.vocation-item-tab {
  color: var(--voc-text);
  line-height: 1.5;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.vocation-item-tab span {
  font-size: 0.833vw !important;
  line-height: 1.25vw;
  font-weight: 300 !important;
}

.vocation-item-tab.is-active {
  color: var(--voc-brand);
}

.vocation-item-tab.is-active span {
  font-weight: 600 !important;
}

.vocation-item-tab:hover {
  color: var(--voc-brand);
}

.vocation-item-visual {
  position: relative;
  width: 100%;
  height: 40.833vw;
  min-height: 40.833vw;
  border-radius: 0.416vw;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.vocation-item-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.vocation-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.vocation-divider {
  height: 0.052vw;
  background: var(--voc-divider);
  width: 100%;
  margin: 0;
}

.about-container {
  width: var(--about-inner);
  margin: 0 auto;
  padding: 0 2.083vw;
  box-sizing: border-box;
}

.about-contact {
  position: relative;
  min-height: 22.343vw;
}

.about-contact-bg {
  position: absolute;
  inset: 0;
}

.about-contact-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-contact-inner {
  position: relative;
  z-index: 1;
  min-height: 22.343vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.01vw;
}

.about-contact-logo {
  width: 5.989vw;
  height: 1.562vw;
  object-fit: contain;
}

.about-contact-inner h2,
.about-contact-inner p {
  margin: 0;
}

.about-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.about-contact-inner h2 {
  color: #e7e7e7;
  line-height: 1;
}

.about-contact-inner p {
  color: #b2afad;
  line-height: 1;
}

.about-contact-btn {
  min-width: 7.812vw;
  height: 2.5vw;
  border-radius: 1.875vw;
  background: var(--about-brand);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.416vw;
  padding: 0 1.927vw;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.about-contact-arrow {
  width: 0.729vw;
  height: 0.729vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.25s ease;
}

.about-contact-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-contact-btn:hover {
  background: #ffffff;
  color: var(--about-brand);
  box-shadow: 0 0.52vw 1.25vw rgba(0, 0, 0, 0.2);
  transform: translateY(-0.104vw);
}

.about-contact-btn:hover .about-contact-arrow {
  filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
}

.zs-vocation .hero-nav {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.041vw);
  -webkit-backdrop-filter: blur(1.041vw);
}

.page-shell {
  overflow: visible;
}


/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --voc-inner: 92%;
    --about-inner: 92%;
    --zs-inner: 92%;
  }

  .vocation-page {
    width: 100%;
  }

  .zs-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .vocation-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .vocation-hero {
    width: 100%;
    min-height: 480px;
    padding-top: 56px;
    display: flex;
  }

  .vocation-hero-bg img {
    width: 100%;
    height: 100%;
  }

  .vocation-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(18, 10, 10, 0.52) 0%, rgba(18, 10, 10, 0.2) 22%, rgba(18, 10, 10, 0.58) 58%, rgba(34, 24, 24, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  }

  .vocation-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .vocation-hero-desc {
    width: 100%;
    max-width: 100%;
  }

  .vocation-list .vocation-inner {
    width: 100%;
    padding: 0 16px;
  }

  .vocation-item {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
    padding: 48px 0;
    border-top: 1px solid #9c9c9c;
  }

  .vocation-item-text {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .vocation-item-head {
    display: flex;
    gap: 12px;
    letter-spacing: -0.5px;
  }

  .vocation-item-desc {
    margin: 20px 0 0;
    max-width: 100%;
  }

  .vocation-item-cta {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: auto;
    min-width: 120px;
    min-height: 44px;
    height: auto;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 999px;
    align-self: flex-start;
  }

  .vocation-cta-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .vocation-cta-arrow::before {
    inset: 1px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
  }

  .vocation-item-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 24px;
  }

  .vocation-item-tab span {
    font-size: 14px !important;
    line-height: 20px;
  }

  .vocation-item-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .vocation-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vocation-divider {
    height: 1px;
    width: 100%;
  }

  .about-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .about-contact {
    min-height: auto;
  }

  .about-contact-bg img {
    width: 100%;
    height: 100%;
  }

  .about-contact-inner {
    min-height: auto;
    padding: 48px 4%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .about-contact-logo {
    width: 92px;
    height: auto;
  }

  .about-contact-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-contact-btn {
    min-width: 140px;
    min-height: 44px;
    height: auto;
    border-radius: 36px;
    display: inline-flex;
    gap: 8px;
    padding: 12px 28px;
  }

  .about-contact-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: flex;
  }

  .about-contact-arrow img {
    width: 100%;
    height: 100%;
  }

  .zs-vocation .hero-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}
