.bio-marquee {
    margin: auto;
    max-width: 96%;
    overflow: hidden;
    padding: 40px 0;
}

.bio-track {
    display: flex;
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
}

.bio-marquee:hover .bio-track {
  animation-play-state: paused;
}

.bio-item {
    min-width: 420px;
    height: 250px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.bio-item img {
    width: 100px;
    height: auto;
    border-radius: 50%;
    flex-shrink: 0;
    filter: grayscale(100%);

}

.bio-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.bio-text p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #444;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bio-item {
    min-width: 300px;
    flex-direction: column;
    text-align: center;
  }

  .bio-item img {
    width: 80px;
  }
}
