/* 
   Blog View Specific Styles
   LNSK Jewellers Theme
*/
.desktop-nav .row {
    display: flex;
    align-items: center;
}

.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    margin-top: 150px;
    /* Offset for header */
}

.blog-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.blog-category {
    display: inline-block;
    background: #C7A05A;
    color: #fff;
    padding: 5px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.blog-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-meta-info {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.blog-meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Content Section --- */

.blog-article-container {
    padding: 80px 0;
    background: #fff;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.8;
}

.blog-post-content h2,
.blog-post-content h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-blockquote {
    border-left: 4px solid #C7A05A;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #444;
    font-size: 1.6rem;
}

.blog-image-full {
    width: 100%;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Sidebar Style (Optional) --- */
.blog-sidebar {
    position: sticky;
    top: 120px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #eee;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C7A05A;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.2rem;
    }

    .blog-hero {
        height: 45vh;
        margin-top: 120px;
    }

    .blog-article-container {
        padding: 40px 0;
    }

    .blog-post-content {
        font-size: 1.15rem;
        padding: 0;
        /* Let the container handle horizontal padding */
    }

    .blog-blockquote {
        padding-left: 15px;
        font-size: 1.3rem;
        margin: 25px 0;
    }

    .blog-hero-content {
        padding: 0 15px;
    }
}