.page {
  width: 1920px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.join-section-title {
  line-height: 1.25;
}

.join-section-title--gradient {
  background: linear-gradient(90deg, #1b8c6c 0%, #042959 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.join-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b8c6c;
  text-decoration: none;
  line-height: 1.6;
  transition: transform 0.25s ease;
}

.join-inline-link span {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.join-inline-link-arrow {
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}

.join-inline-link-arrow img {
  width: 16px;
  height: 16px;
  display: block;
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(42%) sepia(70%) saturate(543%) hue-rotate(131deg) brightness(91%) contrast(83%);
}

.join-inline-link:hover {
  gap: 10px;
}

.join-inline-link:hover span {
  transform: translateY(-2px);
}

/* hero */
.join-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #0e1117;
  display: flex;
  justify-content: center;
}

.join-hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url('../img/joinus-banner.png') center center / contain no-repeat;
  z-index: 0;
}

.join-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 17, 23, 0.6) 0%, rgba(20, 35, 68, 0.6) 100%);
  z-index: 1;
}

.join-hero-slogan {
  position: absolute;
  left: calc(50% - 782px);
  top: 404px;
  z-index: 2;
  padding: 0 3px;
  pointer-events: none;
}

.join-hero-slogan img {
  display: block;
  width: 298px;
}

.join-hero-inner {
  position: relative;
  z-index: 3;
  width: 1440px;
  padding: 80px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-sizing: border-box;
}

.join-hero-copy {
  width: 689px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.join-hero-breadcrumb {
  color: #fff;
  line-height: 1.7;
  font-weight: 300;
  font-variation-settings: "wght" 300;
}

.join-hero-title {
  width: 689px;
  max-width: 100%;
  color: #fff;
  line-height: 1.1;
  font-weight: 280;
  font-variation-settings: "wght" 280;
}

.join-hero-cta {
  width: 234px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  align-self: flex-end;
  color: #ffffff;
  line-height: 1;
  border-radius: 4px;
  overflow: hidden;
}

.join-hero-cta-text {
  width: 182px;
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #23f177 0%, #14b6a8 100%);
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  transition: background 0.32s ease, transform 0.32s ease;
}

.join-hero-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0db9b7;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  transform-origin: center;
  transition: background 0.32s ease, font-size 0.28s ease;
}

.join-hero-cta-arrow img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  transform: rotate(135deg) scale(1);
  transition: transform 0.28s ease;
}

.join-hero-cta:hover .join-hero-cta-text {
  background: linear-gradient(90deg, #14b6a8 0%, #23f177 100%);
  transform: translateX(4px);
}

.join-hero-cta:hover .join-hero-cta-arrow {
  background: #23f177;
  font-size: 22px;
}

.join-hero-cta:hover .join-hero-cta-arrow img {
  transform: rotate(135deg) scale(1.3);
}

/* positions */
.join-positions-section {
  padding: 160px 0;
}

.join-positions-inner {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.join-positions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 下拉菜单超出标题行，不能用 hidden，否则列表被裁切 */
  overflow: visible;
  position: relative;
  z-index: 2;
}

.join-section-title-wrap {
  width: 718px;
}

.join-filter-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.join-filter {
  position: relative;
  flex-shrink: 0;
}

.join-filter-button {
  min-width: 162px;
  width: 100%;
  height: 42px;
  padding: 0 12px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #d0d3d9;
  border-radius: 4px;
  background: #fff;
  color: #042959;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.join-filter-button--wide {
  min-width: 187px;
}

.join-filter-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.join-filter-arrow img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(84%) sepia(8%) saturate(206%) hue-rotate(180deg) brightness(88%) contrast(88%);
  transition: filter 0.25s ease;
}

.join-filter-button:hover {
  border-color: #0fa3a3;
  color: #0fa3a3;
}

.join-filter-button:hover .join-filter-arrow img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(77%) saturate(483%) hue-rotate(133deg) brightness(91%) contrast(92%);
}

.join-filter.is-open .join-filter-button {
  border-color: #0fa3a3;
  color: #0fa3a3;
}

