/* =============== TALENT PARTNER  =============== */
.splide__slide.talent {
  position: relative;
  height: 458px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden; 
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
  clip-path: polygon(
      30px 0%, 100% 0%, 100% calc(100% - 30px), 
      calc(100% - 30px) 100%, 0% 100%, 0% 30px
  );
}

.splide__slide.talent:hover {
  filter: grayscale(0%);
}

.splide__slide.talent::before {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;
  background: #ff6d00; 
  z-index: 0; 
  clip-path: polygon(
      var(--edge-size) 0%,
      100% 0,
      100% calc(100% - var(--edge-size)),
      calc(100% - var(--edge-size)) 100%,
      0 100%,
      0% var(--edge-size)
  );
}

.splide__slide.talent .video {
  width: 98%;
  height: 99%;
  object-fit: cover; 
  position: absolute;

  transform: translateY(-0.2em);
  clip-path: polygon(
      var(--edge-size) 0%,
      100% 0,
      100% calc(100% - var(--edge-size)),
      calc(100% - var(--edge-size)) 100%,
      0 100%,
      0% var(--edge-size)
  );
}

.splide__slide.talent .content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0) 100%);
  width: 98%;
  font-family: "Mosvita", sans-serif;

  position: absolute;
  transform: translateY(-0.2em);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% calc(100% - var(--edge-size)), 
    calc(100% - var(--edge-size)) 100%, 
    0% 100%, 
    0% calc(100% - var(--edge-size)) 
);
  z-index: 1; 
}

.splide__slide.talent .text {
  font-family: "Mosvita", sans-serif;
  font-weight: 910;
  font-size: 26px;
  text-align: center;
  color: white;
  margin-top: 10px;
  z-index: 3;
}

.splide__slide.talent .highlight {
  color: #ff6d00;
  font-weight: 900;
}

.talent-partner-cards .splide.talent-slider {
  width: 1100px;
  margin-top: 30px;
}

.talent-partner-cards {
  text-align: center;
  /* margin-top: 0px; */
}

.talent-partner-cards .description {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  font-family: "Mosvita", sans-serif;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}
