/* ===== Social Recruitment Page ===== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D22630;
  --red-dark: #8B1A24;
  --red-hover: #b81e28;
  --green: #6ABF4B;
  --blue: #4A9FD4;
  --orange: #F5A623;
  --black: #000;
  --gray: #666;
  --gray-light: #999;
  --gray-border: #e5e5e5;
  --gray-bg: #F0F0F0;
  --card-bg: #EBEBEB;
  --white: #fff;
  --sz-page-width: 1520px;
  --sz-hero-align-left: max(24px, calc((100vw - var(--sz-page-width)) / 2 + 9px));
}

html { scroll-behavior: smooth; }

body.sz-page {
  font-family: var(--font-primary);
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

.sz-container {
  width: 100%;
  max-width: var(--sz-page-width);
  margin: 0 auto;
  padding: 0;
}

/* ===== Wow ===== */
.wow { visibility: hidden; }
.animated { visibility: visible; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fadeInUp { animation: fadeInUp 0.8s both; }

/* ===== Hero ===== */
.sz-hero {
  position: relative;
  width: 100%;
  padding-top: var(--header-h);
  overflow: hidden;
}

.sz-hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.sz-hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sz-hero-swiper,
.sz-hero-swiper .swiper-wrapper,
.sz-hero-swiper .swiper-slide {
  height: 100%;
}

.sz-hero-swiper .swiper-slide {
  position: relative;
}

.sz-hero-swiper .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sz-hero-pic {
  display: block;
  width: 100%;
  height: 100%;
}

.sz-hero-pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sz-hero-pagination {
  position: absolute;
  left: var(--sz-hero-align-left);
  right: auto;
  bottom: 83px !important;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  pointer-events: auto;
  transform: none !important;
}

.sz-hero-pagination.swiper-pagination-horizontal {
  left: var(--sz-hero-align-left) !important;
  right: auto !important;
  bottom: 83px !important;
  width: auto !important;
  transform: none !important;
}

.sz-hero-pagination .swiper-pagination-bullet {
  width: 14.5px;
  height: 14.5px;
  margin: 0 6px !important;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  opacity: 1;
  border-radius: 50%;
  transition: background 0.3s;
}

.sz-hero-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0 !important;
}

.sz-hero-pagination .swiper-pagination-bullet-active {
  background: var(--white);
}

.sz-hero-copy {
  position: absolute;
  top: 20%;
  left: var(--sz-hero-align-left);
  width: 485px;
  max-width: calc(100% - 48px);
  color: var(--white);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.sz-hero-copy.is-animating {
  animation: szHeroCopyIn 0.8s both;
}

@keyframes szHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sz-hero-copy h1 {
  width: 485px;
  max-width: 100%;
  font-family: var(--font-80s);
  font-size: 68px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0;
}

.sz-hero-en {
  width: 400px;
  max-width: 100%;
  font-family: var(--font-80s);
  font-size: 44px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 16px 0 0;
  color: var(--white);
}

.sz-hero-foot {
  display: none;
}

/* ===== Section Head ===== */
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.left { text-align: left; }

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head p {
  font-size: 14px;
  color: var(--gray-light);
}

/* ===== Locations ===== */
.loc-section {
  padding: 165px 0 0;
  background: var(--white);
}

.loc-section .section-head h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.loc-section .section-head p {
  font-family: var(--font-55s);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--dark);
  margin: 0;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
}

.loc-row {
  display: contents;
}

.loc-row-5,
.loc-row-4 {
  display: contents;
}

.loc-card {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 278px;
  justify-self: center;
  height: 132px;
  background: #F2F2F2;
  border-radius: 8px;
  padding: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: background 0.35s ease, transform 0.35s ease;
  display: grid;
  grid-template-columns: calc(50% + 13.5px) calc(50% - 13.5px);
  box-sizing: border-box;
  overflow: hidden;
}

.loc-card:hover {
  z-index: 2;
  background: var(--black);
  transform: scale(1.04);
}

.loc-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
}

.loc-icon {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 105px;
  max-height: 80px;
  flex-shrink: 0;
}

.loc-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.loc-icon-active {
  opacity: 0;
  transition: opacity 0.3s;
}

.loc-icon-default {
  opacity: 1;
  transition: opacity 0.3s;
}

.loc-card:hover .loc-icon-default {
  opacity: 0;
}

.loc-card:hover .loc-icon-active {
  opacity: 1;
}

.loc-col-text {
  justify-content: flex-start;
  align-items: center;
}

