/* Article Specific Styles */

.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

.breadcrumb a {
    color: #1E40AF;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1E40AF, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.article-hero-image {
    margin-top: 2rem;
}

.article-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-content {
    padding: 60px 0;
    background: white;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
}

.article-body {
    max-width: none;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1E40AF;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #374151;
}

.article-body strong {
    color: #1F2937;
    font-weight: 600;
}

.important-note {
    background: linear-gradient(135deg, #EBF8FF, #F0FDF4);
    border-left: 4px solid #22C55E;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.important-note p {
    margin-bottom: 0;
    color: #1F2937;
}

.cta-section {
    background: linear-gradient(135deg, #F8FAFC, #E0F2FE);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.related-articles, .quick-links {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.related-articles h3, .quick-links h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-articles ul, .quick-links ul {
    list-style: none;
    padding: 0;
}

.related-articles li, .quick-links li {
    margin-bottom: 0.75rem;
}

.related-articles a, .quick-links a {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-articles a:hover, .quick-links a:hover {
    color: #1E40AF;
}

/* Table Styles */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-body th, .article-body td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.article-body th {
    background: #F8FAFC;
    font-weight: 600;
    color: #1F2937;
}

.article-body tr:hover {
    background: #F9FAFB;
}

/* Code Blocks */
.article-body code {
    background: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #1F2937;
}

.article-body pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Blockquotes */
.article-body blockquote {
    border-left: 4px solid #22C55E;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6B7280;
}

/* Responsive Design for Articles */
@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .related-articles, .quick-links {
        display: inline-block;
        width: calc(50% - 1rem);
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .quick-links {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
    
    .related-articles, .quick-links {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .article-content .container {
        gap: 1.5rem;
    }
    
    .article-body h2 {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 40px;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-content {
        padding: 40px 0;
    }
    
    .important-note, .cta-section {
        padding: 1rem;
    }
    
    .article-body ul, .article-body ol {
        padding-left: 1.5rem;
    }
}

