.staff-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}

.staff-detail-header {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.staff-detail-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.staff-detail-info h1 {
  margin: 0 0 10px 0;
  color: #000;
}

.staff-detail-role {
  color: #a02828;
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
}

.staff-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.social-link {
  display: inline-block;
  padding: 4px 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
}

.social-link:hover {
  background-color: #a02828;
  color: #fff;
}

.social-link.discord-username {
  cursor: default;
}

.social-link.discord-username:hover {
  background-color: #5865f2;
  color: #fff;
}

.staff-detail-biography {
  margin-bottom: 40px;
  line-height: 1.6;
}

.courses-taught {
  border-top: 2px solid #a02828;
  padding-top: 30px;
}

.courses-taught h2 {
  color: #a02828;
  margin-bottom: 20px;
}

.course-item {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #a02828;
}

.course-item h3 {
  margin: 0 0 5px 0;
  font-size: 1.1em;
}

.course-semester {
  color: #777;
  font-style: italic;
  font-size: 0.9em;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #a02828;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .staff-detail-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .staff-detail-container {
    padding: 15px;
  }
}
