/* =========================================
   TOUR HIGHLIGHTS SLIDER (HORIZONTAL LAYOUT)
   ========================================= */

/* Desktop: 2 columns visible */
[gx-section="tour-highlights-slider"] .highlight-slide {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
}

/* Card Styling - Premium Horizontal Container */
[gx-section="tour-highlights-slider"] .highlight-card {
    background-color: var(--bg-white, #ffffff);
    border: 1px solid var(--border-color, #e9ecef);
    border-radius: var(--radius-md, 12px);
    padding: 12px;
    box-shadow: var(--shadow-sm, 0 4px 6px rgba(0,0,0,0.02));
    transition: all var(--transition-speed, 0.3s) cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%; /* Ensures uniform height in the flex track */
}

[gx-section="tour-highlights-slider"] .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 12px 24px rgba(0,0,0,0.06));
    border-color: var(--brand-teal-light, rgba(0, 130, 155, 0.3));
    background-color: #fcfdfe; /* Extremely subtle tint on hover */
}

/* Image Wrapper - Left Side */
[gx-section="tour-highlights-slider"] .highlight-img-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* Soft inner shadow to frame the image */
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); 
}

[gx-section="tour-highlights-slider"] .highlight-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[gx-section="tour-highlights-slider"] .highlight-card:hover .highlight-img-wrapper img {
    transform: scale(1.08); /* Slightly more pronounced zoom */
}

/* Content Area - Right Side */
[gx-section="tour-highlights-slider"] .highlight-card-body {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[gx-section="tour-highlights-slider"] .highlight-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue, #1B365D);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[gx-section="tour-highlights-slider"] .highlight-desc {
    color: var(--text-muted, #6c757d);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Link */
[gx-section="tour-highlights-slider"] .highlight-read-more {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-dark-blue, #1B365D);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    margin-top: auto; /* Pushes the link to the bottom if text varies */
}

[gx-section="tour-highlights-slider"] .highlight-read-more i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

[gx-section="tour-highlights-slider"] .highlight-card:hover .highlight-read-more {
    color: var(--brand-teal, #00829B);
}

[gx-section="tour-highlights-slider"] .highlight-card:hover .highlight-read-more i {
    transform: translateX(5px);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet & Large Mobile */
@media (max-width: 991px) {
    [gx-section="tour-highlights-slider"] .highlight-slide {
        /* Shows 1 full column with a clear peek of the next slide to encourage swiping */
        flex: 0 0 calc(88% - 12px); 
    }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
    [gx-section="tour-highlights-slider"] .highlight-slide {
        flex: 0 0 calc(92% - 12px); 
    }
    
    [gx-section="tour-highlights-slider"] .highlight-card {
        padding: 10px;
    }

    /* Shrink the image so the text has room to breathe */
    [gx-section="tour-highlights-slider"] .highlight-img-wrapper {
        width: 90px;
        height: 90px;
    }

    [gx-section="tour-highlights-slider"] .highlight-card-body {
        padding-left: 14px;
    }

    /* Adjust typography for smaller screens */
    [gx-section="tour-highlights-slider"] .highlight-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    [gx-section="tour-highlights-slider"] .highlight-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }
}