.staff-item {
  position: relative;
  display: flex;
  column-gap: 34px;
  padding: 34px;
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
}
.staff-item:last-child {
  border-bottom: 1px solid #f1f1f1;
}
.staff-item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(18, 25, 38, 0.1);
  -moz-box-shadow: 0px 5px 25px 0px rgba(18, 25, 38, 0.1);
  box-shadow: 0px 5px 25px 0px rgba(18, 25, 38, 0.1);
}
.staff-image {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  text-align: center;
}
.staff-content {
  position: relative;
  flex: 1;
  width: 100%;
}
.staff-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.staff-image img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.staff-item .title {
  font-size: 18px;
  line-height: 22px;
}
.staff-item .title a {
  color: var(--text2);
}
.staff-item .descr {
  max-width: 90%;
}
.staff-item .arrow_link {
  position: absolute;
  top: 0;
  right: 0;
}
.staff-item:hover .arrow_link {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.staff-item:hover .arrow_link:before {
  background-position: -135px -32px;
  opacity: 1;
}
@media (max-width: 1200px) {
  .staff-item .arrow_link {
    display: none;
  }
  .staff-item .descr {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .staff-item {
    flex-direction: column;
    row-gap: 16px;
  }
}