.join-filter.is-open .join-filter-arrow {
  transform: rotate(180deg);
}

.join-filter.is-open .join-filter-arrow img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(77%) saturate(483%) hue-rotate(133deg) brightness(91%) contrast(92%);
}

.join-filter-menu {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d0d3d9;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(4, 41, 89, 0.12);
  max-height: 240px;
  overflow-y: auto;
}

.join-filter-menu-item {
  margin: 0;
  padding: 0;
}

.join-filter-option {
  width: 100%;
  padding: 10px 20px;
  display: block;
  text-align: left;
  border: none;
  background: transparent;
  color: #042959;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.join-filter-option:hover,
.join-filter-option:focus-visible {
  background: rgba(15, 163, 163, 0.08);
  color: #0fa3a3;
  outline: none;
}

.join-filter-option.is-selected {
  color: #0fa3a3;
  font-weight: 600;
}

.join-position-groups {
  width: 100%;
  position: relative;
  z-index: 1;
}

.join-position-group-head {
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-top: 2px solid #d0d3d9;
  cursor: pointer;
  transition: color 0.25s ease;
}

.join-position-group-head--last {
  border-bottom: 2px solid #d0d3d9;
}

.join-position-group-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-position-group-title {
  color: #042959;
  line-height: 1.3;
}

.join-position-group-count {
  line-height: 1.35;
  background: linear-gradient(90deg, #23d972 0%, #0fa3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.join-position-group-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #042959;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.55s ease, background 0.55s ease;
}

.join-position-group-icon::before,
.join-position-group-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #042959;
  transform: translate(-50%, -50%);
  transition: background 0.55s ease, opacity 0.55s ease;
}

.join-position-group-icon::before {
  width: 14px;
  height: 1px;
}

.join-position-group-icon::after {
  width: 1px;
  height: 14px;
}

.join-position-group-icon.is-open::after {
  opacity: 0;
}

.join-position-list {
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
}

.join-position-group.is-open .join-position-list {
  opacity: 1;
}

.join-position-item {
  padding: 16px;
  border-top: 1px dashed #d0d3d9;
  display: flex;
  align-items: center;
  gap: 80px;
  text-decoration: none;
  background: transparent;
  transition: background 0.25s ease;
}

.join-position-location {
  width: 143px;
  color: #042959;
  line-height: 1.6;
  flex-shrink: 0;
  text-align: left;
}

.join-position-role {
  flex: 1;
  min-width: 0;
  color: #042959;
  line-height: 1.6;
  text-align: left;
  transition: color 0.25s ease;
}

.join-position-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1b8c6c;
  line-height: 1.6;
  white-space: nowrap;
  cursor: pointer;
}

.join-position-apply span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.join-position-apply span img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) saturate(100%) invert(42%) sepia(70%) saturate(543%) hue-rotate(131deg) brightness(91%) contrast(83%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.join-position-apply:hover span {
  transform: translateX(2px);
}

.join-position-item:hover {
  background: #f0f2f5;
}

.join-position-item:hover .join-position-role {
  color: #1b8c6c;
}

.join-position-item:hover .join-position-apply span img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(70%) saturate(543%) hue-rotate(131deg) brightness(91%) contrast(83%);
}

.join-position-group-head:hover .join-position-group-icon {
  border-color: #23d972;
}

.join-position-group-head:hover .join-position-group-icon::before,
.join-position-group-head:hover .join-position-group-icon::after {
  background: #23d972;
}

/* job modal */
.join-job-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.join-job-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(4, 41, 89, 0.18);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.join-job-modal-panel {
  position: relative;
  width: 1440px;
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4, 41, 89, 0.18);
  opacity: 0;
  transform: translateY(80px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.join-job-modal.is-visible {
  pointer-events: auto;
}

.join-job-modal.is-visible .join-job-modal-mask {
  opacity: 1;
}

.join-job-modal.is-visible .join-job-modal-panel {
  opacity: 1;
  transform: translateY(0);
}

.join-job-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.join-job-modal-close img {
  width: 40px;
  height: 40px;
  display: block;
  transition: none;
}

.join-job-modal-close:hover {
  background: #032451;
}


.join-job-modal-inner {
  display: flex;
  height: 800px;
  align-items: stretch;
  gap: 80px;
  padding: 80px;
  box-sizing: border-box;
}

.join-job-modal-detail {
  width: 720px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  min-height: 0;
}

.join-job-modal-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-job-modal-title {
  color: #042959;
  line-height: 1.3;
}

.join-job-modal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d0d3d9;
  flex-wrap: wrap;
}

