.front-lead {
  min-height: 100dvh;
}

/* Investor card diagonal fade bands. */
.investor .investor-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.investor .investor-card::before,
.investor .investor-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: none;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.035) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.investor .investor-card::before {
  clip-path: polygon(0 0, 25% 0, 11.5% 100%, 0 100%);
}

.investor .investor-card::after {
  clip-path: polygon(40% 0, 70% 0, 56.5% 100%, 26.5% 100%);
}

.investor .investor-card .card-wrapper {
  position: relative;
  z-index: 1;
}

/* Load YouTube only after interaction on equipment galleries. */
.youtube-facade {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  background: #041d2c;
}

.youtube-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  border-radius: 12px;
  background: #1a5ed4;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.youtube-facade-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
  transform: translate(-50%, -50%);
}

/* Prevent the oversized decorative conveyor circle from widening mobile pages. */
@media (max-width: 767px) {
  .belts-info {
    overflow-x: clip;
  }
}
