/* Blog Preview Section */
.blog-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.blog-preview-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.blog-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    z-index: 1;
}

.blog-preview-industry-insights::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-preview-technology::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-preview-best-practices::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-preview-product-updates::before {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.blog-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: drift 20s linear infinite;
}

.blog-preview-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-preview-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.blog-preview-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-preview-meta {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-preview-meta i {
    color: #667eea;
    margin-right: 0.5rem;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}