/* ──────────────── ARTDEALIO SLIDER — CLEAN GALLERY FINAL ──────────────── */
.adsl-slider {
  width: 100%;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  font-family: 'Inter', 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

/* контейнер */
.adsl-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 480px;
  overflow: hidden;
}

/* слайды */
.adsl-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.9s cubic-bezier(.2,.9,.25,1), transform 0.9s cubic-bezier(.2,.9,.25,1);
}
.adsl-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* LEFT BLOCK — TEXT */
.adsl-left {
  flex: 0 0 38%;
  padding: 140px 60px 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: transparent;
  position: relative;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

/* Заголовок */
.adsl-title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  color: #d2b97b;
  margin: 0 0 10px;
  letter-spacing: 0.4px;
}

/* Описание + разделитель */
.adsl-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  max-width: 44ch;
  position: relative;
  padding-bottom: 12px;
}
.adsl-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: #bca46f;
  border-radius: 2px;
  opacity: 0.85;
}

/* Дополнительный текст */
.adsl-extra {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* META INFO */
.adsl-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  margin-top: 14px;
  margin-bottom: 24px;
}
.adsl-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant: small-caps;
  letter-spacing: 0.5px;
}
.adsl-meta .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* CTA BUTTON */
.adsl-btn {
  display: inline-block;
  background: #bca46f;
  color: #000;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 12px;
  align-self: flex-start;
  transition: all .25s ease;
  box-shadow: none;
}
.adsl-btn:hover {
  background: #d7bf82;
  transform: translateY(-2px);
}

/* RIGHT BLOCK — IMAGE */
.adsl-right {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.25));
  transition: transform 0.45s ease, filter 0.45s ease;
  cursor: pointer;
}

/* Фото */
.adsl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transform-origin: center center;
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 2;
}

/* Hover эффекты */
.adsl-right:hover .adsl-img {
  transform: scale(1.05);
  filter: brightness(0.85) contrast(1.05);
}
.adsl-slide:hover .adsl-left {
  filter: grayscale(100%) brightness(0.85);
}
.adsl-slide:hover .adsl-btn,
.adsl-slide:hover .adsl-btn:hover {
  filter: none !important;
  opacity: 1;
  color: #000;
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1200px) {
  .adsl-left { padding: 110px 40px 40px; }
  .adsl-title { font-size: 30px; }
}

@media (max-width: 900px) {
  /* ⚠️ Мобильная версия — без изменений */
  .adsl-inner { height: auto; min-height: 420px; position: relative; }
  .adsl-slide {
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .adsl-slide.active { opacity: 1; transform: translateY(0); z-index: 2; }
  .adsl-right { order: 1; width: 100%; min-height: 260px; border-radius: 0; }
  .adsl-img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; z-index:3; }
  .adsl-left { order: 2; padding: 32px 22px 32px; text-align: left; filter: none; }
  .adsl-title { font-size: 22px; }
  .adsl-btn { margin-top: 12px; }
  .adsl-meta { align-items: flex-start; font-size: 14px; margin-bottom: 20px; }
}
