/* ===============================
   PLACES & ACTIVITIES SLIDER
   =============================== */

.paa-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Navigation buttons */
.paa-nav {
    background: #000;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.paa-nav:hover {
    opacity: 0.85;
}

/* Slider container */
.paa-slider {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 12px;
    width: 100%;
    scrollbar-width: none;
    box-sizing: border-box;
}

.paa-slider::-webkit-scrollbar {
    display: none;
}

/* Each slide */
.paa-slide {
    flex: 0 0 auto !important;
    width: 260px;
    box-sizing: border-box;
    text-align: center;
}

/* Image link wrapper */
.paa-slide-link {
    display: block;
    width: 100%;
    height: 180px !important;   /* FORCE SAME HEIGHT */
    overflow: hidden;
    border-radius: 10px;
}


/* Thumbnail image */
.paa-slide-link img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* Hover zoom */
.paa-slide-link:hover img {
    transform: scale(1.05);
}

/* Title under image */
.paa-slide-title {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Title link */
.paa-slide-title a {
    color: inherit;
    text-decoration: none;
}

.paa-slide-title a:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .paa-slide {
        width: 200px;
    }

    .paa-slide-link {
        height: 140px;
    }

    .paa-slide-title {
        font-size: 14px;
    }
}
