.paws-steps {
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.paws-steps-inner {
  position: relative !important;
  margin: 0 auto;
  overflow: visible !important;
}

.paws-steps-inner .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}

.paws-step-card {
  position: relative;
  flex: 0 0 260px;
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #102531;
  padding: 64px 24px 20px;
  text-align: center;
  max-height: 290px;
  overflow: visible;
  display: flex;
}

.paws-step-card.is-expanded {
  max-height: none;
}

.paws-steps-nav,
.paws-steps-pagination {
  display: none;
}

.paws-steps-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border-radius: 50%;
  border: none;
  background: transparent !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.paws-steps-nav--prev {
  left: -30px;
}

.paws-steps-nav--next {
  right: -30px;
}

.paws-steps-nav--prev:hover,
.paws-steps-nav--next:hover {
  background: transparent !important;
}

.paws-steps-nav.swiper-button-disabled {
  cursor: default;
  pointer-events: none;
}

.paws-steps-nav.swiper-button-disabled .paws-steps-nav-icon {
  opacity: 0.25;
}

.paws-steps-nav-icon {
  width: 43px;
  display: block;
}

.paws-steps-nav-icon--next {
  transform: scaleX(-1);
}

.paws-steps-pagination {
  text-align: center;
  margin-top: 20px;
}

.paws-steps-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  display: inline-block;
  margin: 0 4px;
  opacity: 1;
}

.paws-step-icon-wrap {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paws-step-icon {
  max-width: 72px;
  height: auto;
}

.paws-step-number {
  width: 36px;
  height: 36px;
  margin: 10px auto 15px;
  border-radius: 50%;
  background: #00c4d8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.paws-step-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.paws-step-excerpt {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
}

.paws-step-more {
  font-size: 14px;
  margin-top: 4px;
  display: none;
}

.paws-step-card.is-expanded .paws-step-more {
  display: block;
}

.paws-step-readmore {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-decoration: underline !important;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}
.paws-step-content {
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

.paws-step-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 70%);
}

.paws-step-card.is-expanded .paws-step-content {
  max-height: none;
}

.paws-step-card.is-expanded .paws-step-content::after {
  content: none;
}

@media (max-width: 768px) {
  .paws-steps-inner {
    max-width: 360px;
    padding: 0 10px;
  }

  .paws-steps-inner .swiper-wrapper {
    gap: 0px;
  }

  .paws-step-card {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .paws-steps-nav {
    display: flex;
  }

  .paws-steps-pagination {
    display: block;
  }

  span.paws-steps-bullet.paws-steps-bullet--active {
    background: #000;
  }
}