.loc-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.loc-cn {
  font-family: var(--font-80s);
  font-size: 32px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  transition: color 0.3s;
}

.loc-en {
  font-family: var(--font-55s);
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000000;
  transition: color 0.3s;
}

.loc-card:hover .loc-cn,
.loc-card:hover .loc-en {
  color: #ffffff;
}

.loc-card-more {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  cursor: pointer;
}

.loc-more-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.loc-more-dots span {
  width: 14.5px;
  height: 14.5px;
  border-radius: 50%;
  background: #000000;
  transition: background 0.35s ease;
}

.loc-card-more:hover .loc-more-dots span {
  background: #ffffff;
}

/* ===== Career Areas ===== */
.career-section {
  margin-top: 184px;
  padding: 174px 0 160px;
  background: #F2F2F2;
}

.career-section .section-head {
  margin-bottom: 0;
}

.career-section .section-head h2 {
  font-family: var(--font-80s);
  font-size: 46px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.career-section .section-head p {
  font-family: var(--font-55s);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--dark);
  margin: 0;
}

.career-layout {
  display: flex;
  align-items: flex-start;
  gap: 137px;
}

.career-left {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.career-right {
  width: 1000px;
  flex-shrink: 0;
}

.career-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 0 24px;
  margin-top: 48px;
  max-width: 350px;
}

.career-tabs .tab-col {
  display: contents;
}

.tab-col {
  display: flex;
  flex-direction: column;
}

.tab-item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-family: var(--font-55s);
  font-size: 24px;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
  transition: color 0.3s;
}

.tab-item:hover { color: var(--red); }

.tab-item.active {
  font-family: var(--font-80s);
  color: var(--red);
}

.tab-item.active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 45px;
  background: var(--red);
}

.career-img {
  width: 1000px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}

.career-img img.fading { opacity: 0; }

.career-text {
  margin-top: 39px;
  transition: opacity 0.4s;
}

.career-text.fading {
  opacity: 0;
}

.career-text h3 {
  font-family: var(--font-80s);
  font-size: 32px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 19px;
}

.career-text h3 span {
  font-family: var(--font-80s);
  font-size: 32px;
  font-weight: normal;
  color: var(--black);
  margin-left: 8px;
}

.career-text p {
  font-family: var(--font-55s);
  font-size: 16px;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.9;
  margin: 0;
  text-align: justify;
}

/* ===== Process ===== */
.process-section {
  margin-top: 158px;
  padding: 0 0 80px;
  background: var(--white);
}

.process-section .section-head h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.process-section .section-head p {
  font-family: var(--font-55s);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--dark);
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 0;
}

.process-item {
  min-width: 0;
  box-sizing: border-box;
  padding-left: calc(43px / 2);
  padding-right: calc(43px / 2);
  border-right: 1px solid #D9D9D9;
}

.process-item:last-child {
  border-right: none;
}

.process-media {
  position: relative;
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}

.process-pic {
  width: 100%;
  max-width: 315px;
  height: auto;
  display: block;
}

.process-rt-icon {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 27%;
  max-width: 100px;
  height: auto;
  display: block;
  pointer-events: none;
}

.process-action {
  text-align: center;
  margin-top: 62px;
}

.btn-jobs {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 174px;
  max-width: 174px;
  height: 54px;
  max-height: 54px;
  padding: 0 16px;
  background: #DA291C;
  color: var(--white);
  font-family: var(--font-55s);
  font-size: 16px;
  font-weight: normal;
  border-radius: 27px;
  white-space: nowrap;
  transition: none;
}

.btn-jobs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #680f14;
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0.35s;
}

.btn-jobs:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
  border-right-color: transparent;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0.35s;
}

.btn-jobs:not(:hover)::before {
  transform: scaleX(0);
  transform-origin: left center;
  border-right-color: #fff;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0s;
}

.btn-jobs span,
.btn-jobs-arrow {
  position: relative;
  z-index: 1;
}

