.spotlight {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.spotlight-header {
  text-align: center;
  margin-bottom: 50px;
}

.spotlight-header h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
}

.spotlight-header p {
  color: #777;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  max-width: 520px;
  margin: 0 auto;

}

/* Cards container */
.spotlight-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.story-card {
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 334px;
  width: 420px;
}

.story-text {
  font-size: 20px;
  line-height: 28px;
  color: #222;
  margin-bottom: 4rem;
}

/* User */
.story-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  object-fit: cover;
}

.story-user strong {
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.story-user span {
  font-size: 16px;
  font-weight: 200;
  color: #888;
}

/* Dots */
.spotlight-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #ddd;
  border-radius: 50%;
}

.dot.active {
  background: #111;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .spotlight-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .spotlight-header p {
    font-size: 16px;
    line-height: 20px;
    padding: 0 2rem;
  }

  .story-card {
    min-width: 85%;
    padding: 2rem;
    scroll-snap-align: center;
  }

  .story-text {
    font-size: 18px;
    line-height: 22px;
    max-width: 94%;
    margin-bottom: 5rem;
  }

  .spotlight-dots {
    display: flex;
  }

  .story-card {
    min-width: 289px;
    height: 360px;
  }

  .spotlight-header h2 {
    font-size: 30px;
    line-height: 30px;
  }

  .story-text {
    width: 100%;
  }

  .story-user strong {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
  }

  .story-user span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
  }

}