/* plugins/revoslider-lite/assets/slider.css (FINAL) */

.revoLite{ margin: 10px 0 18px 0; }
.revoLite__inner{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border, rgba(0,0,0,.1));
  background: color-mix(in oklab, var(--card) 92%, transparent);
  box-shadow: var(--shadow, 0 18px 48px rgba(0,0,0,.12));
}

.revoLite__track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}

.revoLite__slide{
  min-width:100%;
  position:relative;
  height: 320px;
}
@media (min-width: 980px){
  .revoLite__slide{ height: 420px; }
}

.revoLite__bg{ position:absolute; inset:0; }
.revoLite__bg img{ width:100%; height:100%; object-fit:cover; display:block; transform: scale(1.03); }
.revoLite__ph{
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--accent, #facc15), color-mix(in oklab, var(--accent2, #60a5fa) 65%, transparent));
}

.revoLite__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 400px at 20% 35%, rgba(0,0,0,.0), rgba(0,0,0,.55)),
              linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.0));
}

.revoLite__content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  color:#fff;
}
@media(min-width:980px){
  .revoLite__content{ padding: 28px 34px; max-width: 720px; }
}

.revoLite__badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  width: fit-content;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.revoLite__title{
  margin:0;
  font-size: 28px;
  letter-spacing:-.6px;
  line-height: 1.05;
  text-shadow: 0 18px 38px rgba(0,0,0,.35);
}
@media(min-width:980px){
  .revoLite__title{ font-size: 46px; }
}

.revoLite__sub{
  margin:0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.6;
  max-width: 560px;
}
@media(min-width:980px){
  .revoLite__sub{ font-size: 16px; }
}

.revoLite__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 4px; }

.revoLite__btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight: 900;
  text-decoration:none;
  transition: transform .15s ease, background .15s ease;
}
.revoLite__btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
.revoLite__btn.ghost{ background: rgba(0,0,0,.18); }

.revoLite__nav{
  position:absolute; top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size: 26px;
  font-weight: 900;
  display:grid; place-items:center;
  cursor:pointer;
  z-index:3;
  backdrop-filter: blur(10px);
}
.revoLite__nav:hover{ background: rgba(0,0,0,.32); }
.revoLite__nav.prev{ left: 12px; }
.revoLite__nav.next{ right: 12px; }

.revoLite__dots{
  position:absolute; left: 0; right:0; bottom: 10px;
  display:flex; justify-content:center; gap:8px;
  z-index: 4;
}
.revoLite__dot{
  width:9px; height:9px; border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.revoLite__dot.is-active{
  width: 22px;
  background: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.85);
}
