.places-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    height: 80vh;
}

/* TRACK */
.slider-track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    transition: transform .6s ease;
}

/* SLIDE */
.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.2rem;
}

/* CINEMATIC DARK OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 0.2rem;

    /* CINEMATIC GRADIENT */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
}

/* TEXT OVERLAY */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 50px;
    max-width: 600px;
    z-index: 3;
}

/* WHITE TEXT */
.slide-content h2,
.slide-content p,
.learn-more {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.slide-content h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.learn-more {
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: underline;
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s ease;
}

.slider-dots .dot.active {
    background: #fff;
}

/* ARROWS */
.slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    z-index: 5;
}

.slider-nav .prev { left: 20px; }
.slider-nav .next { right: 20px; }

/* MOBILE */
@media (max-width: 600px) {
    .slide-content {
        left: 20px;
        bottom: 20px;
    }
    .slide-content h2 {
        font-size: 1.6rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}
