.people-page {
  padding: 0 2.778vw 2.778vw;
  font-family: "Abolition";
  width: 100%;
}

.page-title {
  font-size: 4.167vw;
  line-height: 4.167vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2.222vw;
  letter-spacing: 0;
  color: #bbbbbb;
  font-family: "Abolition";
}

.people-filters {
  display: flex;
  gap: 1.389vw;
  margin-bottom: 1.389vw;
}

.search-box {
  width: 46.528vw;
  display: flex;
  border: 1px solid #fff;
  padding: 0.347vw 0.347vw 0.347vw 1.042vw;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.389vw;
  text-transform: uppercase;
}

.search-box button,
.filter-select {
  border: none;
  background: #292929;
  color: #fff;
  cursor: pointer;
}

.search-box button {
  width: 2.778vw;
  height: 2.778vw;
}

.search-box button img {
  width: 2.222vw;
}

.filter-select {
  width: 22.569vw;
  padding: 0.347vw 0.347vw 0.347vw 1.042vw;
  text-align: left;
  font-size: 1.389vw;
  text-transform: uppercase;
  position: relative;
}

.filter-select::after {
  content: "";
  position: absolute;
  right: 1.111vw;
  top: 50%;
  width: 1vw;
  height: 1vw;
  background: url("./images/white-vector.svg") center / contain no-repeat;
  transform: translateY(-50%) rotate(90deg);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.389vw;
  justify-content: center;
}

.person-card {
  width: 100%;
  background: #292929;
  display: block;
  transition: 0.4s;
}

.person-card:hover {
  background: #fe4622;
}

.person-card:hover .person-image img {
  filter: grayscale(80%);
}

.person-image {
  height: 16.389vw;
  overflow: hidden;
}

.person-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  /* object-position: center; */
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.person-info {
  padding: 1.111vw 1.389vw 1.389vw;
  position: relative;
}

.person-info::after {
  content: "";
  position: absolute;
  right: 1.389vw;
  top: 50%;
  width: 1vw;
  height: 1vw;
  background: url("./images/white-vector.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.person-info h3.person-title,
.person-info p.person-title {
  font-size: 2.778vw;
  line-height: 2.778vw;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Abolition", sans-serif;
}

.person-info p {
  margin-top: 0.417vw;
  font-family: "Neue Machina";
  font-size: 0.972vw;
  line-height: 1.25vw;
  text-transform: uppercase;
}

@media (max-width: 960px) {

  .people-page {
    padding: 0 5.333vw 5.333vw;
  }

  .page-title {
    font-size: 10.667vw;
    line-height: 10.667vw;
    margin-bottom: 5.333vw;
  }

  .people-filters {
    display: grid;
    grid-template-columns: 10.667vw 1fr 1fr;
    gap: 3.2vw;
    margin-bottom: 5.333vw;
  }

  .search-box {
    border: none;
    width: 10.667vw;
    height: 10.667vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-box input {
    display: none;
  }

  .search-box button {
    width: 100%;
    height: 100%;
    border: none;
  }

  .search-box button img {
    width: 7.333vw;
  }

  .filter-select {
    width: 100%;
    height: 10.667vw;
    font-size: 3.733vw;
    padding: 0 3.2vw;
    color: #bbbbbb;
  }

  .filter-select::after {
    right: 3.2vw;
    width: 3.2vw;
    height: 3.2vw;
  }

  .people-grid {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
  }

  .person-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #292929;
  }

  .person-image {
    height: auto;
  }

  .person-image img {
    width: 17vw;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .person-info {
    flex: 1;
    padding: 2.133vw 10.667vw 2.667vw 3.2vw;
    display: flex;
    align-items: center;
  }

  .person-info::after {
    right: 4.267vw;
    width: 3.2vw;
    height: 3.2vw;
  }

  .person-info h3.person-title,
  .person-info p.person-title {
    font-size: 6.4vw;
    line-height: 6.4vw;
  }

  .person-info p {
    margin-top: 2.067vw;
    font-size: 3.2vw;
    line-height: 3.733vw;
  }
}
