.technology {
  position: relative;
  padding-bottom: 624px; /* reserves space for the card wrapper that overlaps the image below */
}

.technology__media {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.technology__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.technology__anchor {
  position: relative;
  width: 100%;
}

.technology__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -624px;
  background: linear-gradient(180deg, rgba(153, 153, 153, 0) 0%, #999999 55.49%);
}

.technology__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 96px;
  text-align: center;
  color: #fff;
}

.technology__tip {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}

.technology__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}

.technology__tabs {
  display: none;
}

.technology__swiper-wrap {
  padding: 0 48px 132px;
}

.technology__swiper {
  width: 100%;
}

.technology__slide {
  border-radius: 24px;
  background: var(--color-surface);
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
}

.technology__slide-img {
  aspect-ratio: 437 / 246;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.technology__slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  gap: 16px;
}

.technology__slide-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.technology__slide-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-text-strong);
}

.technology__slide-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #515253;
}

.technology__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  display: none; /* only 2 cards, matches original pc behaviour (hidden when card count <= slidesPerView max) */
}

.technology__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(60px);
  border-radius: 48px;
  box-sizing: content-box;
}

.technology__control.fixedClass {
  position: fixed;
  bottom: var(--distance-bottom, 88px);
  z-index: 2;
}

.technology__arrow {
  position: relative;
  margin: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  color: #fff;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.technology__arrow svg {
  height: 100%;
  width: 100%;
}

.technology__pagination {
  position: static;
  width: auto;
}

.technology__pagination .swiper-pagination-bullet {
  background: #5c606a;
  width: 8px;
  height: 8px;
  opacity: 1;
}

.technology__pagination .swiper-pagination-bullet-active {
  width: 16px;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 767px) {
  .technology {
    padding-bottom: 650px;
  }

  .technology__media {
    height: 680px;
  }

  .technology__body {
    bottom: -650px;
  }

  .technology__intro {
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .technology__title {
    font-size: 28px;
  }

  .technology__tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 16px;
    padding: 0 16px;
    text-align: center;
  }

  .technology__tab {
    flex: none;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 32px;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
  }

  .technology__tab.is-active {
    background: var(--color-dark);
    color: #fff;
  }

  .technology__swiper-wrap {
    padding: 0 16px 22px;
  }

  .technology__slide-img {
    aspect-ratio: auto;
    height: 246px;
  }

  .technology__controls {
    display: flex;
    --distance-bottom: 88px;
  }
}
