.blog-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .blog-card:hover {
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    /* Image Wrapper */
    .blog-card__image-wrapper {
        position: relative;
        overflow: hidden;
        padding-top: 66.67%; /* 3:2 Aspect Ratio */
    }

    .blog-card__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .blog-card:hover .blog-card__image {
        transform: scale(1.05);
    }

    /* Category Tag */
    .blog-card__category-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #E02121 0%, #a91a1a 100%);
        color: #fff;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    /* Date Tag */
    .blog-card__date-tag {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: #fff;
        padding: 10px 15px;
        border-radius: 10px;
        text-align: center;
        min-width: 60px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 2;
    }

    .blog-card__date-tag .day {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #333;
        line-height: 1;
    }

    .blog-card__date-tag .month {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #E02121;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Content */
    .blog-card__content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Meta Information */
    .blog-card__meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
        color: #777;
        font-size: 13px;
    }

    .blog-card__meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-card__meta i {
        color: #E02121;
    }

    /* Title */
    .blog-card__title {
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-card__title a {
        color: #2c3e50;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card__title a:hover {
        color: #E02121;
    }

    /* Excerpt */
    .blog-card__excerpt {
        color: #666;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Footer */
    .blog-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #eee;
        padding-top: 20px;
        margin-top: auto;
    }

    /* Read More Button */
    .blog-card__read-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #E02121;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .blog-card__read-more:hover {
        gap: 12px;
        color: #a91a1a;
    }

    /* Share Dropdown */
    .blog-card__share {
        position: relative;
    }

    .share-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        color: #E02121;
        transition: all 0.3s ease;
    }

    .share-trigger:hover {
        background: #E02121;
        color: #fff;
    }

    .share-dropdown {
        position: absolute;
        bottom: 100%;
        right: 0;
        background: #fff;
        border-radius: 30px;
        padding: 10px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        display: flex;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }

    .blog-card__share:hover .share-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .share-dropdown a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        color: #E02121;
        transition: all 0.3s ease;
    }

    .share-dropdown a:hover {
        background: #E02121;
        color: #fff;
        transform: translateY(-3px);
    }

    /* Empty State */
    .empty-blog-state {
        text-align: center;
        padding: 80px 20px;
        background: #f8f9fa;
        border-radius: 20px;
    }

    .empty-icon {
        font-size: 64px;
        color: #E02121;
        margin-bottom: 20px;
    }

    .empty-blog-state h3 {
        font-size: 24px;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .empty-blog-state p {
        color: #666;
        font-size: 16px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .blog-card__category-tag {
            top: 15px;
            left: 15px;
            padding: 4px 12px;
            font-size: 12px;
        }
        
        .blog-card__date-tag {
            bottom: 15px;
            right: 15px;
            padding: 6px 12px;
        }
        
        .blog-card__date-tag .day {
            font-size: 16px;
        }
        
        .blog-card__date-tag .month {
            font-size: 10px;
        }
        
        .blog-card__title a {
            font-size: 18px;
        }
    }