    .left-sidebar {
        padding-right: 20px;
    }

    .recent-posts-widget {
        margin-top: 15px;
    }

    .recent-post-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eaeaea;
    }

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

    .recent-post-thumb {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        overflow: hidden;
        margin-right: 15px;
        flex-shrink: 0;
    }

        .recent-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .recent-post-content {
        flex: 1;
    }

        .recent-post-content h4 {
            font-size: 16px;
            margin-bottom: 8px;
            line-height: 1.4;
        }

            .recent-post-content h4 a {
                color: #333;
                text-decoration: none;
                transition: color .3s;
            }

                .recent-post-content h4 a:hover {
                    color: #7444fd;
                }

    .post-date {
        font-size: 13px;
        color: #888;
    }

        .post-date i {
            margin-right: 5px;
        }

    .search-widget form {
        position: relative;
    }

    .search-widget input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        border: 1px solid #eaeaea;
        border-radius: 8px;
        font-size: 15px;
        transition: all .3s;
    }

        .search-widget input:focus {
            outline: none;
            border-color: #7444fd;
            box-shadow: 0 0 0 3px rgba(116,68,253,.1);
        }

    .search-widget button {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #7444fd;
        font-size: 18px;
        cursor: pointer;
    }

        .search-widget button:hover {
            color: #5a2ee0;
        }

    @media (max-width: 991px) {
        .left-sidebar {
            padding-right: 0;
            margin-top: 40px;
        }
    }
