/* ===== SWIPER CARDS ===== */

.swiper-cards-widget {
  width: 100%;
  overflow: visible;
}

/* ---- card ---- */
.swiper-cards-widget .swiper-slide {
  height: auto;
}

.sc-card {
  background: #f3f2f9;
  border-radius: 10px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

/* ---- icon ---- */
.sc-icon {
  margin-bottom: 24px;
}

.sc-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* ---- title ---- */
.sc-title {
  margin: 0 0 16px;
  font-size: 35px;
  font-weight: 700;
  color: var(--blue, #2b2fd4);
  line-height: 1.25;
}

/* ---- description ---- */
.sc-desc {
  margin: 0;
  font-size: 18px;
  /* line-height: 1.65; */
  color: var(--black, #1a1a1a);
}

/* ===== BOTTOM BAR (scrollbar + arrows) ===== */

.sc-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* ---- scrollbar track ---- */
.sc-scrollbar {
  flex: 1;
  height: 2px;
  background: rgba(30, 0, 195, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.sc-scrollbar-fill {
  height: 100%;
  width: 10%;
  background: #1e00c3;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ---- arrows ---- */
.sc-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sc-prev,
.sc-next {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* border: 1.5px solid var(--blue, #2b2fd4); */
  border-radius: 50%;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.sc-prev img,
.sc-next img {
  width: 12px;
  height: auto;
  display: block;
}

/* prev arrow points left (mirror the right-arrow svg) */
.sc-prev img {
  transform: scaleX(-1);
}





/* disabled state */
.sc-prev.swiper-button-disabled,
.sc-next.swiper-button-disabled {
  border-color: #DCDEE1;
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.sc-prev.swiper-button-disabled img,
.sc-next.swiper-button-disabled img {
  filter: brightness(0) saturate(0) opacity(0.4);
}
