
/* Import Lato Font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');


/* ---=====================================================================Advertisement Styling */
.news-top-ad-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 5px;
    padding: 0;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
}

.news-center-ad-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
}

.news-ad {
    width: 100%;
    max-width: 728px;
    height: auto;
    margin-bottom: 30px;
    text-align: center;
    padding: 10px 2.5em;
    border: 1px solid #ddd;
    overflow: hidden;
}

.ad-link {
    display: block;
}

.ad-image {
    width: 100%;
    height: auto;
    display: block;
}

.ad-label {
    font-size: 10px;
    color: #888;
    text-align: center;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.top-ad {
    width: 100%;
}

/* Hide second ad on desktop */
@media only screen and (min-width: 768px) {
    .news-center-ad-container {
        display: none;
    }
}


.center-ad {
    width: 100%;
    max-width: 336px;
    height: auto;
    max-height: 280px;
}

.ad-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.top-ad .ad-placeholder {
    height: 90px;
}

.bottom-ad {
    margin: 30px 0;
}

.bottom-ad .ad-placeholder {
    height: 90px;
}

.in-content-ad {
    margin: 25px 0;
}

.in-content-ad .ad-placeholder {
    height: 280px;
    width: 336px;
    margin: 0 auto;
}
/* ---=====================================================================Advertisement Styling */

/* ===============================================================================================
Single Hero Section Styles - High Specificity to Override Conflicts */
.single-hero-section {
    margin: 40px auto !important;
    max-width: 1140px !important;
    padding: 0 15px !important;
}

.single-hero-section .single-hero-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #eaeaea !important;
    padding-bottom: 10px !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.single-hero-section .single-hero-arrow {
    font-size: 22px !important;
    color: #ff4d4d !important;
}

/* Hero Slider Container - Force Override */
.single-hero-section .single-hero-slider-container {
    position: relative !important;
    margin-bottom: 30px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.single-hero-section .single-hero-slider {
    position: relative !important;
    height: 400px !important;
    overflow: hidden !important;
}

/* Individual Slides - Force Override */
.single-hero-section .single-hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
    z-index: 1 !important;
}

.single-hero-section .single-hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.single-hero-section .single-hero-slide-image {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.single-hero-section .single-hero-slide-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.single-hero-section .single-hero-slide-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%) !important;
    padding: 30px 20px 20px !important;
}

