/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px 0;
    font-size: 14px;
    color: #999999;
}

.breadcrumb a {
    color: #7A8C6F;
    text-decoration: none;
    transition: color 240ms ease;
}

.breadcrumb a:hover {
    color: #333333;
}

/* Article Header */
.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    text-align: center;
}

.article-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7A8C6F;
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-lead {
    font-size: 20px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999999;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Container */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: start;
}

/* Main Content */
.article-content {
    background: white;
    border-radius: 12px;
    padding: 48px 56px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-content p {
    font-size: 18px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    font-size: 18px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content blockquote {
    background: #F5F2F7;
    border-left: 4px solid #D4CBDB;
    padding: 24px 32px;
    margin: 32px 0;
    font-style: italic;
    font-size: 19px;
    color: #555555;
    line-height: 1.7;
}

.article-content a {
    color: #7A8C6F;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 240ms ease;
}

.article-content a:hover {
    color: #333333;
}

/* Bible Verse Box */
.bible-verse {
    background: linear-gradient(135deg, #E5DFE8 0%, #F5F2F7 100%);
    border-radius: 10px;
    padding: 28px 32px;
    margin: 36px 0;
    border-left: 4px solid #7A8C6F;
}

.bible-verse-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bible-verse-reference {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
}

/* Pull Quote */
.pull-quote {
    font-size: 24px;
    font-weight: 600;
    color: #7A8C6F;
    line-height: 1.5;
    text-align: center;
    margin: 48px 0;
    padding: 0 40px;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    padding: 6px 0;
    transition: color 240ms ease;
}

.toc-list a:hover {
    color: #7A8C6F;
}

/* Related Articles */
.related-articles {
    background: #F5F2F7;
    padding: 60px 40px;
    margin-top: 60px;
}

.related-container {
    max-width: 1000px;
    margin: 0 auto;
}

.related-articles h2 {
    font-size: 26px;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    display: block;
    transition: all 240ms ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.related-card h3 {
    font-size: 17px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.related-meta {
    font-size: 13px;
    color: #999999;
}

/* Article CTA */
.article-cta {
    max-width: 680px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, #E5DFE8 0%, #F5F2F7 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.article-cta h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: #7A8C6F;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 240ms ease;
}

.cta-button:hover {
    background: #6A7C5F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-lead {
        font-size: 18px;
    }
    
    .article-content {
        padding: 32px 28px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content p,
    .article-content ul {
        font-size: 17px;
    }
    
    .pull-quote {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
}
