#rle-peoplelist-container p.error {
  font-weight: bold;
  color: red;
}
#rle-peoplelist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.rle-person {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  justify-content: start;
  align-items: center;
  text-align: center;
}
.rle-person.hidden {
  display: none;
}
.rle-person .image a {
  display: block;
  line-height: 1;
}
.rle-person img {
  display: block;
  aspect-ratio: 1 / 1;
  width: 200px;
  max-width: 100%;
  object-fit: cover;
}
.rle-person .name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.rle-person :is(.positions, .contact) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
  justify-content: start;
  align-items: center;
}
.rle-person .staffid {
  font-size: 90%;
  font-style: italic;
  display: none;
}
.show-staffid .rle-person .staffid {
  display: revert;
}
@media (min-width: 641px) {
  #rle-peoplelist {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 981px) {
  #rle-peoplelist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* filter */
.rle-peoplelist-filter-form {
  display: block;
  margin: 0 0 56px 0;
  width: auto;
}
.rle-peoplelist-filter-form .rle-peoplelist-filter-input {
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 4px 40px 4px 8px;
  font-size: 18px;
  line-height: 1;
  color: #333;
  border: 1px solid #666;
  background-position: calc(100% - 5px) 50%;
  background-size: auto calc(100% - 10px);
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h21v21H0z'/%3E%3Cpath stroke='%23666' stroke-width='2.625' d='M13.85 14.028a6.87 6.87 0 0 1-9.817 0c-2.71-2.751-2.71-7.212 0-9.964a6.87 6.87 0 0 1 9.817 0c2.711 2.752 2.711 7.213 0 9.964z'/%3E%3Cpath stroke='%23666' stroke-width='2.625' stroke-linecap='round' stroke-linejoin='round' d='m14.25 14.434 4.9 4.974'/%3E%3C/g%3E%3C/svg%3E");
}
.rle-peoplelist-filter-form .rle-peoplelist-result-counter {
  display: block;
  margin: 20px auto 0 auto;
  width: max-content;
  font-style: italic;
  color: #666;
}
