.blog-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    overflow: hidden;
}


.blog-image {
    background: linear-gradient(135deg, var(--theme-primary-color), #0066ff);
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png');
    opacity: 0.1;
}

.blog-meta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
}

.read-more-btn {
    background: transparent;
    border: 1px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--theme-primary-color);
    color: white; 
}

.blog-stats {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
}

.featured-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.pagination {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.pagination-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.pagination-btn.active {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
} 