.join-job-modal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #042959;
}

.join-job-modal-meta-item img {
  width: 24px;
  height: 24px;
  display: block;
}

.join-job-modal-meta-dot {
  display: none;
}

.join-job-modal-meta-dot::after {
  display: none;
}

.join-job-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  color: #042959;
  line-height: 1.6;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.join-job-modal-body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.join-job-modal-body p,
.join-job-modal-body ul,
.join-job-modal-body h4 {
  margin: 0;
}

.join-job-modal-body p + p,
.join-job-modal-body p + h4,
.join-job-modal-body ul + h4,
.join-job-modal-body h4 + ul {
  margin-top: 20px;
}

.join-job-modal-body ul {
  padding-left: 22px;
}

.join-job-modal-body li + li {
  margin-top: 8px;
}

.join-job-modal-body h4 {
  color: #042959;
  line-height: 1.6;
}

.join-job-modal-form-wrap {
  flex: 1 0 0;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 10px;
  box-sizing: border-box;
}

.join-job-modal-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.join-job-modal-form-title {
  color: #042959;
  line-height: 1.7;
  white-space: nowrap;
}

.join-job-modal-required-note {
  color: #5a657c;
  line-height: 1.6;
  white-space: nowrap;
}

.join-job-modal-required-note span,
.join-job-field-label span,
.join-job-upload-warning {
  color: #ff4d4f;
}

.join-job-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.join-job-modal-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.join-job-field,
.join-job-upload {
  border: 1px solid #d0d3d9;
  border-radius: 4px;
  background: #fff;
  padding: 8px 16px;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.join-job-field {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: 64px;
}

.join-job-field--full {
  width: 100%;
}

.join-job-field-label {
  color: #042959;
  line-height: 1.6;
  white-space: nowrap;
}

.join-job-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0;
  color: #042959;
  line-height: 1.6;
  background: transparent;
  font-family: inherit;
  caret-color: #132636;
}

.join-job-field:focus-within {
  border-color: #23d972;
  box-shadow: inset 0 0 0 1px #23d972;
}

.join-job-upload {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.join-job-upload:hover,
.join-job-upload:focus-within {
  border-color: #23d972;
  box-shadow: inset 0 0 0 1px #23d972;
}

.join-job-upload-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  grid-template-rows: auto auto;
  gap: 10px;
  align-items: start;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.join-job-upload-desc {
  grid-column: 1;
  grid-row: 2;
  color: #5a657c;
  line-height: 1.6;
  white-space: nowrap;
}

.join-job-upload-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: center;
}

.join-job-upload-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.join-job-upload:hover .join-job-upload-icon img,
.join-job-upload:focus-within .join-job-upload-icon img,
.join-job-upload.is-filled .join-job-upload-icon img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(63%) saturate(886%) hue-rotate(124deg) brightness(90%) contrast(86%);
}

.join-job-upload-file {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.join-job-upload.is-filled .join-job-upload-desc,
.join-job-upload.is-filled .join-job-upload-icon {
  display: none;
}

.join-job-upload.is-filled .join-job-upload-file {
  display: flex;
}

.join-job-upload.is-filled {
  border-color: #d0d3d9;
  box-shadow: none;
}

.join-job-upload.is-filled .join-job-upload-trigger {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0;
  cursor: default;
}

.join-job-upload.is-filled .join-job-field-label {
  grid-column: 1;
  grid-row: 1;
}

.join-job-upload-file-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.join-job-upload-file-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.join-job-upload-file-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.join-job-upload-file-name {
  min-width: 0;
  color: #142344;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.join-job-upload-file-remove {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.join-job-upload-file-remove img {
  width: 24px;
  height: 24px;
  display: block;
  transition: filter 0.45s ease;
  filter: none;
}

.join-job-upload-file-remove:hover img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(7497%) hue-rotate(358deg) brightness(104%) contrast(118%);
}

