/* Main Article Container - Centered Single Column */
.article-container {
    max-width: 1000px;
}

.article-header {
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.article-meta {
    justify-content: center;
    font-size: 0.95rem;
}

.article-meta .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
}

.article-company {
    font-size: 1rem;
}

.article-company a:hover {
    text-decoration: underline !important;
}

.company-logo-header {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

/* Article Body - Medium Style Typography */
.article-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
    line-height: 1.75;
    color: #292929;
    word-wrap: break-word;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body table {
    font-size: 1rem;
}

.article-body h2,
.article-body h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* AI Summary Locked State */
.ai-summary-locked {
    border-radius: 8px;
}

/* Tags/Topics Styling - Redesigned */
.tags-section {
    border-top: 1px solid #e9ecef;
}

.topic-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-1px);
}


/* Related Articles */
.related-article-item {
    transition: background-color 0.2s;
}

.related-article-item:hover {
    background-color: #f8f9fa;
}

.related-article-item a {
    display: block;
}

.related-article-item h3 {
    transition: color 0.2s;
}

.related-article-item:hover h3 {
    color: #0d6efd !important;
}

.related-articles-list {
    margin-bottom: 2rem;
}

.related-article-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

/* FAQ Section - Pills */
.faq-section {
    border-top: 1px solid #e9ecef;
}

.faq-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #f8f9fa;
    color: #495057;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
}

.faq-pill:hover {
    background-color: #e9ecef;
    color: #212529;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Email CTA Section */
.email-cta-container {
    max-width: 700px;
}

.email-cta-section .lead {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-body {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .company-logo-header {
        max-width: 80px;
    }
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 0.9rem;
    background-color: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
}

.breadcrumb-item a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Utility - Remove default card styling if accidentally used */
.article-container .card {
    border: none;
    box-shadow: none;
    background: none;
}

