.tsw-spotlight {
  --tsw-reveal-distance: 34px;
  --tsw-reveal-duration: 720ms;
  width: 100%;
  background: #fff;
  color: #1d1d1d;
  padding: 36px 24px 40px;
}

.tsw-spotlight,
.tsw-spotlight * {
  box-sizing: border-box;
}

.tsw-page {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
}

.tsw-reveal {
  opacity: 0;
  transform: translateY(var(--tsw-reveal-distance));
  transition: opacity var(--tsw-reveal-duration) ease, transform var(--tsw-reveal-duration) ease;
}

.tsw-reveal.is-visible,
.tsw-spotlight[data-reveal="no"] .tsw-reveal {
  opacity: 1;
  transform: translateY(0);
}

.tsw-header {
  margin-bottom: 64px;
  text-align: center;
}

.tsw-title {
  max-width: 627px;
  margin: 0 auto;
  color: inherit;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.27;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tsw-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.tsw-col {
  flex: 1 1 0;
  min-width: 0;
}

.tsw-col--side {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tsw-col--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsw-media {
  position: relative;
  width: 100%;
  max-width: 377px;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border-radius: 8px;
}

.tsw-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 780ms ease, transform 900ms ease;
}

.tsw-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.tsw-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.tsw-feature,
.tsw-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tsw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  min-height: 51px;
  margin-bottom: 8px;
}

.tsw-icon img {
  display: block;
  width: 51px;
  max-width: 51px;
  height: auto;
}

.tsw-icon-fallback {
  display: block;
  width: 51px;
  height: 51px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.35;
}

.tsw-feature-title {
  margin: 15px 0 4px;
  color: inherit;
  font-size: 18px;
  line-height: 1.27;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.tsw-feature-text {
  margin: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

.tsw-bottom {
  margin-top: 30px;
  overflow: hidden;
}

.tsw-bottom-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.tsw-bottom-item {
  flex: 1 1 180px;
  min-width: 180px;
}

.tsw-bottom .tsw-icon,
.tsw-bottom .tsw-icon img,
.tsw-bottom .tsw-icon-fallback {
  width: 62px;
  max-width: 62px;
  height: 62px;
}

.tsw-bottom-title {
  margin: 0 0 4px;
  color: inherit;
  font-size: 18px;
  line-height: 1.27;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.tsw-bottom-text {
  margin: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

@media (min-width: 750px) and (max-width: 1140px) {
  .tsw-columns {
    flex-direction: column;
    gap: 32px;
  }

  .tsw-col--side {
    width: 100%;
    gap: 50px;
    padding: 0 60px;
  }

  .tsw-col--center {
    order: -1;
  }

  .tsw-media {
    max-width: 420px;
  }
}

@media (max-width: 1040px) {
  .tsw-header {
    margin-bottom: 40px;
  }

  .tsw-columns {
    flex-direction: column;
    gap: 40px;
  }

  .tsw-col--side {
    width: 100%;
    gap: 40px;
  }

  .tsw-col--center {
    order: -1;
  }

  .tsw-media {
    max-width: 320px;
    margin: 0 auto;
  }

  .tsw-bottom {
    margin-top: 40px;
  }

  .tsw-bottom-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .tsw-bottom-track::-webkit-scrollbar {
    display: none;
  }

  .tsw-bottom-item {
    flex: 0 0 180px;
    width: 180px;
    min-width: 180px;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tsw-reveal,
  .tsw-slide {
    transition: none;
  }
}
