/* Blog Page Specific Styles */

/* Header positioning for blog page */
.header {
    position: sticky !important;
    top: 0;
    z-index: 2000 !important;
    height: 64px;
    background: rgba(11, 12, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog body styling */
body {
    padding-top: 0 !important;
    background: var(--color-grey-1);
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 95, 11, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(61, 126, 255, 0.2) 0%, transparent 50%);
    overflow-x: hidden;
}

/* Blog cards */
.blog-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    display: flex;
    background: rgba(35, 38, 47, 0.95);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    min-height: 320px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.blog-image-container {
    flex: 0 0 45%;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: rgba(201, 203, 208, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header {
        height: 56px !important;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image-container {
        flex: 0 0 200px;
    }
}
