.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
  transform-origin: center center;
  background-color: #141414;
}

.sticky-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 1.5em;
  overflow: hidden;
}

.slide-images,
.img,
.img-container,
.strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  padding: 0 1.5em;
  max-width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.slide-images {
  will-change: transform;
  transform: translateZ(0); /* Force hardware acceleration */
}

.img-container {
  will-change: opacity;
  transform: translateZ(0); /* Force hardware acceleration */
}

.strip {
  overflow: hidden;
  will-change: clip-path;
  transform: translateZ(0); /* Force hardware acceleration */
}

.strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  will-change: transform;
  transform: translateZ(0); /* Force hardware acceleration */
}

.slide-info > * {
  flex: 1;
}

.slide-info p {
  will-change: transform;
}

.slide-link {
  display: flex;
  justify-content: flex-end;
}

.slide-title {
  position: relative;
  flex: 2;
  overflow: hidden;
}

.slide-title p {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.excellence-number,
.excellence-description {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  will-change: transform;
  overflow: hidden;
}
