.blog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 15px 0;
    }

    .blog-content p {
        line-height: 1.8;
        font-size: 18px;
    }

    .blog-banner {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Sidebar styles */
    .blog-sidebar .search-box .form-control {
        border-radius: 999px 0 0 999px;
        border-right: 0;
        box-shadow: none;
    }

    .blog-sidebar .search-box .btn {
        border-radius: 0 999px 999px 0;
        border-left: 0;
    }

    .blog-sidebar-card {
        border-radius: 18px;
        border: 1px solid #eee;
    }

    .blog-sidebar-card h5 {
        font-weight: 600;
    }

    .blog-sidebar .recent-post-item img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 12px;
    }

    .blog-sidebar .recent-post-item {
        padding: 8px 0;
        border-radius: 12px;
        transition: background-color .2s, transform .2s;
    }

    .blog-sidebar .recent-post-item:hover {
        background-color: #f7f7f7;
        transform: translateY(-1px);
    }

    .blog-sidebar .recent-post-item-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }