/* ═══ READ BLOG HERO ═══ */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../../images/carousel/banner_1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.5rem;
    animation: fadeUp 0.9s ease both;
}

.blog-category-pill {
    display: inline-block;
    background: var(--gold);
    color: var(--black, #000);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.blog-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

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

/* ═══ BLOG CONTENT ═══ */
.blog-content-section {
    padding: 5rem 0;
    background: var(--bg);
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.blog-body p {
    margin-bottom: 2rem;
}

.blog-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 3rem 0 1.5rem;
}

.blog-body img {
    width: 100%;
    border-radius: 8px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: rgba(201, 168, 76, 0.05);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text);
}

/* ═══ RELATED POSTS ═══ */
.related-posts {
    padding: 5rem 0;
    background: var(--card-bg, #111);
    border-top: 1px solid var(--border);
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.related-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
    }
    
    .blog-body {
        font-size: 1rem;
    }
}
