@charset "utf-8";

.wanted__text {
  width: 80%;
  height: auto;
  margin: -20px -20px 0 auto !important;
}
@media screen and (min-width: 768px) {
  .wanted__text {
    margin: -120px -60px 0 auto !important;
  }
}
@media screen and (min-width: 1200px) {
  .wanted__text {
    width: 684px;
    margin: -120px -90px 0 auto !important;
  }
}

.wanted__wrap {
  padding: 40px 20px;
  margin-right: -20px !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .wanted__wrap {
    padding: 70px 30px;
    margin-right: -60px !important;
  }
}
@media screen and (min-width: 1200px) {
  .wanted__wrap {
    padding: 70px 50px;
    margin-right: -90px !important;
    gap: 120px;
  }
}

.wanted__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .wanted__item {
    flex-direction: row;
    gap: 50px;
  }
}
.wanted__item + .wanted__item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 1200px) {
  .wanted__item + .wanted__item::before {
    top: -60px;
  }
}

.wanted__img {
  aspect-ratio: 420 / 315;
  width: min(100%, 550px);
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .wanted__img {
    width: min(calc(420 / 1366 * 100vw), 420px);
  }
}

.person__bg {
  object-fit: cover;
}

@media screen and (min-width: 1200px) {
  .person__inner {
    padding: 0 70px !important;
  }
}

.person__text {
  width: 80%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .person__text {
    width: 627px;
  }
}

.person__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.person__wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .person__wrap {
    flex-direction: row;
    gap: min(calc(165 / 1366 * 100vw), 165px);
  }
}
