.approaches {
  display: none;
  @media (min-width: 1280px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.swiper.approaches-slider {
  display: block;
  width: calc(100% + var(--page-margin) * 2);
  padding: 0 var(--page-margin);
  margin: 0 calc(var(--page-margin) * -1);
  @media (min-width: 1280px) {
    display: none;
  }
}

.approaches.swiper-wrapper {
  display: flex;
}

.approaches__item {
  padding: 30px;
  display: flex;
  gap: 30px;
  overflow: hidden;
  border-radius: var(--b-radius);
  background: var(--color-bg-sec);
  transition: all 0.3s ease;
}

.swiper-slide.approaches__item {
  height: auto;
  display: flex;
  padding: 20px;
  gap: 20px;
}

.approaches__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 10px;
  min-width: 0;
  @media (min-width: 768px) {
    gap: 30px;
  }
}

.approaches__item-image {
  width: auto;
  height: 28.125vw;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 195px;
  flex-shrink: 0;
  transform: translateX(30px);
  @media (min-width: 768px) {
    height: 195px;
  }
}

.swiper-slide.approaches__item .approaches__item-image {
  transform: translateX(20px);
}

.swiper-slide.approaches__item_filter .approaches__item-image {
  transform: translateX(0);
}

.approaches__item-desc {
  font-size: 14px;
  color: var(--color-gray-3);
  font-weight: 400;
  line-height: 1.28571;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  @media (min-width: 768px) {
    font-size: 16px;
    line-height: 1.375;
  }
}

.approaches__item:hover .approaches__item-desc {
  color: white;
}

.approaches__item_filter .approaches__item-image {
  mix-blend-mode: darken;
  transform: translateX(0);
}

.approaches__item:hover {
  color: white;
  background: var(--color-bg-sec-2);
  position: relative;
  overflow: hidden;
}

.approaches__item:hover::before {
  content: "";
  position: absolute;
  width: 507.68px;
  height: 230.32px;
  right: 61.32px;
  bottom: 68.85px;
  background: radial-gradient(
    66.78% 226.51% at 54.2% 66.22%,
    #00aede 0%,
    #0e1c2c 100%
  );
  filter: blur(89.75px);
  transform: rotate(-31.21deg);
}

.approaches__item:hover::after {
  content: "";
  position: absolute;
  width: 512.29px;
  height: 227.79px;
  right: -175.04px;
  bottom: 124.21px;
  background: #31c4b4;
  filter: blur(96.65px);
  transform: rotate(-41.14deg);
}

.approaches__item:hover {
  .approaches__item-content {
    position: relative;
    z-index: 2;
  }
  .approaches__item-image {
    position: relative;
    z-index: 2;
  }
}

.approaches__item_filter:hover .approaches__item-image {
  filter: invert(1);
  mix-blend-mode: screen;
}
