.vertex-career-page,
.vertex-career-page * {
  box-sizing: border-box;
}

.vertex-career-page {
  --ink: #05060a;
  --muted: #5f6675;
  --line: #d9dce4;
  --soft: #f7f4ff;
  --violet: #765cff;
  --blue: #69a8ff;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(110deg, #fff 0%, #fff 66%, #f3fbff 100%);
  font-family: Manrope, "DM Sans", Arial, sans-serif;
}

.vertex-career-page + div[style*="font-family:Arial"] {
  display: none !important;
}

.vc-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.vc-section {
  padding: 78px 0;
}

.vc-section + .vc-section {
  padding-top: 24px;
}

.vc-kicker {
  margin-bottom: 9px;
  color: #12141b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.vc-title {
  margin: 0;
  color: #06070c;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.vc-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.vc-intro-grid {
  display: grid;
  grid-template-columns: .96fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.vc-photo {
  min-height: 312px;
  overflow: hidden;
  border-radius: 9px;
  background: #eef6fb;
}

.vc-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vc-intro-card {
  min-height: 312px;
  padding: 58px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 9px;
  background: #f7f3ff;
}

.vc-intro-card h2 {
  max-width: 520px;
  margin: 0;
  color: #05060a;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.vc-principles-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  gap: 58px;
  align-items: center;
}

.vc-accordion {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.vc-accordion-item {
  min-height: 43px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  color: #252936;
  background: #f7f3ff;
  font-size: 13px;
  font-weight: 800;
}

.vc-accordion-item:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--violet);
}

.vc-principles-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
}

.vc-principles-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vc-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.vc-value {
  min-height: 164px;
  padding: 30px 28px 0;
  border-right: 1px solid var(--line);
}

.vc-value:last-child {
  border-right: 0;
}

.vc-value-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  color: var(--violet);
}

.vc-value-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.vc-value h3 {
  margin: 0 0 14px;
  color: #171922;
  font-size: 15px;
  font-weight: 900;
}

.vc-value p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.vc-benefits {
  padding-top: 54px;
  text-align: center;
}

.vc-benefits .vc-title {
  max-width: 760px;
  margin: 0 auto;
}

.vc-benefits .vc-copy {
  max-width: 760px;
  margin: 17px auto 62px;
  font-size: 12px;
}

.vc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.vc-benefit {
  padding: 0 26px 26px;
  border-right: 1px solid var(--line);
}

.vc-benefit:last-child {
  border-right: 0;
}

.vc-benefit-dot {
  width: 18px;
  height: 18px;
  margin: 0 auto 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7aa8ff, #765cff);
  font-size: 10px;
  font-weight: 900;
}

.vc-benefit h3 {
  margin: 0 0 13px;
  color: #151821;
  font-size: 14px;
  font-weight: 900;
}

.vc-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.6;
}

.vc-positions {
  padding: 62px 0 92px;
}

.vc-positions-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 42px;
}

.vc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.vc-filter {
  min-height: 31px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9dce8;
  border-radius: 999px;
  color: #4e5565;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.vc-filter.is-active {
  min-width: 64px;
  justify-content: center;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #7ba7ff, #765cff);
}

.vc-job-list {
  border-top: 1px solid #cfd3dc;
}

.vc-job {
  position: relative;
  min-height: 165px;
  padding: 35px 110px 28px 0;
  border-bottom: 1px solid #cfd3dc;
}

.vc-job h3 {
  margin: 0 0 15px;
  color: #161923;
  font-size: 16px;
  font-weight: 900;
}

.vc-job p {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.vc-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vc-chip {
  min-height: 31px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8dce7;
  border-radius: 999px;
  color: #4c5362;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.vc-chip:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--violet);
  border-radius: 50%;
}

.vc-apply {
  position: absolute;
  right: 0;
  top: 54px;
  min-width: 74px;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(90deg, #7ba7ff, #765cff);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  .vc-intro-grid,
  .vc-principles-grid,
  .vc-positions-head {
    grid-template-columns: 1fr;
  }

  .vc-principles-photo {
    min-height: 380px;
  }

  .vc-values,
  .vc-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-value:nth-child(2),
  .vc-benefit:nth-child(2) {
    border-right: 0;
  }

  .vc-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .vc-container {
    width: min(100% - 32px, 1180px);
  }

  .vc-section,
  .vc-positions {
    padding: 54px 0;
  }

  .vc-intro-card {
    padding: 34px 24px;
  }

  .vc-values,
  .vc-benefit-grid {
    grid-template-columns: 1fr;
  }

  .vc-value,
  .vc-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vc-job {
    padding-right: 0;
  }

.vc-apply {
  position: static;
  margin-top: 18px;
  }
}

.vertex-career-page .vc-copy,
.vertex-career-page .vc-value p,
.vertex-career-page .vc-benefit p,
.vertex-career-page .vc-job p,
.vertex-career-page .vc-accordion-item,
.vertex-career-page .vc-chip,
.vertex-career-page .vc-filter {
  font-size: 16px !important;
}

.vertex-career-page .vc-value h3,
.vertex-career-page .vc-benefit h3,
.vertex-career-page .vc-job h3 {
  font-size: 18px !important;
}
