.other-department {
  display: grid;
  max-width: var(--page-width);
  margin: 0 auto 40px;
  row-gap: 20px;
  padding: 0 20px;
}
.other-department .wrapper {
  display: grid;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .other-department .wrapper {
    row-gap: 20px;
  }
}
.other-department hr {
  display: none;
}
.other-department-item {
  display: grid;
  gap: 30px;
  grid-template-columns: 200px 1fr;
  cursor: pointer;
  color: inherit !important;
}
@media screen and (max-width: 768px) {
  .other-department-item {
    grid-template-columns: 100px 1fr;
  }
}
.other-department-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.other-department-item .location {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--brand-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.other-department-item p, .other-department-item h3 {
  padding: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .other-department-item p, .other-department-item h3 {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.other-department-item img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .other-department-item img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .other-department hr {
    display: flex;
    border: 1px solid var(--cream);
    margin: 0 -40px;
  }
}
