.double-card-slider-section {
  background: var(--double-card-slider-bg, rgb(var(--color-background)));
}

.double-card-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.double-card-slider__heading {
  margin: 0;
  color: rgb(var(--color-text));
  max-width: 600px;
}

.double-card-slider__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.double-card-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--double-card-slider-arrow-bg, #2cc1d6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.double-card-slider__track-wrap {
  width: 100%;
  overflow: visible;
}

.double-card-slider__swiper {
  width: 100%;
  overflow: visible;
}

.double-card-slider__swiper .swiper-wrapper {
  align-items: stretch;
}

.double-card-slider__slide {
  height: auto !important;
}

.double-card-slider__card {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
  align-items: stretch;
}

.double-card-slider__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: white;
  height: 100%;
  border-radius: 20px;
}

.double-card-slider__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 70px;
}

.double-card-slider__icon img,
.double-card-slider__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.double-card-slider__title {
  margin: 0;
}

.double-card-slider__description {
  margin: 0;
  color: rgba(var(--color-text), 0.8);
}

.double-card-slider__image-col {
  width: 100%;
  height: 100%;
}

.double-card-slider__image {
  height: 100%;
}

.double-card-slider__image img,
.double-card-slider__image svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.double-card-slider__placeholder {
  background: rgb(var(--color-image-background));
}

.double-card-slider__progress {
  height: 2px;
  margin-top: 32px;
  background: rgba(0, 0, 0, 0.15);
}

.double-card-slider__progress-fill {
  height: 3px;
  width: 0;
  background: #2bc1d7;
  transition: width 0.3s ease;
}

@media (max-width: 959px) {
  .double-card-slider__head {
    margin-bottom: 20px;
  }

  .double-card-slider__card {
    grid-template-columns: 1fr;
  }

  .double-card-slider__progress {
    margin-top: 20px;
  }
}
