.noting-slider {
    position: relative;
    width: 100%;
    border-radius: 12px;
}
.noting-slider .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.noting-slider .slide-item.active {
    opacity: 1;
    position: relative;
}
.slide-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-desktop { display: block; }
.img-mobile { display: none; }
@media (max-width: 767px) {
    .img-desktop { display: none !important; }
    .img-mobile { display: block !important; }
}
.slide-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 12px 24px;
    background: rgba(0,123,255,0.9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}
.slide-link:hover { background: rgba(0,86,179,0.95); }
.noting-slider .slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dot.active { background: white; }
