/* Main Container */
.travel-spots-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 3rem 0;
    padding: 0;
    font-family: inherit;
    line-height: 1.6;
    color: inherit;
}

/* Grid Container */
.travel-spots-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Grid Layout */
.travel-spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styles */
.travel-spot-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Section */
.spot-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.spot-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Content Section */
.spot-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Typography */
.spot-title {
    margin: 0 0 15px 0;
    font-size: 2.0rem;
    line-height: 1.3;
    color: #222;
    font-weight: 600;
}

.spot-title a {
    color: inherit;
    text-decoration: none;
}

.spot-excerpt {
    margin: 0 0 20px 0;
    color: #555;
    line-height: 1.5;
    font-size: 1.5rem;
}

/* Meta Information */
.spot-meta {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.0rem;
}

.location-tag, 
.category-tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.location-tag {
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
}

.category-tag {
    background: rgba(3, 138, 58, 0.1);
    color: #038a3a;
}

/* Button */
.spot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.spot-link:hover {
    background: #0052a3;
}
/* Carousel Container */
.travel-spots-carousel {
    padding: 20px 0 40px;
    position: relative;
}

/* Carousel Track */
.travel-spots-carousel .slick-list {
    padding: 20px 0;
    margin: 0 -15px;
}

/* Individual Slides */
.travel-spots-carousel .slick-slide {
    padding: 0 15px;
    transition: all 0.3s ease;
}

/* Active Slide Highlight */
.travel-spots-carousel .slick-slide.slick-active {
    transform: scale(1.02);
}

/* Carousel Navigation */
.travel-spots-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.travel-spots-carousel .slick-arrow:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.travel-spots-carousel .slick-prev {
    left: -20px;
}

.travel-spots-carousel .slick-next {
    right: -20px;
}

/* Carousel Dots */
.travel-spots-carousel .slick-dots {
    bottom: 0;
}

.travel-spots-carousel .slick-dots li button:before {
    font-size: 10px;
    color: #ccc;
}

.travel-spots-carousel .slick-dots li.slick-active button:before {
    color: #0066cc;
}

/* Card Adjustments for Carousel */
.travel-spots-carousel .travel-spot-card {
    margin: 0 auto;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .travel-spots-carousel .slick-arrow {
        width: 30px;
        height: 30px;
    }
    
    .travel-spots-carousel .slick-prev {
        left: -10px;
    }
    
    .travel-spots-carousel .slick-next {
        right: -10px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .travel-spots-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .travel-spots-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .spot-content {
        padding: 20px;
    }
    
    .spot-title {
        font-size: 2.0rem;
    }
}

@media (max-width: 480px) {
    .travel-spots-grid {
        grid-template-columns: 1fr;
    }
    
    .spot-title {
        font-size: 2.0rem;
    }
    
    .spot-excerpt {
        font-size: 1.5rem;
    }
}
