﻿/* Blog Hero Section */
.blog-hero-section {
    background: #1a1d2e;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-hero-content {
    max-width: 900px;
    margin-bottom: 3rem;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.highlight-orange {
    color: #f44900;
}

.blog-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.blog-hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

    .blog-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .blog-hero-container {
        padding: 0 2rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-image {
        max-width: 450px;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .blog-hero-section {
        padding: 3rem 0;
    }

    .blog-hero-container {
        padding: 0 1.5rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-hero-image {
        max-width: 100%;
        height: 280px;
    }
}

@media screen and (max-width: 576px) {
    .blog-hero-title {
        font-size: 1.75rem;
    }

    .blog-hero-content {
        margin-bottom: 2rem;
    }

    .blog-hero-description {
        font-size: 0.938rem;
    }

    .blog-hero-image {
        height: 250px;
    }
}

/* Featured Articles Section */
.featured-articles-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.featured-articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.featured-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.featured-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.article-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.article-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f44900;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d2e;
    line-height: 1.4;
    margin: 0;
}

.article-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .article-meta svg {
        width: 18px;
        height: 18px;
    }

.read-time {
    font-size: 0.938rem;
    font-weight: 500;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .featured-articles-container {
        padding: 0 2rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   MOBILE VIEW - HORIZONTAL SCROLL CAROUSEL
   ============================================ */

@media screen and (max-width: 768px) {
    .featured-articles-section {
        padding: 3rem 0;
        overflow: hidden;
    }

    .featured-articles-container {
        padding: 0;
    }

    .featured-header {
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .featured-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .featured-subtitle {
        font-size: 0.938rem;
        line-height: 1.5;
    }

    /* HORIZONTAL SCROLLABLE CAROUSEL */
    .articles-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1.5rem 1rem;
        scroll-behavior: smooth;
    }

        /* Hide scrollbar */
        .articles-grid::-webkit-scrollbar {
            display: none;
        }

    .article-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 85%;
        scroll-snap-align: start;
        border-radius: 12px;
    }

        /* Remove hover effect on mobile */
        .article-card:hover {
            transform: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

    .article-image {
        height: 220px;
    }

    .article-category {
        padding: 0.4rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }

    .article-content {
        padding: 1.5rem 1.25rem;
        gap: 0.875rem;
    }

    .article-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .article-excerpt {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .article-meta {
        margin-top: 0.25rem;
    }

        .article-meta svg {
            width: 16px;
            height: 16px;
        }

    .read-time {
        font-size: 0.813rem;
    }
}

@media screen and (max-width: 576px) {
    .featured-articles-section {
        padding: 2.5rem 0;
    }

    .featured-header {
        margin-bottom: 2rem;
        padding: 0 1.25rem;
    }

    .featured-title {
        font-size: 1.625rem;
    }

    .featured-subtitle {
        font-size: 0.875rem;
    }

    .articles-grid {
        gap: 0.875rem;
        padding: 0 1.25rem 1rem;
    }

    .article-card {
        flex: 0 0 88%;
        max-width: 88%;
        min-width: 88%;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        padding: 1.25rem 1rem;
    }

    .article-title {
        font-size: 1rem;
    }

    .article-excerpt {
        font-size: 0.813rem;
    }

    .read-time {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .featured-articles-section {
        padding: 2rem 0;
    }

    .featured-header {
        padding: 0 1rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-subtitle {
        font-size: 0.813rem;
    }

    .articles-grid {
        padding: 0 1rem 1rem;
    }

    .article-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 1rem 0.875rem;
    }

    .article-title {
        font-size: 0.938rem;
    }

    .article-excerpt {
        font-size: 0.75rem;
    }
}



/* Latest Articles Section */
.latest-articles-section {
    background: #1a1d2e;
    padding: 5rem 0;
}

.latest-articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Top Row: Header + Search */
.top-row {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.latest-header {
    display: flex;
    flex-direction: column;
}

.latest-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.latest-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Bottom Row: Grid + Sidebar */
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Articles Grid */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.latest-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.latest-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

    .latest-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.latest-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #f44900;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.latest-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem;
}

.latest-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.latest-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.latest-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.375rem;
}

    .latest-meta span {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .latest-meta svg {
        width: 14px;
        height: 14px;
    }

/* Sidebar Widgets */
.articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.75rem;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
}

/* Search Widget */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

    .search-box svg {
        position: absolute;
        left: 0.875rem;
        color: rgba(255, 255, 255, 0.4);
    }

.search-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
}

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

    .categories-list li a {
        display: flex;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

        .categories-list li a:hover {
            color: #f44900;
        }

        .categories-list li a span {
            color: #f44900;
        }

/* Popular Reads Widget */
.popular-list {
    padding-left: 1.125rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

    .popular-list li {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
        line-height: 1.4;
    }

        .popular-list li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .popular-list li a:hover {
                color: #f44900;
            }

/* Newsletter Widget */
.newsletter-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

.newsletter-btn {
    width: 100%;
    padding: 0.75rem;
    background: #f44900;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .newsletter-btn:hover {
        background: #d63e00;
    }

/* Mobile Search Input (Hidden by default) */
.mobile-search-input {
    display: none;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .top-row,
    .bottom-row {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

@media screen and (max-width: 991px) {
    .latest-articles-container {
        padding: 0 2rem;
    }

    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .articles-sidebar {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================================
   MOBILE VIEW - LARGER CATEGORIES SECTION
   ============================================ */

@media screen and (max-width: 768px) {
    .latest-articles-section {
        padding: 3rem 0;
        overflow: hidden;
    }

    .latest-articles-container {
        padding: 0;
    }

    /* Header Section - Centered */
    .top-row {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }

    .latest-header {
        text-align: center;
    }

    .latest-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .latest-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Hide Desktop Search Widget */
    .top-row .search-widget {
        display: none;
    }

    /* Bottom Row - Using Flexbox for Reordering */
    .bottom-row {
        display: flex;
        flex-direction: column;
    }

    /* SIDEBAR - Make it display as separate sections */
    .articles-sidebar {
        display: contents;
    }

    /* CATEGORIES WIDGET WITH MOBILE SEARCH - ORDER 1 - LARGER SIZE */
    .categories-widget {
        order: 1;
        background: transparent;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

        .categories-widget .widget-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
            font-size: 1.125rem;
            font-weight: 700;
            padding: 0;
            gap: 1rem;
        }

            .categories-widget .widget-title::after {
                display: none;
            }

    /* Mobile Search Input - LARGER */
    .mobile-search-input {
        display: flex;
        flex: 1;
        max-width: 220px;
    }

        .mobile-search-input .search-box {
            width: 100%;
        }

        .mobile-search-input .search-input {
            padding: 0.625rem 0.875rem 0.625rem 2.5rem;
            font-size: 0.813rem;
            border-radius: 20px;
        }

        .mobile-search-input .search-box svg {
            left: 0.75rem;
            width: 18px;
            height: 18px;
        }

    /* CATEGORIES AS 2-ROW GRID - LARGER SIZE */
    .categories-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1rem;
        padding: 0;
    }

        .categories-list li {
            flex-shrink: 0;
        }

            /* First row: Performance, Wellness, Vitality */
            .categories-list li:nth-child(1) {
                grid-column: 1;
                grid-row: 1;
            }

            .categories-list li:nth-child(2) {
                grid-column: 2;
                grid-row: 1;
            }

            .categories-list li:nth-child(6) {
                grid-column: 3;
                grid-row: 1;
            }

            /* Second row: Mental Health, Lifestyle, Nutrition */
            .categories-list li:nth-child(5) {
                grid-column: 1;
                grid-row: 2;
            }

            .categories-list li:nth-child(4) {
                grid-column: 2;
                grid-row: 2;
            }

            .categories-list li:nth-child(3) {
                grid-column: 3;
                grid-row: 2;
            }

            /* LARGER CATEGORY PILLS */
            .categories-list li a {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: 0.5rem;
                background: rgba(255, 255, 255, 0.1);
                padding: 0.875rem 0.75rem;
                border-radius: 14px;
                white-space: nowrap;
                font-size: 0.875rem;
                font-weight: 500;
                border: 1px solid rgba(255, 255, 255, 0.15);
                min-height: 60px;
            }

                .categories-list li a span {
                    color: #f44900;
                    font-size: 0.875rem;
                    font-weight: 600;
                }

    /* HORIZONTAL SCROLLABLE ARTICLES - ORDER 2 (BEFORE NEWSLETTER) */
    .latest-grid {
        order: 2;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1.5rem 1rem;
        scroll-behavior: smooth;
        margin-bottom: 1.5rem;
    }

        .latest-grid::-webkit-scrollbar {
            display: none;
        }

    /* NARROWER ARTICLE CARDS - 75% WIDTH */
    .latest-card {
        flex: 0 0 75%;
        max-width: 75%;
        min-width: 75%;
        scroll-snap-align: start;
        border-radius: 10px;
    }

    .latest-image {
        height: 180px;
    }

    .latest-category {
        padding: 0.3rem 0.7rem;
        font-size: 0.688rem;
        border-radius: 16px;
    }

    .latest-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .latest-card-title {
        font-size: 0.938rem;
        line-height: 1.4;
    }

    .latest-excerpt {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .latest-meta {
        gap: 0.625rem;
        font-size: 0.688rem;
    }

        .latest-meta svg {
            width: 12px;
            height: 12px;
        }

    /* HIDE POPULAR READS */
    .popular-widget {
        display: none;
    }

    /* NEWSLETTER WIDGET - ORDER 3 (AFTER ARTICLES) */
    .newsletter-widget {
        order: 3;
        margin: 0 auto;
        padding: 1.5rem;
        max-width: 450px;
        width: calc(100% - 3rem);
    }

        .newsletter-widget .widget-title {
            font-size: 1rem;
            margin-bottom: 0.875rem;
        }

    .newsletter-text {
        font-size: 0.813rem;
        margin-bottom: 1rem;
    }

    .newsletter-input {
        padding: 0.7rem 0.875rem;
        font-size: 0.813rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-btn {
        padding: 0.7rem;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 576px) {
    .latest-articles-section {
        padding: 2.5rem 0;
    }

    .top-row {
        padding: 0 1.25rem;
    }

    .latest-title {
        font-size: 1.625rem;
    }

    .latest-subtitle {
        font-size: 0.813rem;
    }

    .categories-widget {
        padding: 0 1.25rem;
        margin-bottom: 1.75rem;
    }

        .categories-widget .widget-title {
            font-size: 1.063rem;
            margin-bottom: 1.125rem;
        }

    .mobile-search-input {
        max-width: 200px;
    }

        .mobile-search-input .search-input {
            padding: 0.575rem 0.75rem 0.575rem 2.25rem;
            font-size: 0.75rem;
        }

        .mobile-search-input .search-box svg {
            width: 17px;
            height: 17px;
        }

    .categories-list {
        gap: 0.875rem;
    }

        .categories-list li a {
            font-size: 0.813rem;
            padding: 0.75rem 0.625rem;
            min-height: 56px;
            gap: 0.45rem;
        }

            .categories-list li a span {
                font-size: 0.813rem;
            }

    .latest-grid {
        padding: 0 1.25rem 1rem;
    }

    /* NARROWER CARDS ON SMALLER SCREENS - 78% */
    .latest-card {
        flex: 0 0 78%;
        max-width: 78%;
        min-width: 78%;
    }

    .newsletter-widget {
        max-width: 400px;
        width: calc(100% - 2.5rem);
        padding: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .top-row {
        padding: 0 1rem;
    }

    .latest-title {
        font-size: 1.5rem;
    }

    .categories-widget {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

        .categories-widget .widget-title {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

    .mobile-search-input {
        max-width: 180px;
    }

        .mobile-search-input .search-input {
            font-size: 0.688rem;
            padding: 0.5rem 0.65rem 0.5rem 2.1rem;
        }

        .mobile-search-input .search-box svg {
            width: 16px;
            height: 16px;
            left: 0.65rem;
        }

    .categories-list {
        gap: 0.75rem;
    }

        .categories-list li a {
            font-size: 0.75rem;
            padding: 0.625rem 0.5rem;
            min-height: 52px;
            gap: 0.4rem;
        }

            .categories-list li a span {
                font-size: 0.75rem;
            }

    .latest-grid {
        padding: 0 1rem 1rem;
    }

    /* NARROWER CARDS ON SMALLEST SCREENS - 80% */
    .latest-card {
        flex: 0 0 80%;
        max-width: 80%;
        min-width: 80%;
    }

    .newsletter-widget {
        max-width: 350px;
        width: calc(100% - 2rem);
    }
}


/* Expert Panel Section */
.expert-panel-section {
    background: #ffffff;
    padding: 4rem 0;
}

.expert-panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.expert-panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1d2e;
    margin-bottom: 3rem;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.expert-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .expert-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.expert-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}
    .expert-image .expert-photo {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .expert-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.expert-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1d2e;
    margin: 0 0 0.375rem 0;
}

.expert-title {
    font-size: 0.938rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .expert-panel-container {
        padding: 0 2rem;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   MOBILE VIEW - HORIZONTAL LAYOUT
   ============================================ */

@media screen and (max-width: 768px) {
    .expert-panel-section {
        padding: 3rem 0;
    }

    .expert-panel-container {
        padding: 0 1.5rem;
        text-align: center;
    }

    .expert-panel-title {
        font-size: 1.375rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
    }

    /* HORIZONTAL CARD LAYOUT - IMAGE LEFT, INFO RIGHT */
    .expert-card {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 1.25rem 1.5rem;
        gap: 1.25rem;
    }

        .expert-card:hover {
            transform: translateY(-2px);
        }

    .expert-image {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        flex-shrink: 0;
        border: 2px solid #ffffff;
    }

    .expert-info {
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }

    .expert-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .expert-title {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

@media screen and (max-width: 576px) {
    .expert-panel-section {
        padding: 2.5rem 0;
    }

    .expert-panel-container {
        padding: 0 1.25rem;
    }

    .expert-panel-title {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .experts-grid {
        gap: 1rem;
    }

    .expert-card {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .expert-image {
        width: 60px;
        height: 60px;
    }

    .expert-name {
        font-size: 0.938rem;
    }

    .expert-title {
        font-size: 0.813rem;
    }
}

@media screen and (max-width: 480px) {
    .expert-panel-container {
        padding: 0 1rem;
    }

    .expert-panel-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .expert-card {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .expert-image {
        width: 56px;
        height: 56px;
    }

    .expert-name {
        font-size: 0.875rem;
    }

    .expert-title {
        font-size: 0.75rem;
    }
}


/* Recommended Reading Section */
.recommended-reading-section {
    background: #ffffff;
    padding: 5rem 0;
}

.recommended-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.recommended-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recommended-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 0.75rem;
}

.recommended-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.recommended-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .recommended-card:hover {
        transform: translateY(-5px);
    }

.recommended-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

    .recommended-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.recommended-content {
    background: #1a2c44;
    padding: 1.75rem 1.5rem;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
}

.recommended-category {
    display: inline-block;
    background: #f44900;
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.25rem;
}

.recommended-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.recommended-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.recommended-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.recommended-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.9);
}

    .recommended-meta svg {
        width: 16px;
        height: 16px;
    }

.recommended-arrow {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .recommended-container {
        padding: 0 2rem;
    }

    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   MOBILE VIEW - HORIZONTAL SCROLLABLE
   ============================================ */

@media screen and (max-width: 768px) {
    .recommended-reading-section {
        padding: 3rem 0;
        overflow: hidden;
    }

    .recommended-container {
        padding: 0;
    }

    .recommended-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .recommended-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .recommended-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* HORIZONTAL SCROLLABLE GRID */
    .recommended-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1.5rem 1rem;
        scroll-behavior: smooth;
    }

        .recommended-grid::-webkit-scrollbar {
            display: none;
        }

    .recommended-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }

        .recommended-card:hover {
            transform: none;
        }

    .recommended-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .recommended-content {
        padding: 1.25rem 1.25rem;
        gap: 0.75rem;
        border-radius: 0 0 12px 12px;
    }

    .recommended-category {
        font-size: 0.688rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.375rem;
    }

    .recommended-card-title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .recommended-excerpt {
        font-size: 0.813rem;
        line-height: 1.5;
    }

    .recommended-meta {
        font-size: 0.75rem;
    }

        .recommended-meta svg,
        .recommended-arrow {
            width: 14px;
            height: 14px;
        }
}

@media screen and (max-width: 576px) {
    .recommended-reading-section {
        padding: 2.5rem 0;
    }

    .recommended-header {
        padding: 0 1.25rem;
        margin-bottom: 1.75rem;
    }

    .recommended-title {
        font-size: 1.625rem;
    }

    .recommended-subtitle {
        font-size: 0.813rem;
    }

    .recommended-grid {
        padding: 0 1.25rem 1rem;
    }

    .recommended-card {
        flex: 0 0 88%;
        max-width: 88%;
        min-width: 88%;
    }

    .recommended-image {
        height: 180px;
    }

    .recommended-content {
        padding: 1.125rem 1.125rem;
    }

    .recommended-card-title {
        font-size: 0.938rem;
    }

    .recommended-excerpt {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .recommended-header {
        padding: 0 1rem;
    }

    .recommended-title {
        font-size: 1.5rem;
    }

    .recommended-grid {
        padding: 0 1rem 1rem;
    }

    .recommended-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
    }

    .recommended-image {
        height: 170px;
    }

    .recommended-content {
        padding: 1rem;
    }

    .recommended-card-title {
        font-size: 0.875rem;
    }

    .recommended-excerpt {
        font-size: 0.688rem;
    }

    .recommended-meta {
        font-size: 0.688rem;
    }

        .recommended-meta svg,
        .recommended-arrow {
            width: 13px;
            height: 13px;
        }
}


/* Blog CTA Section */
.blog-cta-section {
    background: #1a1d2e;
    padding: 5rem 0;
}

.blog-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.blog-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.blog-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

.blog-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1.063rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-cta-btn-primary {
    background: #f44900;
    color: #ffffff;
    border: 2px solid #f44900;
}

    .blog-cta-btn-primary:hover {
        background: #d63e00;
        border-color: #d63e00;
    }

.blog-cta-btn-secondary {
    background: #ffffff;
    color: #f44900;
    border: 2px solid #ffffff;
}

    .blog-cta-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.9);
    }

/* Responsive */
@media screen and (max-width: 768px) {
    .blog-cta-section {
        padding: 4rem 0;
    }

    .blog-cta-container {
        padding: 0 2rem;
    }

    .blog-cta-title {
        font-size: 2.25rem;
    }

    .blog-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* KEEP BUTTONS IN ONE ROW ON MOBILE */
    .blog-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .blog-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.938rem;
        flex: 1;
        max-width: 180px;
    }
}

@media screen and (max-width: 576px) {
    .blog-cta-section {
        padding: 3rem 0;
    }

    .blog-cta-container {
        padding: 0 1.5rem;
    }

    .blog-cta-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .blog-cta-description {
        font-size: 0.938rem;
    }

    .blog-cta-buttons {
        gap: 0.875rem;
    }

    .blog-cta-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
        max-width: 160px;
    }
}

@media screen and (max-width: 480px) {
    .blog-cta-container {
        padding: 0 1rem;
    }

    .blog-cta-title {
        font-size: 1.625rem;
    }

    .blog-cta-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .blog-cta-buttons {
        gap: 0.75rem;
    }

    .blog-cta-btn {
        padding: 0.65rem 1rem;
        font-size: 0.813rem;
        max-width: 145px;
    }
}