.btn-jobs-arrow {
  width: 18px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.btn-jobs:hover {
  background: #DA291C;
  transform: none;
}

/* ===== Contact Title (社招页) ===== */
@media (min-width: 769px) {
  .sz-page .contact-title {
    padding-top: 35px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1600px) {
  .loc-section .sz-container {
    max-width: none;
    width: 100%;
    padding-left: clamp(24px, 3vw, 48px);
    padding-right: clamp(24px, 3vw, 48px);
    box-sizing: border-box;
  }

  .loc-grid {
    gap: clamp(12px, 1.4vw, 20px) clamp(8px, 1vw, 14px);
  }

  .loc-card {
    width: 100%;
    max-width: 278px;
    height: clamp(108px, 8.25vw, 132px);
  }

  .loc-icon {
    width: clamp(64px, 5.5vw, 88px);
    height: clamp(64px, 5.5vw, 88px);
  }

  .loc-cn {
    font-size: clamp(22px, 2vw, 28px);
  }

  .loc-en {
    font-size: clamp(14px, 1.2vw, 18px);
  }
}

@media (max-width: 1520px) {
  .career-section .sz-container {
    max-width: none;
    width: 100%;
    padding-left: clamp(24px, 3vw, 48px);
    padding-right: clamp(24px, 3vw, 48px);
    box-sizing: border-box;
  }

  .process-section .sz-container {
    max-width: none;
    width: 100%;
    padding-left: clamp(15px, 3vw, 48px);
    padding-right: clamp(15px, 3vw, 48px);
    box-sizing: border-box;
  }

  .career-layout {
    gap: clamp(24px, 4vw, 80px);
  }

  .career-left {
    flex: 0 1 auto;
    min-width: 280px;
    max-width: 380px;
    width: auto;
  }

  .career-right {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .career-img {
    width: 100%;
    max-width: min(1000px, 100%);
    height: auto;
    aspect-ratio: 660 / 400;
  }

  .career-tabs {
    max-width: 100%;
  }

  .tab-item {
    white-space: nowrap;
    font-size: clamp(18px, 1.6vw, 24px);
  }

  .career-section .section-head h2 {
    font-size: clamp(32px, 3.2vw, 46px);
  }

  .career-section .section-head p {
    font-size: clamp(18px, 1.8vw, 24px);
  }

  .career-text h3,
  .career-text h3 span {
    font-size: clamp(24px, 2.4vw, 32px);
  }

  .career-text p {
    font-size: clamp(14px, 1.4vw, 16px);
  }
}
@media screen and (min-width: 1368px) and (max-width: 1500px) {
  .sz-hero-copy {
    top:20%;
  }
  .sz-hero-copy h1 {
    font-size: 55px;
  }
  .sz-hero-en {
    font-size: 42px;
    max-width: 380px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1368px) {
  .sz-hero-copy h1 {
    font-size: 50px;
  }
  .sz-hero-en {
    font-size: 36px;
    max-width: 350px;
  }
}
@media (max-width: 1024px) {
  .sz-page .sz-container,
  .sz-page .contact-title .container,
  .sz-page .contact-bar .container,
  .sz-page .footer-bottom .container {
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
  }

  .sz-page .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sz-hero-banner {
    height: auto;
    overflow: visible;
  }

  .sz-hero-swiper,
  .sz-hero-swiper .swiper-wrapper,
  .sz-hero-swiper .swiper-slide {
    height: auto;
  }

  .sz-hero-swiper .swiper-slide {
    display: block;
  }

  .sz-hero-swiper .swiper-slide .sz-hero-copy {
    display: none;
  }

  .sz-hero-foot {
    display: block;
    background: var(--white);
  }

  .sz-hero-copy--fixed {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 25px 14px 0;
    color: var(--black);
    background: var(--white);
    box-sizing: border-box;
    opacity: 1;
    pointer-events: auto;
  }

  .sz-hero-copy--fixed br {
    display: none;
  }

  .sz-hero-copy--fixed h1 {
    width: 100%;
    max-width: none;
    font-family: var(--font-80s);
    font-size: 28px;
    font-weight: normal;
    line-height: 1.2;
    color: var(--black);
  }

  .sz-hero-copy--fixed .sz-hero-en {
    width: 100%;
    max-width: none;
    font-family: var(--font-80s);
    font-size: 26px;
    font-weight: normal;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--black);
  }

  .sz-hero-foot .sz-hero-pagination {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto;
    margin: 25px 0 0;
    padding: 0 14px 24px;
    line-height: 0;
    transform: none !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    pointer-events: auto;
  }

  .sz-hero-foot .sz-hero-pagination.swiper-pagination-horizontal {
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    transform: none !important;
  }

  .sz-hero-foot .sz-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background: transparent;
    border: 1px solid var(--black);
    opacity: 1;
  }

  .sz-hero-foot .sz-hero-pagination .swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
  }

  .sz-hero-foot .sz-hero-pagination .swiper-pagination-bullet-active {
    background: var(--black);
    border-color: var(--black);
  }

  .sz-hero-pic {
    position: relative;
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .sz-hero-pic img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .loc-section {
    padding-top: 60px;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .loc-section .section-head h2 {
    font-family: var(--font-80s);
    font-size: 26px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .loc-section .section-head p {
    font-family: var(--font-55s);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
  }

  .loc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 1vw, 14px);
  }

  .loc-row,
  .loc-row-5,
  .loc-row-4 {
    display: contents;
  }

  .loc-card-more {
    display: none;
  }

  .loc-card {
    width: 100%;
    max-width: 278px;
    justify-self: center;
    height: clamp(60px, 15vw, 132px);
  }

  .loc-icon {
    width: clamp(35px, 7vw, 72px);
    height: clamp(20px, 7vw, 72px);
  }

  .loc-cn {
    font-size: clamp(16px, 2.5vw, 26px);
  }

  .loc-en {
    font-size: clamp(12px, 1.8vw, 18px);
  }
  .career-section {
    background: #ffffff;
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .career-section .section-head h2 {
    font-size: clamp(26px, 3.2vw, 46px);
  }
  .career-section .section-head p {
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.4;
  }
  .career-left {
    flex: 0 1 auto;
    min-width: min(240px, 32vw);
    max-width: 380px;
  }
  .process-section {
    margin-top: 50px;
    padding-bottom: 0;
  }
  .process-section .sz-container {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }
  .process-section .section-head h2 {
    font-size: clamp(26px, 4.68vw, 48px);
    margin-bottom: 0;
  }
  .process-section .section-head p {
    font-size: clamp(16px, 4vw, 24px);
    line-height: 1.4;
  }
  .process-grid {
    --process-line-gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    margin: 0;
    column-gap: 0;
    row-gap: 0;
  }

  .process-item {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px;
    border: none;
    box-sizing: border-box;
  }

  .process-item:last-child {
    padding-right: 15px;
    border-right: none;
  }

  .process-item:nth-child(1)::after,
  .process-item:nth-child(3)::after {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    background: #D9D9D9;
  }

  .process-item:nth-child(1)::after {
    top: 15px;
    bottom: calc(15px + var(--process-line-gap));
  }

  .process-item:nth-child(3)::after {
    top: calc(15px + var(--process-line-gap));
    bottom: 15px;
  }

  .process-item:nth-child(1)::before,
  .process-item:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #D9D9D9;
  }

  .process-item:nth-child(1)::before {
    left: 15px;
    right: calc(15px + var(--process-line-gap));
  }

  .process-item:nth-child(2)::before {
    left: calc(15px + var(--process-line-gap));
    right: 15px;
  }

  .process-media {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .process-pic {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 315 / 230;
    object-fit: contain;
    display: block;
  }

  .process-rt-icon {
    width: clamp(40px, 22%, 70px);
  }
  .btn-jobs {
    width:  clamp(160px, 4.68vw, 174px);
    height: clamp(50px, 4.68vw, 54px);
  }
  .process-action {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .wechat-modal {
    background: rgb(0 0 0 / 88%);
  }
  .sz-hero-pic {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .loc-text {
    gap: 2px;
  }
  .loc-en {
    white-space: nowrap;
    transform: scale(0.9);
  }
  .career-section .section-head h2 {
    margin-bottom: 0;
  }
  .career-layout {
    flex-direction: column;
    gap: 32px;
  }

  .career-left {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .career-right {
    max-width: 100%;
    width: 100%;
  }

  .career-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: none;
    width: 95%;
    margin: 32px auto 0;
  }

  .career-tabs .tab-col {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
  }

  .career-tabs .tab-col:nth-child(1) {
    align-items: flex-start;
  }

  .career-tabs .tab-col:nth-child(2) {
    align-items: center;
  }

  .career-tabs .tab-col:nth-child(3) {
    align-items: flex-end;
  }

  .career-tabs .tab-col:nth-child(2) .tab-item {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .career-tabs .tab-col:nth-child(3) .tab-item {
    text-align: left;
  }

  .tab-item {
    font-size: clamp(16px, 3.8vw, 22px);
    padding: 10px 0;
  }
  .tab-item.active::before {
    width: 2px;
    height: 25px;
    left: -10px;
  }  
}

@media (max-width: 599px) {
  .loc-card {
    grid-template-columns: auto 1fr;
    column-gap: 5px;
    padding: 0 12px;
    box-sizing: border-box;
    height: clamp(60px, 16vw, 132px);
  }

  .loc-col-icon {
    width: auto;
    max-width: none;
    justify-content: flex-start;
  }

  .loc-col-text {
    max-width: none;
    justify-content: flex-start;
  }

  .loc-icon {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 24px; }
}
