.student-row {
  display: flex;
  align-items: center;
  margin: 6px 0;
  gap: 20px;
}

.student-name {
  color: white;
  font-size: 17px;
  min-width: 200px;
  flex-shrink: 0;
}

.student-name::before {
  content: "• ";
  margin-right: 8px;
}

.student-linkedin {
  color: #446eae;
  font-size: 17px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .student-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .student-name {
    min-width: auto;
  }
}

/* Comp4800-2025-09 ZD Start*/
/* --- Credits hero (align with other About pages) --- */
.credits-hero {
  position: relative;
}

.credits-hero__photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.credits-hero__title {
  position: absolute;
  left: 140px;
  bottom: 1rem;
  /* margin: 20px;
  padding: .45rem .75rem; */
  border-radius: .5rem;
  background: rgba(0, 0, 0, .35);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 4vw, 60px);
  line-height: 1.15;
  color: #fcaf18;
  /* Kinexus orange */
  text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
}

@media (max-width: 640px) {
  .credits-hero__title {
    left: max(4px, env(safe-area-inset-left));
    bottom: max(4px, env(safe-area-inset-bottom));
    padding: 5px 40px;
    border-radius: .4rem;
  }
}

@media (max-width: 1024px) {
  .credits-hero__title {
    position: absolute;
    left: 40px;
  }

}



/* --- Credits content layout --- */
.lower-container {
  flex-direction: column;

  margin-left: auto;
  margin-right: auto;
}

.credits-students {
  display: flex;
  flex-direction: column;
}

.credits-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fcaf18;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  font-size: clamp(18px, 3vw, 36px);
  margin: 36px 0 12px;
}

/* Comp4800-2025-09 ZD End*/