.gp-slider-section {
  --gp-accent: var(--main-color);
  --gp-text: #5A7A85;
  --gp-light: #F1F9FC;
  --gp-orange: #D44A1E;
  width: 86vw;
  margin: 0 7vw;
  padding: 4vh 0;
}

.gp-banner {
  display: flex;
  gap: 14px;
  align-items: stretch;
  min-height: 36vw;
}

.gp-content-col {
  flex: 0 0 56%;
  max-width: 56%;
  min-width: 0;
  display: flex;
}

.gp-side {
  flex: 1 1 43%;
  max-width: 43%;
  min-width: 0;
  display: flex;
}

.gp-content-slider,
.gp-image-slider {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.gp-content-slider .swiper-slide {
  height: auto;
  display: flex;
}

.gp-image-slider {
  height: 100%;
}

.gp-image-slider .swiper-slide {
  height: 100%;
  display: flex;
}

.gp-content {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  background: var(--gp-light);
  padding: 40px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
}

.gp-title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gp-content-slider .gp-content > * {
  transition: opacity .35s ease;
}

.gp-content-slider .swiper-slide-prev .gp-content > *,
.gp-content-slider .swiper-slide-next .gp-content > * {
  opacity: 0;
}

.gp-content-slider .swiper-slide-active .gp-content > * {
  opacity: 1;
}

.gp-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.gp-badge {
  color: var(--gp-accent);
  font-size: 16px;
  line-height: 20px;
}

.gp-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gp-accent);
  display: inline-block;
}

.gp-title {
  margin: 0;
  color: var(--gp-accent);
  font-size: 56px;
  line-height: 60px;
  font-weight: 800;
}

.gp-title-accent {
  color: var(--gp-orange);
}

.gp-subtitle {
  margin: 0;
  color: var(--gp-text);
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}

.gp-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.gp-btns .gp-btn {
  width: auto;
  flex: 0 0 auto;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 22px;
  line-height: 26px;
  font-weight: 800;
  text-decoration: none;
  transition: all .25s ease;
}

.gp-btn--primary {
  background: var(--gp-accent);
  color: var(--gp-light);
  border: 2px solid var(--gp-accent);
}

.gp-btn--primary:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
  color: var(--gp-light);
}

.gp-stats {
  display: flex;
  gap: 16px;
}

.gp-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ffffff 56%, var(--gp-light) 100%);
}

.gp-stat__num {
  color: var(--gp-orange);
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

.gp-stat__desc {
  color: var(--gp-text);
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
}

.gp-right {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gp-image {
  position: relative;
  flex: 1 1 auto;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.gp-image__inner {
  position: absolute;
  inset: 0;
}

.gp-image__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-info {
  background: var(--gp-light);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gp-info__title {
  color: var(--gp-accent);
  font-size: 32px;
  line-height: 36px;
  font-weight: 800;
}

.gp-btn--outline {
  border: 2px solid var(--gp-accent);
  color: var(--gp-accent);
  background: transparent;
  box-sizing: border-box;
}

.gp-info .gp-btn--outline {
  width: 100%;
}

.gp-btn--outline:hover {
  background: var(--gp-accent);
  color: var(--gp-light);
}

.gp-content-slider .gp-slider__pagination {
  position: absolute;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  bottom: 24px !important;
  padding-left: 40px;
  box-sizing: border-box;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.gp-slider__pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid var(--gp-accent);
  opacity: 1;
  margin: 0 !important;
  transition: all .3s ease;
}

.gp-slider__pagination .swiper-pagination-bullet-active {
  background: var(--gp-accent);
}

@media screen and (max-width: 1220px) {
  .gp-slider-section {
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  .gp-banner {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    min-height: 0;
  }

  .gp-content-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .gp-side {
    display: none;
  }

  .gp-image-slider,
  .gp-image-slider .swiper-slide {
    height: auto;
  }

  .gp-image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
  }

  .gp-content {
    padding: 24px;
    padding-bottom: 70px;
    gap: 24px;
  }

  .gp-title {
    font-size: 32px;
    line-height: 36px;
  }

  .gp-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .gp-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gp-badge-dot {
    display: none;
  }

  .gp-btn {
    font-size: 18px;
  }

  .gp-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-btns--has-link .gp-btn--primary {
    display: none;
  }

  .gp-stats {
    flex-direction: column;
  }

  .gp-stat {
    flex: 1 1 auto;
    max-width: 100%;
    background: transparent;
    padding: 0;
  }
}
