.featured-article {
    margin-bottom: 3rem;
}

.featured-article .article-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.1), rgba(2, 117, 150, 0.1));
}

.featured-article .article-image > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    background: linear-gradient(transparent 0%, transparent 30%, rgba(0,0,0,0.8) 100%);
    color: white;
}

.featured-article .article-image > div > div {
    width: 100%;
    max-width: 800px;
}

.featured-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.featured-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.featured-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}

.featured-excerpt {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

.featured-btn {
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-btn:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-article .article-image {
        height: 350px;
    }

    .featured-article .article-image > div {
        padding: 2rem;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .featured-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .featured-article .article-image {
        height: 300px;
    }

    .featured-article .article-image > div {
        padding: 1.5rem;
    }

    .featured-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .featured-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .featured-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .featured-meta {
        gap: 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .featured-badge {
        padding: 0.2rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .featured-article .article-image {
        height: 280px;
    }

    .featured-article .article-image > div {
        padding: 1.25rem;
        align-items: center;
        background: linear-gradient(transparent 0%, transparent 20%, rgba(0,0,0,0.9) 100%);
    }

    .featured-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .featured-excerpt {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .featured-meta {
        gap: 0.5rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .featured-article .article-image {
        height: 250px;
    }

    .featured-article .article-image > div {
        padding: 1rem;
    }

    .featured-title {
        font-size: 1.2rem;
    }

    .featured-excerpt {
        -webkit-line-clamp: 2;
    }

    .featured-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
/* Small Hero Section */



/* Featured Article Styles */
.featured-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.featured-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.featured-title {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.featured-excerpt {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.featured-btn {
    background: white;
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border: none;
}

.featured-btn:hover {
    background: var(--light);
    color: var(--primary);
}

/* Blog Layout */
.blog-section {
    padding: 2rem 0 4rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Main Content */
.blog-main {
    margin-bottom: 3rem;
}

/* Article Cards */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-article-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.article-header {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-header h3 a {
    color: inherit;
    text-decoration: none;
}

.article-header h3 a:hover {
    color: var(--primary);
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Category Badges */
.article-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-digital {
    background: rgba(137, 25, 68, 0.1);
    color: var(--primary);
}

.category-sustainability {
    background: rgba(0, 142, 116, 0.1);
    color: var(--accent);
}

.category-compliance {
    background: rgba(2, 117, 150, 0.1);
    color: var(--secondary);
}

.category-strategy {
    background: rgba(137, 25, 68, 0.1);
    color: var(--primary);
}

.category-esg {
    background: rgba(0, 142, 116, 0.1);
    color: var(--accent);
}

.category-innovation {
    background: rgba(2, 117, 150, 0.1);
    color: var(--secondary);
}

/* Article Footer */
.article-footer {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Article Meta - FIXED STYLING */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    align-items: center;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.meta-item i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.read-more:hover {
    color: var(--secondary);
    gap: 0.8rem;
}

.read-more::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover,
.page-link.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.page-link.next {
    width: auto;
    padding: 0 1rem;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sidebar-widget h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text);
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.search-box button {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary);
    padding-left: 0.5rem;
    font-weight: 600;
}

.category-list a span {
    background: var(--light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Popular Posts */
.popular-post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.popular-post h5 a {
    color: var(--text);
    text-decoration: none;
}

.popular-post h5 a:hover {
    color: var(--primary);
}

.popular-post .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.05), rgba(2, 117, 150, 0.05));
    border: none;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.sidebar-newsletter input {
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.sidebar-newsletter .btn {
    width: 100%;
    padding: 0.8rem;
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-layout {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .blog-hero {
    padding: 20rem 0 5rem;
}
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    .blog-hero {
    padding: 8rem 0 3rem;
}
    .blog-hero {
        padding: 4rem 0 2rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero .subtitle {
        font-size: 1rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-excerpt {
        font-size: 0.95rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .blog-article-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .blog-hero {
    padding: 8rem 0 3rem;
}
    .blog-hero {
        padding: 3rem 0 1.5rem;
    }

    .blog-hero h1 {
        font-size: 1.8rem;
    }

    .featured-meta {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .featured-badge {
        padding: 0.2rem 0.8rem;
        font-size: 0.75rem;
    }

    .featured-title {
        font-size: 1.3rem;
    }

    .article-header h3 {
        font-size: 1.2rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
    }

    .article-meta {
        gap: 0.5rem 1rem;
    }

    .meta-item {
        font-size: 0.75rem;
    }

    .read-more {
        font-size: 0.85rem;
    }

    .breadcrumbs ol {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
    padding: 8rem 0 3rem;
}
    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-hero .subtitle {
        font-size: 0.95rem;
    }

    .featured-title {
        font-size: 1.2rem;
    }

    .article-header h3 {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .blog-article-card {
        padding: 1rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}
