.exp-carousel {
  padding: 72px 24px 80px;
  color: #03050f;
  max-width: 100%;
  overflow: hidden;
  margin-top: 0px !important;
  background: #ffff;
}

.exp-carousel__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0;
}

.exp-carousel__title {
  font-family: var(--font-geely);
  margin: 0 0 16px;
  
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-transform: uppercase;
  color: #0B0C0C;
}

.exp-carousel__subtitle {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #828282;
}

.exp-carousel__slider-wrapper {
  margin-top: 40px;
}

.exp-carousel__swiper {
  overflow: hidden;
}

.exp-carousel__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
  background: #EEF1FB;
  border-radius: 16px;
  overflow: hidden;
}

.exp-carousel__media {
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  background: #000;
}

.exp-carousel__image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.exp-carousel__content {
  padding: 48px 10%;
}

.exp-carousel__card-title {
  font-family: var(--font-geely);
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #212529;
}

.exp-carousel__card-desc {
   margin: 0 0 24px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #212529;
}

.exp-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0B0C0C;
  color: #fff;
  text-decoration: none;
 // font-family: var(--font-geely);
   font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  width: 150px;
  height: 48px;
  transition: all 0.2s ease;
    border-radius: 3px;

}

.exp-carousel__btn:hover {
  background: #194BFF;
  color: #fff;
  transition: all 0.2s ease;
}

.exp-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.exp-carousel__pagination {
  position: static;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-carousel__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  opacity: 0.35;
  background: #7c8693;
   border-radius: 999px;
  transition: width 0.25s ease, border-radius 0.25s ease;
}

.exp-carousel__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #027bff;
  width: 22px;
  border-radius: 5px;
}

/* Flechas juntas a la derecha */
.exp-carousel__navs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-carousel__nav {
  width: 40px;
  height: 40px;
  border: 1.5px solid #d0d5dd;
  background: #fff;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;

}

.exp-carousel__nav:hover {
  background: #194BFF;
  border-color: #194BFF;
}

.exp-carousel__nav:hover svg path {
  fill: #fff;
}

.exp-carousel__nav--prev:hover svg path {
  fill: #fff;
}

.exp-carousel__nav img {
  width: 18px;
  height: 18px;
  display: block;
}

.exp-carousel__nav--prev img {
  transform: rotate(180deg);
}

.exp-carousel__nav--next img {
  transform: rotate(0deg);
}

.exp-carousel__nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}


.exp-carousel__title-highlight {
  background: linear-gradient(90deg, #182FD7 0%, #86DFBD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .exp-carousel {
    padding: 56px 16px 64px;
  }
  .exp-carousel__title {
    font-size: 36px;
    line-height: 44px;
  }
  .exp-carousel__card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .exp-carousel__image {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .exp-carousel {
    padding: 40px 16px 16px;
  }
  .ic-block .swiper-pagination {
    display: none !important;
  }
  .exp-carousel__title {
    font-family: var(--font-geely);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
    font-weight: 700;
  }
  .exp-carousel__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .exp-carousel__nav {
   width: 32px;
  height: 32px;
  }

  .exp-carousel__nav img {
  width: 14px;
  height: 14px;
}
  .exp-carousel__card {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-template-areas:
      "content"
      "media";
  }

  .exp-carousel__content {
    grid-area: content;
    padding: 12px 16px 4px;
  }

  .exp-carousel__media {
    grid-area: media;
  }

  .exp-carousel__card-title {
    margin-top: 12px;
    font-size: 20px;
    line-height: 24px;
  }

  .exp-carousel__card-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .exp-carousel__btn {
    margin-top: 8px;
  }
}