.path-staff .block-page-title-block,
.path-staff h1.page-title {
  display: none;
}

.staff-directory {
  background: #faf7f7;
  padding-bottom: 4rem;
}

.staff-directory__hero {
  background: linear-gradient(135deg, #880000 0%, #5c0000 100%);
  color: #fff;
  padding: 2.4rem 0 2.6rem;
  margin-bottom: 1.75rem;
}

.staff-directory__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.staff-directory__title {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

.staff-directory__lede {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
}

.staff-directory__count {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.staff-directory__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-bottom: 1.15rem;
}

.staff-directory__search {
  flex: 1 1 18rem;
}

.staff-directory__search-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(136, 0, 0, 0.2);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1rem;
}

.staff-directory__search-input:focus {
  outline: 2px solid #880000;
  outline-offset: 1px;
}

.staff-directory__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.staff-directory__filter {
  border: 1px solid rgba(136, 0, 0, 0.22);
  background: #fff;
  color: #5c0000;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.staff-directory__filter.is-active {
  background: #880000;
  border-color: #880000;
  color: #fff;
}

.staff-directory__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.staff-directory__jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  color: #333;
  text-decoration: none;
  font-size: 0.88rem;
}

.staff-directory__jump a span {
  color: #880000;
  font-weight: 700;
}

.staff-directory__jump a:hover,
.staff-directory__jump a:focus {
  border-color: #880000;
  color: #880000;
}

.staff-directory__section {
  margin-bottom: 2.4rem;
}

.staff-directory__section.is-empty {
  display: none;
}

.staff-directory__section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid #880000;
}

.staff-directory__section-head h2 {
  margin: 0;
  color: #880000;
  font-size: 1.35rem;
}

.staff-directory__section-head p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.staff-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.staff-directory__card {
  display: flex;
  gap: 0.95rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  min-height: 7.5rem;
}

.staff-directory__card.is-hidden {
  display: none;
}

.staff-directory__card:hover,
.staff-directory__card:focus {
  box-shadow: 0 10px 24px rgba(136, 0, 0, 0.12);
  border-color: rgba(136, 0, 0, 0.25);
}

.staff-directory__photo,
.staff-directory__photo-placeholder {
  width: 84px;
  height: 104px;
  border-radius: 0.4rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8eef5;
}

.staff-directory__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #880000;
}

.staff-directory__body {
  min-width: 0;
}

.staff-directory__badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: #f3eaea;
  color: #880000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.staff-directory__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #222;
}

.staff-directory__role {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  color: #5c0000;
  font-weight: 600;
}

.staff-directory__meta {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  word-break: break-word;
}

.staff-directory__empty {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.6rem;
}

@media (max-width: 767.98px) {
  .staff-directory__hero {
    padding: 1.75rem 0 1.9rem;
  }

  .staff-directory__card {
    align-items: flex-start;
  }
}
