/* ==========================================================
   BLOG PAGE — Kajhi Trans
   Stylesheet for app/Views/blog_list.php & blog_detail.php
   ========================================================== */

.blog-hero {
    background: linear-gradient(rgba(10, 14, 26, 0.75), rgba(10, 14, 26, 0.75)), url('../img/banner1.png') no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.blog-hero-desc {
    color: var(--text-muted, #94a3b8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
    }
    .blog-hero-title {
        font-size: 1.8rem;
    }
    .blog-hero-desc {
        font-size: 0.9rem;
    }
}