.join-job-upload-warning {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.6;
}

.join-job-upload-warning::before {
  content: '!';
  width: 14px;
  height: 14px;
  border: 1px solid #ff4d4f;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.join-job-modal-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.join-job-modal-submit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: gap 0.3s ease;
}

.join-job-modal-submit-text {
  width: 182px;
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #1b8c6c 0%, #042959 100%);
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}

.join-job-modal-submit-arrow {
  width: 48px;
  height: 48px;
  border: 4px solid #042959;
  border-left: none;
  border-radius: 0 4px 4px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #042959;
  padding-right: 4px;
  box-sizing: border-box;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.join-job-modal-submit-arrow img {
  width: 16px;
  height: 16px;
  display: block;
  transform: rotate(0deg) scale(1);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(14%) sepia(65%) saturate(1900%) hue-rotate(193deg) brightness(93%) contrast(98%);
}

.join-job-modal-submit:hover {
  gap: 0;
}

.join-job-modal-submit:hover .join-job-modal-submit-text {
  transform: translateX(4px);
  background: linear-gradient(90deg, #0fa3a3 0%, #23d972 100%);
}

.join-job-modal-submit:hover .join-job-modal-submit-arrow {
  background: #23d972;
  border-color: #23d972;
  color: #fff;
}

.join-job-modal-submit:hover .join-job-modal-submit-arrow img {
  transform: rotate(45deg) scale(1.3);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7437%) hue-rotate(237deg) brightness(115%) contrast(108%);
}

.join-job-modal-mail {
  color: #042959;
  line-height: 1.6;
  width: 100%;
  white-space: normal;
}

.join-job-modal-mail a {
  color: #042959;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  white-space: nowrap;
}

.join-job-modal-share {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}

.join-job-modal-share-label {
  color: #042959;
  line-height: 1.6;
  white-space: nowrap;
}

.join-job-modal-share-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.join-job-modal-share-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.join-job-modal-share-link img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(65%) saturate(1900%) hue-rotate(193deg) brightness(93%) contrast(98%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.join-job-modal-share-link:hover img {
  transform: translateY(-1px);
}

.join-job-modal-share-link:nth-child(1):hover img,
.join-job-modal-share-link:nth-child(2):hover img,
.join-job-modal-share-link:nth-child(3):hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(72%) saturate(704%) hue-rotate(128deg) brightness(93%) contrast(87%);
}

.join-job-modal-share-link:nth-child(4):hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(72%) saturate(704%) hue-rotate(128deg) brightness(93%) contrast(87%);
}

/* benefits */
.join-benefits-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: url('../img/group.svg') center center / cover no-repeat;
}

