.wows-nexora {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  --wows-nexora-height: clamp(25rem, 50vw, 26.75rem);
  --wows-nexora-nav-size: 20px;
}
.wows-nexora .wows-custom-main-slider {
  height: var(--wows-nexora-height);
  width: 100%;
}
.wows-nexora .wows-custom-item.swiper-slide {
  position: relative;
}
.wows-nexora .wows-custom-img-wrap {
  position: relative;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.wows-nexora .wows-custom-img-wrap .wows-custom-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wows-nexora .wows-custom-sub-title {
  color: #5b5b6a;
  margin: 10px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
}
.wows-nexora .wows-custom-title {
  margin: 0;
  color: #26262e;
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.05;
  font-weight: 800;
}
.wows-nexora .wows-custom-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #484b4e;
  margin: 16px 0 0;
}
.wows-nexora .wows-custom-desc p {
  margin: 0;
}
.wows-nexora .wows-custom-link-btn a {
  margin: 20px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: #26262e;
  position: relative;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
  font-weight: 700;
  overflow: hidden;
}
.wows-nexora .wows-custom-link-btn a:hover {
  color: #ca0ff0;
}
.wows-nexora .wows-custom-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 4vw, 40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wows-nexora .wows-custom-content a {
  pointer-events: auto;
}
.wows-nexora .swiper-slide-visible.swiper-slide-active .wows-custom-content {
  opacity: 1;
}
.wows-nexora .wows-custom-thumbs-slider {
  width: 100%;
}
.wows-nexora .wows-nexora-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 40px;
}
.wows-nexora .wows-nav-btn {
  z-index: 99;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1vw, 8px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wows-nexora .wows-nav-btn svg {
  width: var(--wows-nexora-nav-size);
  height: var(--wows-nexora-nav-size);
  display: block;
}
.wows-nexora .wows-nav-btn:hover {
  border-color: #ca0ff0;
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .wows-nexora {
    flex-direction: row;
  }
  .wows-nexora .wows-custom-thumbs-slider {
    width: 50%;
    height: var(--wows-nexora-height);
  }
}