.sl-stories-wrapper {
  padding: 40px 0px;
  font-family: sans-serif;
}

.sl-stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.sl-stories-header h2 {
  font-family: Roboto Condensed;
font-weight: 600;
font-size: 30px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;

}

.sl-stories-link {
  color: #f15a29;
  font-family: Roboto Condensed;
font-weight: 600;
font-size: 16px;
text-align: center;
text-decoration: none;
}

.sl-stories-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  margin: 0 auto;
}

.sl-stories-item {
  flex: 0 0 auto;
  width: 160px;
  height: 285px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.sl-stories-inner {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: outline 0.2s ease;
}

/* Hover */
.sl-stories-item:hover .sl-stories-inner {
  outline: 3px solid #a259ff;
  outline-offset: -3px;
}

/* Mobile ajuste */
@media (max-width: 480px) {
  .sl-stories-item {
    width: 120px;
    height: 213px;
  }
}
.web-stories-swiper {
  padding: 10px 0;
}

.web-stories-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.web-story-card {
  width: 90px;
  height: 160px;
  border-radius: 8px;
  background-color: #eee;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  color: #333;
  font-family: 'Roboto Condensed', sans-serif;
}

.web-story-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.web-story-card-title {
  padding: 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

