.blog {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-content {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    margin-top: 30px;
}

/* Categories */
.categories {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.categories h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    font-size: 16px;
    color: #0073aa;
    font-weight: 500;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-list a:hover {
    background-color: #f0f8ff;
    color: #005d8a;
}

/* Posts Container */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-posts,
.new-posts,
.wordpress-posts {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.featured-posts:hover,
.new-posts:hover,
.wordpress-posts:hover {
    transform: translateY(-5px);
}

.featured-posts h2,
.new-posts h2,
.wordpress-posts h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.post-list {
    list-style: none;
}

.post-list li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.post-list li:before {
    content: "\f054"; /* Font Awesome chevron-right icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0073aa;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-list a {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-list a:hover {
    color: #0073aa;
}

.post-list strong {
    color: #0073aa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .categories {
        margin-bottom: 20px;
    }

    .post-list a,
    .category-list a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 40px 0;
    }

    .posts-container {
        gap: 20px;
    }

    .featured-posts,
    .new-posts,
    .wordpress-posts {
        padding: 15px;
    }

    .featured-posts h2,
    .new-posts h2,
    .wordpress-posts h2 {
        font-size: 20px;
    }
}