
/* ---------- SLIDER ---------- */
.featured-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin: 25px 0 40px;
    background: #fff;
}

.featured-slider-track {
    display: flex;
    transition: transform 0.35s ease;
}

.featured-slide {
    min-width: 100%;
    position: relative;
}

.featured-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media(max-width:900px){
    .featured-slide img {
        height: 260px;
    }
}

.slide-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.slide-title-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

.slide-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    color: #fff;
    border: none;
    font-size: 22px;
    backdrop-filter: blur(3px);
}