.staff-section-header {
  border-bottom: 2px solid #c8a45a;
  padding-bottom: 0.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background: transparent;
  height: 100%;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.staff-card:hover,
.staff-card:focus {
  transform: translateY(-2px);
  outline: none;
}

.staff-card:hover .staff-photo,
.staff-card:focus .staff-photo {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.staff-photo {
  width: 130px;
  height: 165px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.5rem;
  background: #eee;
}

.staff-card-body {
  width: 100%;
  min-width: 0;
}

.staff-name {
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.staff-position {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.3;
}

.staff-card-featured .staff-photo {
  width: 170px;
  height: 215px;
}

.staff-card-featured .staff-name {
  font-size: 1.15rem;
}

.staff-card-featured .staff-position {
  font-size: 0.95rem;
}

/* Modal card */
.staff-modal-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.staff-modal-photo {
  flex: 0 0 180px;
  width: 180px;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  background: #eee;
}

.staff-modal-body {
  flex: 1 1 auto;
  min-width: 0;
}

.staff-modal-name {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.staff-modal-position {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.staff-modal-bullets {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222;
}

.staff-modal-bullets li {
  margin-bottom: 0.35rem;
}

@media (max-width: 575.98px) {
  .staff-modal-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .staff-modal-bullets {
    text-align: left;
  }
}
