.crew-spotlight {
  max-width: 1350px;
  margin: 60px auto 0;
  position: relative;
}

.crew-spotlight__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #2d5016;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.crew-spotlight__arrow--left {
  left: -70px;
}

.crew-spotlight__arrow--right {
  right: -70px;
}

.crew-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: none;
  grid-template-columns: 30% 70%;
  height: 560px;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.crew-card.is-active {
  display: grid;
  opacity: 1;
}

.crew-card__body {
  display: contents;
}

.crew-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crew-card__placeholder {
  width: 100%;
  height: 100%;
  background: #f1f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8793;
  font-size: 14px;
}

.crew-card__content {
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crew-card__name {
  font-size: 40px;
  font-weight: 700;
  color: #1f2d1f;
}

.crew-card__role {
  font-size: 22px;
  font-weight: 600;
  color: #2d5016;
}

.crew-card__years {
  font-size: 16px;
  color: #666;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}

.crew-card__bio {
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.crew-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.crew-nav__arrow,
.crew-nav__pause {
  background: #2d5016;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crew-nav__pause {
  width: auto;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 21px;
  height: 60px;
}

.crew-nav__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.crew-nav__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  border: none;
}

.crew-nav__dot.is-active {
  background: #2d5016;
  width: 18px;
  height: 18px;
}

.crew-cards--empty {
  text-align: center;
  color: #6b7280;
}

@media (max-width: 1200px) {
  .crew-spotlight {
    padding: 0 16px;
  }

  .crew-card {
    height: 500px;
  }

  .crew-spotlight__arrow--left {
    left: 10px;
  }

  .crew-spotlight__arrow--right {
    right: 10px;
  }
}

@media (max-width: 600px) {
  .crew-card {
    grid-template-columns: 40% 60%;
    height: 420px;
  }

  .crew-spotlight__arrow {
    display: none;
  }

  .crew-card__image img,
  .crew-card__placeholder {
    height: 100%;
  }

  .crew-card__content {
    padding: 20px;
  }

  .crew-card__name {
    font-size: 24px;
  }

  .crew-card__role {
    font-size: 16px;
  }

  .crew-card__years {
    font-size: 13px;
    padding-bottom: 10px;
  }

  .crew-card__bio {
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 9;
  }
}
