.reports {
  position: relative;
  padding: 38px 0 130px;
  overflow: hidden;
  background: #022943;
  color: #ffffff;
}

.reports::before {
  content: none;
}

.reports-head {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1560px);
  margin: 0 auto 28px;
  text-align: center;
}

.reports-kicker {
  margin: 0 0 8px;
  color: rgba(143, 220, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reports-head h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.reports-head p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.42;
  opacity: 0.76;
}

.reports-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding-left: 104px;
  padding-right: 104px;
  overflow: visible;
}

.reports-viewport {
  width: 100%;
  overflow: hidden;
}

.reports-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: transparent;
}

.reports-track::-webkit-scrollbar {
  display: none;
}

.reports-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(2, 18, 36, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
  opacity: 0.72;
  transform: scale(0.965);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 260ms ease;
}

.reports-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(143, 220, 255, 0.36);
}

.reports-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
  color: transparent;
  transition:
    transform 440ms ease,
    filter 440ms ease;
}

.reports-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
}

.reports-card-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}

.reports-card-caption h3 {
  margin: 0 0 7px;
  font-size: clamp(28px, 1.75vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.reports-card-caption p {
  margin: 0;
  font-size: clamp(14px, 0.9vw, 17px);
  opacity: 0.78;
}

.reports-arrow {
  position: absolute;
  top: 200px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(2, 18, 36, 0.72);
  font-size: 50px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.reports-arrow:hover {
  background: rgba(2, 18, 36, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.07);
}

.reports-arrow-prev {
  left: 20px;
}

.reports-arrow-next {
  right: 20px;
}

.reports-dots {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .reports-card:hover {
    opacity: 1;
  }

  .reports-card:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 1179px) and (min-width: 760px) {
  .reports-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 759px) {
  .reports {
    padding: 54px 0 24px;
    background: #032946;
  }

  .reports-viewport {
    height: 300px;
  }

  .reports-head {
    width: min(100% - 36px, 1560px);
    margin-bottom: 30px;
    text-align: left;
  }

  .reports-head h2 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .reports-head p {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .reports-slider {
    padding-left: 54px;
    padding-right: 54px;
  }

  .reports-track {
    gap: 14px;
    padding: 0 0 12px;
    background: transparent;
  }

  .reports-card {
    flex: 0 0 100%;
    height: 300px;
    border-radius: 24px;
    opacity: 1;
    transform: none;
  }

  .reports-card.is-active {
    transform: none;
  }

  .reports-arrow {
    top: 185px;
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .reports-arrow-prev {
    left: 8px;
  }

  .reports-arrow-next {
    right: 8px;
  }

  .reports-card-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .reports-card-caption h3 {
    font-size: 26px;
  }
}