.shs-slider {
  --shs-ink: #111214;
  --shs-muted: #4f5358;
  --shs-soft: #f5f1ed;
  --shs-card: rgba(255, 255, 255, 0.9);
  position: relative;
  width: min(1260px, calc(100% - 32px));
  min-height: 500px;
  margin: 24px auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(105deg, #f5f0eb 0%, #fbfaf8 52%, #eee8e2 100%);
}

.shs-track {
  position: relative;
  min-height: 500px;
}

.shs-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 28px;
  min-height: 500px;
  padding: 56px 76px;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.shs-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.shs-slide__content {
  position: relative;
  z-index: 2;
}

.shs-eyebrow {
  margin: 0 0 18px;
  color: var(--shs-ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shs-slide h2 {
  max-width: 560px;
  margin: 0;
  color: var(--shs-ink);
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.shs-description {
  max-width: 410px;
  margin: 26px 0 0;
  color: var(--shs-muted);
  font-size: 16px;
  line-height: 1.75;
}

.shs-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.shs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 122px;
  border-radius: 8px;
  padding: 0 24px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 850;
}

.shs-btn--primary {
  color: #fff;
  background: var(--shs-ink);
}

.shs-btn--secondary {
  color: var(--shs-ink);
  background: #fff;
}

.shs-slide__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

.shs-slide__media img {
  display: block;
  width: min(560px, 100%);
  max-height: 500px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 48px rgba(31, 28, 24, 0.12));
}

.shs-placeholder {
  display: grid;
  place-items: center;
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--shs-ink);
}

.shs-placeholder svg,
.shs-floating-card svg,
.shs-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shs-floating-card {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(260px, 48%);
  border-radius: 14px;
  padding: 18px;
  background: var(--shs-card);
  box-shadow: 0 18px 48px rgba(31, 28, 24, 0.12);
  color: var(--shs-ink);
  text-decoration: none !important;
}

.shs-floating-card *,
.shs-floating-card:hover,
.shs-floating-card:focus {
  text-decoration: none !important;
}

.shs-floating-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #e8f2eb;
  color: #163f36;
}

.shs-floating-card strong,
.shs-floating-card small {
  display: block;
}

.shs-floating-card strong {
  font-size: 15px;
  font-weight: 850;
}

.shs-floating-card small {
  margin-top: 6px;
  color: var(--shs-muted);
  font-size: 13px;
  line-height: 1.5;
}

.shs-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--shs-ink);
  box-shadow: 0 10px 28px rgba(31, 28, 24, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
}

.shs-arrow--prev {
  left: 20px;
}

.shs-arrow--next {
  right: 20px;
}

.shs-dots {
  position: absolute;
  left: 76px;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.shs-dots button {
  width: 16px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.14);
  cursor: pointer;
}

.shs-dots button.is-active {
  width: 20px;
  background: var(--shs-ink);
}

.shs-empty {
  width: min(960px, calc(100% - 32px));
  margin: 24px auto;
  border: 1px dashed #d8d8d8;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

@media (max-width: 920px) {
  .shs-slider {
    min-height: auto;
    width: calc(100% - 24px);
  }

  .shs-track {
    min-height: 720px;
  }

  .shs-slide,
  .shs-slide.is-active {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 720px;
    padding: 42px 24px 72px;
  }

  .shs-slide h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .shs-slide__media {
    min-height: 320px;
  }

  .shs-slide__media img {
    max-height: 360px;
  }

  .shs-floating-card {
    display: none;
  }

  .shs-dots {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 520px) {
  .shs-slider {
    border-radius: 12px;
  }

  .shs-track {
    min-height: 680px;
  }

  .shs-slide,
  .shs-slide.is-active {
    min-height: 680px;
    padding: 34px 18px 68px;
  }

  .shs-buttons {
    gap: 10px;
  }

  .shs-btn {
    min-width: 0;
    flex: 1 1 150px;
  }

  .shs-floating-card {
    display: none;
  }
}
