/* BLOG DETAIL CSS - LPN LANKA NEXUS */

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --navy: #0c1e35;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
}

.blog-detail-container {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

/* ARTICLE HEADER */
.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: none;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-meta {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

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

/* FEATURED IMAGE */
.featured-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ARTICLE CONTENT */
.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-body p {
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 50px 0 25px;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 20px;
}

.article-body blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 500;
}

.article-body img {
    width: 100%;
    border-radius: 16px;
    margin: 40px 0;
}

/* SHARE SECTION */
.article-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    display: none;
}

.share-label {
    font-weight: 700;
    color: var(--navy);
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-detail-container {
        margin: 40px auto 60px;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .featured-image {
        height: 300px;
        margin-bottom: 40px;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .article-body h2 {
        font-size: 1.7rem;
    }

    .article-body blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
}