.stories-container {
  margin: 40px auto;
  padding: 20px;
  max-width: 1000px;
}

.stories-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.stories-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.story-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  scroll-snap-align: start;
}

.story-item img,
.story-item video {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f39c12;
  transition: transform 0.3s;
}

.story-item img:hover,
.story-item video:hover {
  transform: scale(1.05);
}

.story-item p {
  margin-top: 8px;
  font-size: 0.9rem;
}
