/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: #fff;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.blog-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Blog Posts Section */
.blog-posts {
    padding: 60px 0 80px;
    background: #fff;
}

.blog-posts-header {
    margin-bottom: 40px;
}

.blog-posts-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Blog Placeholder */
.blog-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.blog-placeholder p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Blog Card Styles (for future use) */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-posts {
        padding: 40px 0 60px;
    }

    .blog-posts-header h2 {
        font-size: 28px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-placeholder {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-posts-header h2 {
        font-size: 24px;
    }
}
