/* VD Content Slider */
.vdcs-slider {
  position: relative;
  width: 100%;
  overflow: visible;
  transform: none !important;
  translate: none !important;
  will-change: auto !important;
}

.vdcs-track {
  position: relative;
  width: 100%;
}

.vdcs-slide {
  display: none;
  width: 100%;
  animation: vdcsFade 420ms ease both;
}

.vdcs-slide.is-active,
.vdcs-slider:not(.vdcs-ready) .vdcs-slide:first-child {
  display: block;
}

.vdcs-slide-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
}

.vdcs-content {
  position: relative;
  z-index: 2;
}

.vdcs-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1e7388;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.vdcs-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 32px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.vdcs-description {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
}

.vdcs-description p {
  margin: 0 0 14px;
}
.vdcs-description li{
	padding-bottom: 10px;
	line-height: 1.2;
}
.vdcs-bullets {
  display: grid;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.2;
}

.vdcs-bullets li {
  position: relative;
  padding-left: 28px;
	line-height: 1.2;
}

.vdcs-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.vdcs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #006b41;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 14px 30px rgba(0, 107, 65, 0.22);
}

.vdcs-button:hover,
.vdcs-button:focus {
  color: #fff;
  background: #005533;
  transform: translateY(-2px);
}

.vdcs-visual {
  position: relative;
  z-index: 1;
}

.vdcs-visual-card {
  position: relative;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vdcs-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.vdcs-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #006b41;
  cursor: pointer;
  box-shadow: none;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.vdcs-arrow span {
  display: block;
  margin-top: -3px;
  font-size: 32px;
  line-height: 1;
}

.vdcs-arrow:hover,
.vdcs-arrow:focus {
  background: transparent;
  color: #005533;
  transform: translateY(-50%) scale(1.04);
}

.vdcs-prev {
  left: 16px;
}

.vdcs-next {
  right: 16px;
}

.vdcs-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.vdcs-dot {
  width: 12px;
  height: 12px;
  padding: 0 !important;
  border: 0;
  border-radius: 999px !important;
  background: rgba(0, 107, 65, 0.22);
  cursor: pointer;
  transition: background 180ms ease;
}

.vdcs-dot.is-active {
  background: #006b41;
}

@keyframes vdcsFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .vdcs-slide-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vdcs-arrow {
    top: 50%;
  }
}

@media (max-width: 767px) {
  .vdcs-slide-inner {
    padding: 28px !important;
    border-radius: 20px !important;
  }

  .vdcs-title {
    font-size: 30px;
  }

  .vdcs-description,
  .vdcs-bullets {
    font-size: 15px;
  }

  .vdcs-visual-card {
    padding: 12px;
    border-radius: 0;
  }

  .vdcs-visual-card img {
    border-radius: 16px;
  }

  .vdcs-arrow {
    width: 44px;
    height: 38px;
  }

  .vdcs-prev {
    left: 10px;
  }

  .vdcs-next {
    right: 10px;
  }
}


/* Better arrow alignment */
.vdcs-slider .vdcs-arrow {
  top: 50%;
  margin-top: 0;
	background-color: transparent !important;
	border-color: transparent !important;
	color: #006b41 !important;
}

.vdcs-slider .vdcs-prev {
  left: -24px;
}

.vdcs-slider .vdcs-next {
  right: -24px;
}

.vdcs-slider .vdcs-visual {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .vdcs-slider .vdcs-prev {
    left: 10px;
  }

  .vdcs-slider .vdcs-next {
    right: 10px;
  }

  .vdcs-slider .vdcs-visual {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* Minimal clean arrows */
.vdcs-arrow {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 10px;
}

.vdcs-arrow span {
  font-size: 54px;
  line-height: 1;
}
