/* LG Slider v2 – lightweight CSS */

.lg-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #111;
}

/* Track */
.lg-slider__track {
    display: flex;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Single slide */
.lg-slide {
    position: relative;
    min-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

/* Background – ratio-based height via padding-top set inline */
.lg-slide__bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
    display: block;
}
.lg-slide.is-active .lg-slide__bg {
    transform: scale(1.03);
}

/* Full-slide clickable link */
.lg-slide__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

/* Arrows */
.lg-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.35);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.3rem;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background .2s;
    backdrop-filter: blur(4px);
}
.lg-slider__arrow:hover { background: rgba(0,0,0,.65); }
.lg-slider__arrow--prev { left: 16px; }
.lg-slider__arrow--next { right: 16px; }

/* Dots */
.lg-slider__dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}
.lg-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.lg-slider__dot.is-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* Responsive: on mobile enforce a min-height so tiny images still show */
@media (max-width: 600px) {
    .lg-slide__bg { min-height: 180px; }
    .lg-slider__arrow { width: 36px; height: 36px; line-height: 36px; font-size: 1rem; }
}
