/* static/blog/css/blog_detail.css */

/* --- 1. Hero Section --- */
.blog-hero {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    padding: 80px 0 60px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-hero__meta {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.blog-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* --- 2. Image Gallery --- */
.blog-gallery {
    margin-bottom: 40px;
}

.blog-gallery__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-gallery__img:hover {
    transform: scale(1.02);
}

.blog-gallery__caption {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 8px;
    font-style: italic;
}

/* --- 3. Story Typography --- */
.blog-story {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2d3436;
}

.blog-story p {
    margin-bottom: 1.5rem;
}

.blog-story strong {
    color: #b21f1f;
}

.blog-story a {
    color: #1a2a6c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #fdbb2d;
    transition: color 0.2s;
}

.blog-story a:hover {
    color: #b21f1f;
}

/* --- 4. Quote Styling --- */
.blog-story blockquote {
    border-left: 5px solid #b21f1f;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #495057;
}

/* --- 5. Facebook CTA Button (if you add it as a separate block) --- */
.blog-cta {
    text-align: center;
    margin: 40px 0;
}

.blog-cta .btn {
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    background: #1877f2;
    color: white;
    border: none;
    transition: all 0.2s;
}

.blog-cta .btn:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 20px;
        border-radius: 0 0 20px 20px;
    }

    .blog-hero__title {
        font-size: 2.2rem;
    }

    .blog-gallery__img {
        height: 180px;
    }
}