.join-benefits-bg {
  position: absolute;
  inset: 0;
  background: url('../img/group.svg') center center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.join-benefits-inner {
  position: relative;
  z-index: 1;
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.join-benefits-copy {
  width: 312px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

.join-benefits-eyebrow {
  color: #fff;
  line-height: 1.7;
}

.join-benefits-title {
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
}

.join-benefits-desc {
  color: #fff;
  line-height: 1.6;
  margin-top: 24px;
}

.join-benefits-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.join-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  text-align: center;
}

.join-benefit-card-head {
  width: 100%;
  min-height: 80px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  box-sizing: border-box;
}

.join-benefit-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.join-benefit-name,
.join-benefit-text {
  color: #fff;
  line-height: 1.6;
}

.join-benefit-text {
  max-width: 100%;
  text-transform: capitalize;
}

/* about */
.join-about-section {
  padding: 160px 0;
}

.join-about-inner {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.join-about-media {
  position: relative;
  width: 680px;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.join-about-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.join-about-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.join-about-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.join-about-image.is-active {
  opacity: 1;
  z-index: 1;
}

.join-about-carousel {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 5;
}

.join-about-carousel-arrow {
  width: 44px;
  height: 24px;
  padding: 0 10px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.join-about-carousel-arrow img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7437%) hue-rotate(237deg) brightness(115%) contrast(108%);
}

.join-about-carousel-arrow--prev img {
  transform: rotate(180deg);
}

.join-about-carousel-text {
  color: #fff;
  line-height: 1.6;
}

.join-about-link {
  align-self: flex-end;
  margin-top: 4px;
  justify-content: flex-end;
}

.join-about-link-arrow {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.join-about-link-arrow img {
  width: 16px;
  height: 16px;
  display: block;
  transform: rotate(0deg);
  filter: brightness(0) saturate(100%) invert(42%) sepia(70%) saturate(543%) hue-rotate(131deg) brightness(91%) contrast(83%);
}

.join-about-link:hover .join-about-link-arrow {
  transform: translateX(2px);
}

.join-about-copy {
  flex: 1;
  min-width: 0;
  height: 520px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.join-about-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-about-label {
  color: #5a657c;
  line-height: 1.7;
}

.join-about-heading {
  color: #042959;
  line-height: 1.3;
}

.join-about-text {
  color: #042959;
  line-height: 1.6;
}

/* offices */
.join-offices-section {
  padding: 80px 0;
  background: #f0f2f5;
}

.join-offices-inner {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 120px;
}

.join-offices-copy {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.join-offices-desc {
  color: #5a657c;
  line-height: 1.6;
}

.join-offices-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.join-office-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-office-image {
  width: 100%;
  aspect-ratio: 450 / 253;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.join-office-name {
  color: #042959;
  line-height: 1.35;
}

.join-office-address {
  color: #042959;
  line-height: 1.6;
}

/* responsive */
@media screen and (max-width: 768px) {
  .join-hero {
    height: auto;
    min-height: 320px;
  }

  .join-hero::before {
    top: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  .join-hero-slogan {
    display: none;
  }

  .join-hero-inner,
  .join-positions-inner,
  .join-benefits-inner,
  .join-about-inner,
  .join-offices-inner {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .join-hero-inner {
    padding-top: 120px;
    padding-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .join-hero-copy,
  .join-section-title-wrap,
  .join-benefits-copy,
  .join-offices-copy,
  .join-about-media {
    width: 100%;
  }

  .join-hero-title {
    width: 100%;
    font-size: 28px;
  }

  .join-positions-section,
  .join-about-section {
    padding: 80px 0;
  }

  .join-positions-inner {
    gap: 40px;
  }

  .join-positions-head,
  .join-about-inner,
  .join-offices-inner,
  .join-benefits-inner {
    flex-direction: column;
    gap: 32px;
  }

  .join-filter-group {
    width: 100%;
    flex-direction: column;
  }

  .join-filter {
    width: 100%;
  }

  .join-filter-button,
  .join-filter-button--wide {
    width: 100%;
    min-width: 0;
  }

  .join-position-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .join-job-modal-panel {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .join-job-modal-close {
    top: 16px;
    right: 16px;
  }

  .join-job-modal-inner {
    height: auto;
    padding: 56px 24px 24px;
    flex-direction: column;
    gap: 32px;
  }

  .join-job-modal-detail {
    width: 100%;
  }

  .join-job-modal-body {
    overflow: visible;
    padding-right: 0;
  }

  .join-job-modal-form-wrap {
    padding-top: 0;
  }

  .join-job-modal-form-head,
  .join-job-modal-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-job-modal-form-row {
    grid-template-columns: 1fr;
  }

  .join-job-modal-submit-wrap {
    justify-content: flex-start;
  }

  .join-benefits-grid,
  .join-offices-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .join-benefits-section,
  .join-benefits-bg {
    background-position: center;
    background-size: cover;
  }

  .join-about-media {
    height: auto;
    aspect-ratio: 680 / 520;
  }

  .join-about-copy {
    height: auto;
    gap: 40px;
  }
}
