.cgb-stepsslider1 {
  background-color: #fff;
  padding: 80px 0 60px;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}
@media (max-width: 920px) {
  .cgb-stepsslider1 { padding: 60px 0 40px; }
}
@media (max-width: 620px) {
  .cgb-stepsslider1 { padding: 40px 0 30px; }
}
.cgb-stepsslider1 *,
.cgb-stepsslider1 *:before,
.cgb-stepsslider1 *:after {
  box-sizing: border-box;
}
.cgb-stepsslider1__container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.cgb-stepsslider1__title {
  text-align: center;
  margin: 0 0 50px;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: #131313;
}
@media (max-width: 920px) {
  .cgb-stepsslider1__title { font-size: 32px; margin-bottom: 30px; }
}
@media (max-width: 620px) {
  .cgb-stepsslider1__title { font-size: 24px; }
}
.cgb-stepsslider1__wrap {
  position: relative;
  max-width: 1370px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 15px;
}
.cgb-stepsslider1__track {
  display: flex;
  gap: 90px;
  padding: 10px 0 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.cgb-stepsslider1__track.is-dragging {
  transition: none;
  cursor: grabbing;
}
.cgb-stepsslider1__slide {
  position: relative;
  flex: 0 0 calc(29% - 60px);
  min-width: 260px;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 20px rgba(19, 19, 19, 0.06);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .cgb-stepsslider1__slide { flex-basis: calc(45% - 60px); }
}
@media (max-width: 620px) {
  .cgb-stepsslider1__slide { flex-basis: 85%; min-width: 0; }
}
.cgb-stepsslider1__slide--connected::after {
  content: "";
  position: absolute;
  right: -90px;
  top: calc(50% - 40px);
  width: 80px;
  height: 80px;
  background-image: var(--cgb-arrow-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 620px) {
  .cgb-stepsslider1__slide--connected::after { display: none; }
}
.cgb-stepsslider1__slide img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 30px;
}
.cgb-stepsslider1__slide h3 {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #131313;
}
.cgb-stepsslider1__slide p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: rgba(19, 19, 19, 0.7);
}
.cgb-stepsslider1__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.cgb-stepsslider1__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(19, 19, 19, 0.2);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.cgb-stepsslider1__dot.active {
  width: 20px;
  background: rgb(3, 137, 203);
}
