/* Standard Blog Item */
    .standard-blog-item .blog-img-wrap {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    
    .standard-blog-item .date-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #A249ED;
        color: #fff;
        padding: 10px 15px;
        border-radius: 10px;
        text-align: center;
        line-height: 1.2;
    }
    .standard-blog-item .date-badge .day { display: block; font-size: 20px; font-weight: 700; }
    .standard-blog-item .date-badge .month { display: block; font-size: 12px; text-transform: uppercase; }

    .standard-blog-item .blog-title a {
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 700;
        font-size: 28px;
        transition: color 0.3s;
    }
    .standard-blog-item .blog-title a:hover { color: #A249ED; }

    .standard-blog-item .blog-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
    }

    .standard-blog-item .read-more-btn {
        display: inline-flex;
        align-items: center;
        color: #1a1a1a;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid #ddd;
        padding-bottom: 5px;
        transition: all 0.3s;
    }
    .standard-blog-item .read-more-btn:hover {
        color: #A249ED;
        border-color: #A249ED;
    }

    /* Sidebar Widgets */
    .widget-title {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        position: relative;
        padding-left: 15px;
    }
    .widget-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 4px;
        background: #A249ED;
        border-radius: 2px;
    }

    .search-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        color: #A249ED;
    }

    .tag-cloud .tag-link {
        display: inline-block;
        background: #f4f4f4;
        color: #666;
        padding: 8px 15px;
        border-radius: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.3s;
    }
    .tag-cloud .tag-link:hover {
        background: #A249ED;
        color: #fff;
    }
