/* INFINITY SPORT Overlay 015
   Nur Lesbarkeitsverlauf. Diese Datei verändert das Hintergrundbild NICHT. */

.sport-hero {
  position: relative;
  isolation: isolate;
}

.sport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(3, 42, 77, 0.68) 0%,
    rgba(3, 42, 77, 0.56) 25%,
    rgba(3, 42, 77, 0.36) 43%,
    rgba(3, 42, 77, 0.14) 58%,
    rgba(3, 42, 77, 0.00) 72%
  );
}

.sport-hero-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sport-hero::before {
    background: linear-gradient(
      90deg,
      rgba(3, 42, 77, 0.80) 0%,
      rgba(3, 42, 77, 0.70) 42%,
      rgba(3, 42, 77, 0.52) 70%,
      rgba(3, 42, 77, 0.28) 88%,
      rgba(3, 42, 77, 0.14) 100%
    );
  }
}
