.t-video-toc:hover span:first-child {
  transition: color 0.15s ease-in-out;
  color: var(--color-black-300) !important
}

.t-video-toc:hover span:nth-child(2) {
  transition: color 0.15s ease-in-out;
  color: var(--color-black-100) !important
}

.logos-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 48px;
}

.logos-container::before,
.logos-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.logos-container::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-container::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-gradient {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.c-feature-carousel {
  width: 100%;
}

.c-feature-carousel__container {
  gap: 32px;
}

.c-feature-carousel__tile {
  background: rgba(240, 240, 240, 0.5);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 1px 0 rgba(0, 0, 0, 0.02);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
  box-sizing: border-box;
  height: auto;
}

.c-feature-carousel__tile.active {
  opacity: 1;
  background: #fcfcfc;
}

.c-feature-carousel__indicators {
  gap: 0.5rem;
}

.c-feature-carousel__indicator {
  width: 40px;
  height: 4px;
  border: none;
  background: #f6f6f7;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  padding: 0;
}

.c-feature-carousel__indicator.active {
  background: #e2e2e4;
}

.c-feature-carousel__indicator:hover {
  background: #e2e2e4;
}

@media screen and (max-width: 768px) {
  .c-feature-carousel {
    display: none;
  }

  .c-feature-carousel__tile {
    width: 100%;
    opacity: 1;
    margin-bottom: 2rem;
  }
}

.b--u-text-uppercase {
  text-transform: uppercase;
}

.c-feature-tiles__background {
  top: 0.5rem;
  left: 0.5rem;
  height: calc(100% - 1rem);
  background: #29292f;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  z-index: 0;
}

.c-feature-tiles__category {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  color: #29292f;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
  overflow: visible;
  min-height: 2.5rem;
}

.c-feature-tiles__category:hover {
  color: #29292f;
}

.c-feature-tiles__category.active {
  color: #eee8ff;
}

.c-feature-tiles__tile video {
  border-radius: 24px;
}

@media screen and (min-width: 1024px) {
  .c-feature-tiles__content .v--hidden {
    display: none;
  }
}

.decoration-gradient {
  background: linear-gradient(0deg, #b99aff 0%, transparent 100%);
  height: 400px;
  max-height: 400px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  filter: blur(190px);
}
