/* Blog Page Styles */
.blog-page {
    padding: 2rem 0;
}

.blog-page h2 {
    font-size: 2.8rem;
    color: #222;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.blog-page > .container > p {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin: 0 auto 3rem auto;
    max-width: 700px;
    line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.blog-tag {
    background: #f0f0f0;
    color: #333;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.7rem;
    color: #555;
}

/* Coming Soon Overlay */
.blog-card.coming-soon {
    position: relative;
}

.blog-coming-soon-badge {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page h2 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        padding: 1.5rem;
    }

    .blog-card h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .blog-card {
        padding: 1.25rem;
    }

    .blog-card h3 {
        font-size: 1.05rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }
}