.single-hero-section .single-hero-slide-title {
    margin-bottom: 38px !important;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 700 !important;
   
    line-height: 1.5 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

/* Slider Dots - Force Override with High Specificity */
.single-hero-section .single-hero-slider-container .single-hero-dots {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 6px !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-hero-section .single-hero-slider-container .single-hero-dots .single-hero-dot {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    flex-shrink: 0 !important;
}

.single-hero-section .single-hero-slider-container .single-hero-dots .single-hero-dot.active {
    background-color: #fff !important;
    transform: none !important;
    scale: 1 !important;
}

.single-hero-section .single-hero-slider-container .single-hero-dots .single-hero-dot:hover {
    background-color: rgba(255,255,255,0.8) !important;
    transform: none !important;
    scale: 1 !important;
}

/* Hide any potential arrow/navigation elements */
.single-hero-section .single-hero-nav,
.single-hero-section .single-hero-nav-btn,
.single-hero-section .single-hero-nav-prev,
.single-hero-section .single-hero-nav-next {
    display: none !important;
    visibility: hidden !important;
}

/* Bottom Grid - Horizontal posts with images */
.single-hero-section .single-hero-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.single-hero-section .single-hero-grid-item {
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.single-hero-section .single-hero-grid-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.single-hero-section .single-hero-grid-image {
    position: relative !important;
    overflow: hidden !important;
}

.single-hero-section .single-hero-grid-image img {
    width: 100% !important;
    height: 110px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.single-hero-section .single-hero-grid-item:hover .single-hero-grid-image img {
    transform: scale(1.05) !important;
}

.single-hero-section .single-hero-image-count {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    background-color: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    font-size: 12px !important;
    display: none !important;
    align-items: center !important;
    gap: 5px !important;
}

.single-hero-section .single-hero-grid-title {
    padding: 7px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    background-color: #fff !important;
}

.single-hero-section .single-hero-grid-title a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.single-hero-section .single-hero-grid-title a:hover {
    color: #ff4d4d !important;
}

/* Video Style Row - Full width horizontal posts */
.single-hero-section .single-hero-video-row {
    display: none !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.single-hero-section .single-hero-video-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 4px !important;
}

.single-hero-section .single-hero-video-thumbnail {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.single-hero-section .single-hero-video-thumbnail img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.single-hero-section .single-hero-video-item:hover .single-hero-video-thumbnail img {
    transform: scale(1.05) !important;
}

.single-hero-section .single-hero-duration-badge {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    background-color: rgba(220, 20, 20, 0.9) !important;
    color: #fff !important;
    padding: 2px 8px !important;
    border-radius: 2px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.single-hero-section .single-hero-video-title {
    padding: 10px 5px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.single-hero-section .single-hero-video-title a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.single-hero-section .single-hero-video-title a:hover {
    color: #ff4d4d !important;
}

/* Read More Button */
.single-hero-section .single-hero-read-more-container {
    text-align: center !important;
    margin-top: 25px !important;
}

.single-hero-section .single-hero-read-more-button {
    display: inline-block !important;
    padding: 10px 20px !important;
    background-color: #f8f8f8 !important;
    border: 1px solid #ddd !important;
    color: #555 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}

.single-hero-section .single-hero-read-more-button:hover {
    background-color: #f1f1f1 !important;
    color: #333 !important;
}


/* Mobile Styles for Single Hero Section Block - Force Override */
@media (max-width: 767px) {
    /* Container adjustments */
    .single-hero-section {
        margin: 30px auto !important;
        padding: 0 2px !important;
    }
    
    /* Title adjustments */
    .single-hero-section .single-hero-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    /* Hero Slider Mobile Adjustments */
    .single-hero-section .single-hero-slider-container {
        margin-bottom: 20px !important;
    }
    
    .single-hero-section .single-hero-slider {
        height: 250px !important;
    }
    
    .single-hero-section .single-hero-slide-title {
        margin-bottom: 5px !important;
        font-size: 19px !important;
        padding: 5px !important;
    }
    
    .single-hero-section .single-hero-slide-overlay {
        padding: 20px 15px 15px !important;
    }
    
    /* Dots adjustments for mobile - Extra specific */
    .single-hero-section .single-hero-slider-container .single-hero-dots {
        bottom: 15px !important;
        gap: 5px !important;
    }
    
    .single-hero-section .single-hero-slider-container .single-hero-dots .single-hero-dot {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
        max-width: 8px !important;
        max-height: 8px !important;
    }
    
    /* Adjust grid to 2 columns on mobile */
    .single-hero-section .single-hero-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }
    
    .single-hero-section .single-hero-grid-item {
        margin-bottom: 5px !important;
    }
    
    .single-hero-section .single-hero-grid-image img {
        height: 130px !important;
    }
    
    .single-hero-section .single-hero-grid-title {
        padding: 8px !important;
        font-size: 14px !important;
    }
    
    /* Video row to horizontal scrolling on mobile */
    .single-hero-section .single-hero-video-row {
        display: none !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding-bottom: 15px !important; /* Space for scrollbar */
        -webkit-overflow-scrolling: touch !important; /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory !important;
        margin-top: 20px !important;
    }
    
    .single-hero-section .single-hero-video-item {
        flex: 0 0 80% !important;
        scroll-snap-align: start !important;
    }
    
    .single-hero-section .single-hero-video-thumbnail img {
        height: 160px !important;
    }
    
    /* Hide scrollbar but keep functionality */
    .single-hero-section .single-hero-video-row::-webkit-scrollbar {
        height: 4px !important;
    }
    
    .single-hero-section .single-hero-video-row::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2) !important;
        border-radius: 4px !important;
    }
    
    /* Adjust read more button */
    .single-hero-section .single-hero-read-more-container {
        margin-top: 20px !important;
    }
    
    .single-hero-section .single-hero-read-more-button {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}

/* Smaller mobile phones - Force Override */
@media (max-width: 480px) {
    .single-hero-section .single-hero-slider {
        height: 220px !important;
    }
    
    .single-hero-section .single-hero-slide-title {
        padding: 5px !important;
        font-size: 19px !important;
    }
    
    .single-hero-section .single-hero-grid-image img {
        height: 110px !important;
    }
    
    .single-hero-section .single-hero-video-item {
        flex: 0 0 85% !important;
    }
    
    .single-hero-section .single-hero-video-thumbnail img {
        height: 140px !important;
    }
    
    .single-hero-section .single-hero-grid-title, 
    .single-hero-section .single-hero-video-title {
        font-size: 13px !important;
    }
    
    /* Extra small dots for very small screens */
    .single-hero-section .single-hero-slider-container .single-hero-dots {
        bottom: 12px !important;
        gap: 4px !important;
    }
    
    .single-hero-section .single-hero-slider-container .single-hero-dots .single-hero-dot {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
        max-width: 8px !important;
        max-height: 8px !important;
    }
}




/* ===============================================================================================Travel Section Styles */
.travel-section {
    margin: 40px auto;
    max-width: 1140px;
    padding: 0 15px;
}

.travel-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.travel-section .category-arrow {
    font-size: 22px;
    color: #ff4d4d;
}

/* Main Container - Featured + List */
.travel-container {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

/* Left Side - Featured Article */
.travel-featured {
    flex: 0 0 65%;
}

.travel-featured-article {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

.travel-featured-image {
    position: relative;
    height: 100%;
}

.travel-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.travel-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
}

.travel-featured-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Right Side - Vertical List */
.travel-list {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.travel-list-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

.travel-list-item:last-child {
    border-bottom: none;
}

.travel-list-bullet {
    margin-right: 15px;
    color: #ff4d4d;
    font-size: 16px;
    line-height: 1.5;
    flex-shrink: 0;
}

.travel-list-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.travel-list-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.travel-list-title a:hover {
    color: #ff4d4d;
}

/* Bottom Grid - Horizontal posts with images */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.travel-grid-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.travel-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.travel-grid-image {
    position: relative;
    overflow: hidden;
}

.travel-grid-image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.travel-grid-item:hover .travel-grid-image img {
    transform: scale(1.05);
}

.travel-image-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.travel-grid-title {
    padding: 12px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    background-color: #fff;
}

.travel-grid-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.travel-grid-title a:hover {
    color: #ff4d4d;
}

/* Video Style Row - Full width horizontal posts */
.travel-video-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.travel-video-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.travel-video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.travel-video-thumbnail img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.travel-video-item:hover .travel-video-thumbnail img {
    transform: scale(1.05);
}

.travel-duration-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(220, 20, 20, 0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
}

.travel-video-title {
    padding: 10px 5px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.travel-video-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.travel-video-title a:hover {
    color: #ff4d4d;
}

/* Read More Button */
.read-more-container {
    text-align: center;
    margin-top: 25px;
}

.read-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.read-more-button:hover {
    background-color: #f1f1f1;
    color: #333;
}        


/* ===========================================================================================================Celebrity Slider Section Styles */
.celebrity-slider-section {
    margin: 40px auto;
    max-width: 1140px;
    padding: 0 15px;
    position: relative;
}

.celebrity-slider-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.celebrity-slider-section .category-arrow {
    font-size: 22px;
    color: #ff4d4d;
    margin-left: 5px;
}

/* Slider Container */
.celebrity-slider-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space for dots */
}

/* Slider Track */
.celebrity-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Individual Slides */
.celebrity-slide {
    flex: 0 0 calc(33.333% - 14px); /* Show 3 slides at once, adjust gap */
    min-width: 300px;
    border-radius: 4px;
    overflow: hidden;
}

.celebrity-slide-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.celebrity-slide-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.celebrity-slide:hover .celebrity-slide-image img {
    transform: scale(1.05);
}

.celebrity-slide-title {
    padding: 12px 5px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.celebrity-slide-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.celebrity-slide-title a:hover {
    color: #ff4d4d;
}

/* Navigation Arrows */
.celebrity-slider-nav {
    position: absolute;
    right: 0;
    top: -50px; /* Position next to the title */
    display: flex;
    gap: 10px;
}

.celebrity-nav-prev,
.celebrity-nav-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
}

.celebrity-nav-prev:hover,
.celebrity-nav-next:hover {
    background-color: #eaeaea;
    color: #333;
}

/* Pagination Dots */
.celebrity-slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.celebrity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.celebrity-dot.active {
    width: 24px; /* Make active dot wider like a pill/line */
    border-radius: 4px; /* More rectangular for active state */
    background-color: #333;
}

/* Make slider touch-friendly */
.celebrity-slider {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
}

.celebrity-slider:active {
    cursor: grabbing;
}



/* ============================================================================================================================Mobile Styles for Celebrity Slider */
@media (max-width: 767px) {
    .celebrity-slider-section {
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .celebrity-slider-section .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .celebrity-slider {
        gap: 12px;
    }
    
    .celebrity-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
    
    .celebrity-slide-image img {
        height: 160px;
    }
    
    .celebrity-slide-title {
        padding: 10px 2px;
        font-size: 14px;
    }
    
    .celebrity-slider-nav {
        top: -45px;
    }
    
    .celebrity-nav-prev,
    .celebrity-nav-next {
        width: 32px;
        height: 32px;
    }
    
    .celebrity-slider-dots {
        bottom: 5px;
    }
    
    .celebrity-dot {
        width: 6px;
        height: 6px;
    }
    
    .celebrity-dot.active {
        width: 18px;
    }
    
    .celebrity-slider-container {
        padding-right: 40px;
        padding-left: 10px;
        margin-left: -10px;
        width: calc(100% + 10px);
    }
}

/* Smaller mobile phones */
@media (max-width: 380px) {
    .celebrity-slide {
        min-width: 240px;
    }
    
    .celebrity-slide-image img {
        height: 140px;
    }
    
    .celebrity-slider-container {
        padding-right: 30px;
    }
}

/* Mobile Styles for Travel Section Block */
@media (max-width: 767px) {
    /* Container adjustments */
    .travel-section {
        margin: 30px auto;
        padding: 0 2px;
    }
    
    /* Title adjustments */
    .travel-section .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    /* Change to stacked layout for featured and list */
    .travel-container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Adjust featured section */
    .travel-featured {
        flex: 0 0 100%;
    }
    
    .travel-featured-title {
        font-size: 18px;
    }
    
    /* Adjust list section */
    .travel-list {
        flex: 0 0 100%;
    }
    
    .travel-list-item {
        padding: 10px 0;
    }
    
    .travel-list-title {
        font-size: 14px;
    }
    
    /* Adjust grid to 2 columns on mobile */
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
    
    .travel-grid-item {
        margin-bottom: 5px;
    }
    
    .travel-grid-image img {
        height: 130px;
    }
    
    .travel-grid-title {
        padding: 8px;
        font-size: 14px;
    }
    
    /* Video row to 1 column on mobile with horizontal scrolling */
    .travel-video-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 15px; /* Space for scrollbar */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory;
        margin-top: 20px;
    }
    
    .travel-video-item {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }
    
    .travel-video-thumbnail img {
        height: 160px;
    }
    
    /* Hide scrollbar but keep functionality */
    .travel-video-row::-webkit-scrollbar {
        height: 4px;
    }
    
    .travel-video-row::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 4px;
    }
    
    /* Adjust read more button */
    .read-more-container {
        margin-top: 20px;
    }
    
    .read-more-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Smaller mobile phones */
@media (max-width: 480px) {
    .travel-grid-image img {
        height: 110px;
    }
    
    .travel-video-item {
        flex: 0 0 85%;
    }
    
    .travel-video-thumbnail img {
        height: 140px;
    }
    
    .travel-grid-title, 
    .travel-video-title {
        font-size: 13px;
    }
}



/* Mobile Styles for Trending News Section */
@media only screen and (max-width: 767px) {
    .mobile-device #primary.content-area {
        width: 100%;
        float: none;
    }
    
    .mobile-device .trending-news-section {
        width: 100%;
        margin-left: 0;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .mobile-device .featured-post {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-device .featured-image {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .mobile-device .featured-image img {
        border-radius: 7px;
        width: 100%;
        height: auto;
        max-height: 220px;
    }
    
    .mobile-device .featured-content {
        max-width: 100%;
    }
    
    .mobile-device .featured-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .mobile-device .featured-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .mobile-device .trending-posts-grid {
        display: block;
        grid-template-columns: none;
    }
    
    .mobile-device .grid-item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .mobile-device .grid-image {
        width: 120px;
        flex: 0 0 120px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .mobile-device .grid-image img {
        border-radius: 5px;
        width: 120px;
        height: 72px;
    }
    
    .mobile-device .read-more-button {
        max-width: 100%;
    }
    
}

/* Mobile Styles for Finance Section */
@media only screen and (max-width: 767px) {
    .mobile-device .finance-news-section {
        width: 100%;
        margin-left: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Expand finance articles container to full width */
    .mobile-device .finance-articles {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0 5px;
        box-sizing: border-box;
        background: white;
    }
    
    /* Add padding to the sections */
    .mobile-device .finance-featured-section,
    .mobile-device .finance-news-list-section {
        width: 100%;
        float: none;
        padding: 15px 0;
    }
    
    /* Ensure articles have proper spacing */
    .mobile-device .finance-main-article {
        display: flex;
        flex-direction: column;
        margin: 0;
        width: 100%;
    }
    
    .mobile-device .finance-article-card {
        margin-bottom: 15px;
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    /* Add space around main article content */
    .mobile-device .finance-main-article-content {
        padding: 19px 0;
    }
    
    /* Make sure read more button has proper spacing */
    .mobile-device .read-more-container {
        padding: 0 15px;
    }
}


/* Mobile Styles for Category Tabs Section */
@media only screen and (max-width: 767px) {
    /* Main container */
    .mobile-device .category-tabs-section {
        width: 100%;
        margin-left: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
   /* ADD THIS INSTEAD */
.mobile-device .category-tabs-nav {
    margin-bottom: 15px;
}

.mobile-device .category-tabs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mobile-device .tab-item {
    margin-bottom: 5px;
}
    
    /* Posts grid - 2x3 layout */
    .mobile-device .category-posts-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Individual grid items */
    .mobile-device .category-grid-item {
        width: 100%;
    }
    
    .mobile-device .category-grid-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .mobile-device .category-grid-title {
        font-size: 14px;
        line-height: 1.3;
        margin-top: 8px;
    }
    
    /* Ensure content area properly fits 6 posts by showing only 6 */
    .mobile-device .category-grid-item:nth-child(n+7) {
        display: none;
    }
    
    /* Make sure read more button has proper spacing */
    .mobile-device .category-tabs-section .read-more-button {
        max-width: 100%;
    }
}



/* Mobile Styles for YouTube Gallery Section */
@media only screen and (max-width: 767px) {
    .mobile-device .youtube-gallery-section {
        width: 100%;
        margin-left: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .mobile-device .youtube-gallery-container {
        width: 100%;
        padding: 10px 0;
    }
    
    /* Adjust the track items for mobile */
    .mobile-device .youtube-gallery-track {
        padding: 0;
    }
    
    /* Make video items wider */
    .mobile-device .youtube-gallery-item {
        width: 240px;
        padding: 0 8px;
    }
    
    /* Adjust thumbnail height to maintain aspect ratio */
    .mobile-device .youtube-thumbnail img {
        height: 135px; /* 16:9 ratio for 240px width */
    }
    
    /* Make play button more visible on smaller screens */
    .mobile-device .youtube-thumbnail .youtube-play-button {
        opacity: 0.7; /* Always somewhat visible on mobile */
    }
    
    .mobile-device .youtube-play-button i {
        font-size: 40px;
    }
    
    /* Adjust text size */
    .mobile-device .youtube-video-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .mobile-device .youtube-video-date {
        font-size: 11px;
    }
    
    /* Make sure read more button has proper width */
    .mobile-device .youtube-gallery-section .read-more-button {
        max-width: 100%;
    }
    
    /* Adjust empty state message for mobile */
    .mobile-device .youtube-gallery-empty {
        padding: 30px 0;
    }
}





/* Mobile Styles for Category Trio Section as slider */
@media only screen and (max-width: 767px) {
    .mobile-device .category-trio-section {
        width: 100%;
        margin-left: 0;
        padding: 0 5px;
        box-sizing: border-box;
        position: relative;
    }
    
    /* Container for the slider */
    .mobile-device .category-trio-container {
        display: block;
        position: relative;
        overflow: hidden;
        padding-bottom: 50px; /* Space for nav dots */
    }
    
    /* Style each column as a card */
    .mobile-device .category-column {
        width: 100%;
        float: left;
        display: none;
        padding: 8px;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Show only the first column by default */
    .mobile-device #technology-column {
        display: block;
    }
    
    /* Navigation arrows - updated positioning */
    .mobile-device .category-trio-section .nav-arrow {
        position: absolute;
        bottom: -25px; /* Position at bottom above dots */
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 50%;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        font-size: 18px;
        margin-bottom: 15px;
        color: #ff5722;
    }
    
    .mobile-device .category-trio-section .prev-arrow {
        left: calc(50% - 60px); /* Left of center */
    }
    
    .mobile-device .category-trio-section .next-arrow {
        right: calc(50% - 60px); /* Right of center */
    }
    
    /* Navigation dots */
    .mobile-device .category-slider-dots {
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .mobile-device .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
    }
    
    .mobile-device .slider-dot.active {
        background: #ff5722;
    }
    
    /* Hide the category arrows in titles */
    .mobile-device .category-arrow {
        display: none;
    }
    
    /* Card styling */
    .mobile-device .category-column-title {
        font-size: 18px;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .mobile-device .category-column-posts {
        margin-top: 15px;
    }
    
    .mobile-device .category-post-item {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-device .category-post-item:last-child {
        border-bottom: none;
    }
    
    .mobile-device .category-post-image img {
        width: 90px;
        height: 68px;
    }
    
    .mobile-device .category-post-title a {
        font-size: 16px;
    }
}


@media only screen and (max-width: 767px) {
    /* Sidebar adjustments for mobile */
    .mobile-device #secondary.widget-area {
        width: 100%;
        float: none;
        padding: 0 15px;
        margin: 30px 0 0 0;
        box-sizing: border-box;
        clear: both;
    }
    
    .mobile-device .sidebar-widgets {
        margin: 0;
        width: 100%;
    }
    
    .mobile-device .sidebar-widgets .widget {
        margin-bottom: 20px;
        padding: 15px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
        border-radius: 5px;
    }
    
    .mobile-device .widget-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}


/* Hide slider arrows on desktop */
@media only screen and (min-width: 768px) {
    .category-trio-section .nav-arrow,
    .category-trio-section .category-slider-dots {
        display: none;
    }
}





/*
==========================================================================
GLOBAL STYLES
==========================================================================
*/
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #ff5722;
}

/* Layout */


.sidebar-widgets {
    margin-right: 30px;
    margin-top: 100px;
    margin-left: 30px;
}

/* Clear floats */
.clearfix:after, 
.ast-container:after {
    content: "";
    display: table;
    clear: both;
}

/* Common section title styling - updated */
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none; /* Remove existing border */
    display: flex;
    align-items: center;
    width: 100%;
    color: #000;
    position: relative;
}

.section-title:after {
    content: '';
    height: 3px;
    background: #e60000; /* Red line */
    flex-grow: 1;
    margin-left: 10px; /* Space between text and line */
}

/* Common Read More Button */
/* Common Read More Button - Enhanced styling */
.read-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.read-more-button {
    display: inline-block;
    width: 100%;
    max-width: 842px;
    padding: 12px 0;
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.read-more-button:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #ff5722, #e60000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.read-more-button:hover {
    background-color: #ffffff;
    color: #e60000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.read-more-button:hover:before {
    transform: scaleX(1);
}

/* Section spacing */
.trending-news-section,
.finance-news-section {
    width: 860px;
    margin-bottom: 40px;
    clear: both; /* Prevent layout issues */
    margin-left: 10px;
}

/*
==========================================================================
TRENDING NEWS SECTION STYLES
==========================================================================
*/
.trending-news-container {
    
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Post */
.featured-post {
    width: 840px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
}

.featured-image {
    flex: 0 0 384px;
}

.featured-image img {
    display: block;
    width: 384px;
    height: 222px;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    max-width: 680px;
    overflow: hidden;
}

.featured-title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Grid Posts */
.trending-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 192px);
    gap: 20px;
}

.grid-item {
    width: 192px;
}

.grid-image {
    margin-bottom: 8px;
}

.grid-image img {
    display: block;
    width: 192px;
    height: 110px;
    object-fit: cover;
}

.grid-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}


/*
==========================================================================
FINANCE SECTION STYLES
==========================================================================
*/
/* Finance articles container */
.finance-articles {
        width: 860px;
    background: white;
    overflow: hidden;
    margin-top: 15px;
}

/* Featured finance article section (Left Side - 50%) */
.finance-featured-section {
    width: 50%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
}

/* Finance news list section (Right Side - 50%) */
.finance-news-list-section {
    width: 50%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
}

/* Main finance article styling */
.finance-main-article {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    background: white;
}

.finance-main-article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.finance-main-image img {
    border-radius: 6px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.finance-main-article-content {
    padding: 15px 0;
}

.finance-main-article-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.finance-main-article-title a {
    color: #333;
    text-decoration: none;
}

.finance-main-article-title a:hover {
    color: #ff5722;
}

/* Finance article cards styling */
.finance-article-card {
    display: flex;
    background: white;
    margin-bottom: 15px;
    overflow: hidden;
}

.finance-article-card:last-child {
    margin-bottom: 0;
}

.finance-article-image {
    flex: 0 0 150px;
}

.mobile-device .finance-articles p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 22px;
}


.finance-article-image img {
    border-radius: 5px;
    width: 150px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.finance-article-content {
    padding: 0 0 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.finance-article-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.finance-article-title a {
    color: #333;
    text-decoration: none;
}

.finance-article-title a:hover {
    color: #ff5722;
}

/* Tag and meta styling */
.article-tag {
    display: inline-block;
    background-color: #f8f9fa;
    color: #333;
    padding: 2px 8px;
    margin-bottom: 5px;
    border-radius: 3px;
    font-size: 12px;
}

.article-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin-top: 10px;
}

.date {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

/*
==========================================================================
CATEGORY TABS SECTION STYLES
==========================================================================
This section contains styles for the category tabs block featuring:
- Tab navigation styling with active state highlights
- 3x3 grid layout for posts
- Consistent image sizes and text styling
- Hover effects and transitions
- Maintains consistent width with other homepage blocks
==========================================================================
*/

/* Main container */
.category-tabs-section {
    width: 860px;
     margin-left: 10px;
    margin-bottom: 40px;
    clear: both;
}

/* Tab navigation */
.category-tabs-nav {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.category-tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.tab-item {
    margin: 0;
    padding: 0;
}

.tab-item a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.2s ease;
}

.tab-item a:hover {
    color: #ff5722;
}

/* Active tab styling */
.tab-item.active a {
    color: #ff5722;
}

.tab-item.active a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff5722;
}

/* Tab content */
.category-tab-content {
    display: none;
}

.category-tab-content.active {
    display: block;
}

/* Posts grid - 3x3 layout */
.category-posts-grid {
    width: 200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Grid items */
.category-grid-item {
    width: 200px;
    display: flex;
    flex-direction: column;
}

.category-grid-image {
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.category-grid-image img {
    border-radius: 5px;
    width: 200px;
    height: 119px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-grid-image a:hover img {
    transform: scale(1.05);
}

.category-grid-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.category-grid-title a {
    color: #333;
    text-decoration: none;
}

.category-grid-title a:hover {
    color: #ff5722;
}

/* Read more button - consistent with other sections */
.category-tabs-section .read-more-container {
    margin-top: 25px;
}

/* No posts message */
.no-posts-message {
    grid-column: span 3;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    color: #666;
}


/*
==========================================================================
YOUTUBE GALLERY SECTION STYLES
==========================================================================
This section contains styles for the YouTube videos gallery with:
- Auto-scrolling carousel of YouTube video thumbnails
- Play button overlay for video thumbnails
- Video information display below thumbnails
- Consistent styling with other homepage blocks
- Maintains the 70% width layout
==========================================================================
*/

/* Main container */
.youtube-gallery-section {
    margin-bottom: 40px;
    clear: both;
    margin-left: 10px; /* Apply negative margin as requested */
}

/* Gallery container */
.youtube-gallery-container {
    width: 860px;
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    margin-bottom: 10px;
}

/* Gallery track - holds all video items */
.youtube-gallery-track {
    display: flex;
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Individual video items */
.youtube-gallery-item {
    flex: 0 0 auto;
    width: 280px;
    padding: 0 15px;
}

/* Video wrapper - contains thumbnail and info */
.youtube-video-wrapper {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Thumbnail container */
.youtube-thumbnail {
    position: relative;
    overflow: hidden;
}

/* Thumbnail image */
.youtube-thumbnail img {
    display: block;
    width: 100%;
    height: 158px; /* 16:9 ratio based on 280px width */
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover effect for thumbnail */
.youtube-thumbnail:hover img {
    transform: scale(1.05);
}

/* Play button overlay */
.youtube-play-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.youtube-thumbnail:hover .youtube-play-button {
    opacity: 1;
}

/* Play icon */
.youtube-play-button i {
    color: white;
    font-size: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video info container */
.youtube-video-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Video title */
.youtube-video-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youtube-video-title a {
    color: #333;
    text-decoration: none;
}

.youtube-video-title a:hover {
    color: #ff5722;
}

/* Video date */
.youtube-video-date {
    font-size: 12px;
    color: #777;
    margin-top: auto;
}

/* Empty state message */
.youtube-gallery-empty {
    text-align: center;
    padding: 50px 0;
    background: #f8f8f8;
    color: #666;
}

/*
==========================================================================
CATEGORY TRIO SECTION STYLES
==========================================================================
This section contains styles for the three-column category block featuring:
- Three equal-width columns for Technology, Lifestyle, and Sports
- Category headers with arrow indicators
- Consistent post displays with image and title
- Hover effects and transitions
- Matches width and styling of other homepage sections
==========================================================================
*/

/* Main container */
.category-trio-section {
    width: 860px;
    margin-bottom: 40px;
    clear: both;
    margin-left: 10px; /* Apply negative margin as used in other blocks */
}

/* Columns container */
.category-trio-container {
    display: flex;
    gap: 10px;
}

/* Individual category column */
.category-column {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

/* Category title styling */
.category-column-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.category-column-title a {
    
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-column-title a:hover {
    color: #ff5722;
}

.category-arrow {
    font-size: 22px;
    font-weight: 700;
}

/* Posts container */
.category-column-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual post item */
.category-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Post image styling */
.category-post-image {
    flex: 0 0 100px;
}

.category-post-image img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.category-post-image a:hover img {
    transform: scale(1.05);
}

/* Post content styling */
.category-post-content {
    flex: 1;
}

.category-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.category-post-title a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.category-post-title a:hover {
    color: #ff5722;
}

/* No posts message */
.no-posts-message {
    padding: 15px;
    background: #f8f8f8;
    color: #666;
    text-align: center;
    border-radius: 4px;
}





