.dwus-slider-wrap {
  position: relative;
  width: 100%;
}

.dwus-slider,
.dwus-slide,
.dwus-slide-inner {
  min-height: var(--dwus-height-desktop);
}

.dwus-slider {
  position: relative;
  overflow: hidden;
  background: #111;
}

.dwus-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: opacity .55s ease, transform .9s ease, visibility .55s ease;
}

.dwus-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.dwus-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--dwus-overlay-opacity, .55));
  z-index: 1;
}

.dwus-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 84px 96px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.dwus-content {
  width: 100%;
  max-width: 760px;
  color: #fff;
}

.dwus-eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 68px;
  margin-bottom: 16px;
  font-size: var(--dwus-eyebrow-size-desktop);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .4px;
}

.dwus-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: #ffffff;
}

.dwus-heading {
  margin: 0 0 18px;
  font-size: var(--dwus-heading-size-desktop);
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
}

.dwus-description {
  max-width: 680px;
  font-size: var(--dwus-description-size-desktop);
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.dwus-description p {
  margin: 0 0 12px;
}

.dwus-description p:last-child {
  margin-bottom: 0;
}

.dwus-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.dwus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 28px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2px;
  transition: all .25s ease;
  box-sizing: border-box;
}

.dwus-btn-primary {
  background: #b0712f;
  border-color: #b0712f;
  color: #ffffff;
}

.dwus-btn-primary:hover {
  background: #8e5925;
  border-color: #8e5925;
  color: #ffffff;
}

.dwus-btn-secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.dwus-btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.dwus-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.22);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}

.dwus-arrow:hover {
  background: #b0712f;
  border-color: #b0712f;
}

.dwus-prev {
  left: 28px;
}

.dwus-next {
  right: 28px;
}

.dwus-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dwus-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .25s ease;
}

.dwus-dot.is-active {
  width: 34px;
  background: #b0712f;
}

.dwus-anim-item {
  will-change: opacity, transform, filter;
}

.dwus-slide[data-text-animation="none"] .dwus-anim-item {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.dwus-slide[data-text-animation]:not([data-text-animation="none"]) .dwus-anim-item {
  opacity: 0;
}

.dwus-slide[data-text-animation="fade"].is-active .dwus-anim-item,
.dwus-slide[data-text-animation="stagger-fade"].is-active .dwus-anim-item {
  animation: dwusFadeIn var(--dwus-slide-animation-duration, 900ms) ease forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="fade-up"].is-active .dwus-anim-item,
.dwus-slide[data-text-animation="stagger-up"].is-active .dwus-anim-item,
.dwus-slide[data-text-animation="typewriter"].is-active .dwus-anim-item:not(.dwus-typewriter-target) {
  animation: dwusFadeUpIn var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="fade-down"].is-active .dwus-anim-item {
  animation: dwusFadeDownIn var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="slide-left"].is-active .dwus-anim-item,
.dwus-slide[data-text-animation="stagger-left"].is-active .dwus-anim-item {
  animation: dwusSlideLeftIn var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.18,.8,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="slide-right"].is-active .dwus-anim-item {
  animation: dwusSlideRightIn var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.18,.8,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="zoom-soft"].is-active .dwus-anim-item {
  animation: dwusZoomSoftIn var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.18,.8,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="blur-reveal"].is-active .dwus-anim-item {
  animation: dwusBlurReveal var(--dwus-slide-animation-duration, 900ms) cubic-bezier(.18,.8,.2,1) forwards;
  animation-delay: var(--dwus-item-delay, 0ms);
}

.dwus-slide[data-text-animation="typewriter"] .dwus-anim-item.dwus-typewriter-target {
  opacity: 1;
  animation: none;
  min-height: 1.15em;
  white-space: pre-line;
  border-right: 0 solid currentColor;
}

.dwus-slide[data-text-animation="typewriter"].is-active .dwus-typewriter-target.is-typing {
  border-right-width: 2px;
  padding-right: 4px;
  animation: dwusCursorBlink .8s step-end infinite;
}

@keyframes dwusFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dwusFadeUpIn {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dwusFadeDownIn {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dwusSlideLeftIn {
  from {
    opacity: 0;
    transform: translate3d(-64px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dwusSlideRightIn {
  from {
    opacity: 0;
    transform: translate3d(64px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dwusZoomSoftIn {
  from {
    opacity: 0;
    transform: scale(.84);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dwusBlurReveal {
  from {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dwusCursorBlink {
  0%, 50% { border-color: currentColor; }
  51%, 100% { border-color: transparent; }
}

@media (max-width: 1200px) {
  .dwus-slider,
  .dwus-slide,
  .dwus-slide-inner {
    min-height: var(--dwus-height-tablet);
  }

  .dwus-eyebrow {
    font-size: var(--dwus-eyebrow-size-tablet);
  }

  .dwus-heading {
    font-size: var(--dwus-heading-size-tablet);
  }

  .dwus-description {
    font-size: var(--dwus-description-size-tablet);
  }
}

@media (max-width: 991px) {
  .dwus-slide-inner {
    padding: 70px 28px;
  }

  .dwus-heading {
    line-height: 1.14;
  }

  .dwus-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .dwus-prev {
    left: 14px;
  }

  .dwus-next {
    right: 14px;
  }
}

@media (max-width: 767px) {
  .dwus-slider,
  .dwus-slide,
  .dwus-slide-inner {
    min-height: var(--dwus-height-mobile);
  }

  .dwus-slide-inner {
    padding: 58px 20px 78px;
  }

  .dwus-content {
    max-width: 100%;
  }

  .dwus-eyebrow {
    padding-left: 50px;
    font-size: var(--dwus-eyebrow-size-mobile);
  }

  .dwus-eyebrow::before {
    width: 34px;
    height: 2px;
  }

  .dwus-heading {
    font-size: var(--dwus-heading-size-mobile);
  }

  .dwus-description {
    font-size: var(--dwus-description-size-mobile);
    line-height: 1.6;
  }

  .dwus-buttons {
    gap: 12px;
  }

  .dwus-btn {
    width: 100%;
    min-width: 100%;
  }

  .dwus-arrow {
    display: none;
  }
}
