.staff-directory {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
  color: #1f2937;
}
.dept-sidebar {
  border-right: 1px solid #e5e0d7;
  padding-right: 24px;
}
.dept-sidebar .views-row {
  border-bottom: 1px solid #eee8df;
}
.dept-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: #1f2937;
  transition: 0.25s ease;
}
.dept-item span {
  color: #657187;
  font-weight: 700;
}
.dept-item strong {
  font-size: 16px;
  line-height: 1.25;
}
.dept-item:hover,
.dept-item.is-active {
  background: #fffdf8;
  color: #173b78;
}
.dept-item.is-active {
  border-left: 4px solid #f4b323;
}
.dept-card {
  background: #fff;
  border: 1px solid #e3ded5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.dept-header {
  padding: 36px 42px 30px;
}
.dept-code {
  display: inline-block;
  background: #eef4ff;
  border: 1px solid #cbd8f0;
  color: #173b78;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.dept-header h1 {
  margin: 22px 0;
  color: #122f63;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}
.dept-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 28px 42px;
  border-top: 1px solid #e3ded5;
  border-bottom: 1px solid #e3ded5;
  background: #fffdf8;
}
.dept-info label {
  display: block;
  margin-bottom: 8px;
  color: #657187;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.dept-info p,
.dept-info .field__item {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}
.dept-info a {
  color: #173b78;
  font-weight: 700;
  text-decoration: none;
}
.staff-list {
  text-transform: uppercase;
  font-weight: 700;
}
.staff-list h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #173b78;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.staff-list h2:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e3ded5;
}
.staff-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.staff-list th {
  color: #657187;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid #e3ded5;
}
.staff-list td {
  padding: 17px 16px;
  border-bottom: 1px solid #eee8df;
  font-size: 16px;
}
.staff-list td strong,
.staff-name {
  color: #122f63;
  text-transform: uppercase;
  font-weight: 800;
}
.grade {
  display: inline-block;
  background: #fbf4df;
  color: #7a5a00;
  border: 1px solid #ead9a8;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .staff-directory {
    grid-template-columns: 1fr;
  }
  .dept-sidebar {
    border-right: 0;
    padding-right: 0;
  }
  .dept-info {
    grid-template-columns: 1fr;
  }
  .dept-header h1 {
    font-size: 26px;
  }
  .staff-list {
    overflow-x: auto;
  }
  .staff-list table {
    min-width: 720px;
  }
}


