/* =============================================
   BLOG DETAIL STYLES
   Shared CSS for individual blog post pages.
   ============================================= */

.blog-header {
    background: #fdf5f8;
    padding: 100px 0 80px;
    text-align: center;
    margin-bottom: 60px;
}

.blog-meta {
    color: #e8a2c0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.blog-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-content {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-share {
    border-top: 1px solid #f0f0f0;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-featured-image {
        height: 300px;
    }
}