/* ============================================
   PRIVISO INSIGHTS - Article Pages
   ============================================ */

/* Insights Hero */
.insights-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1c2e 0%, #141628 100%);
    color: #ffffff;
}

.insights-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.insights-hero-subtitle {
    font-size: 1.15rem;
    color: #9ca3af;
    max-width: 700px;
    line-height: 1.7;
}

.insights-hero-subtitle a {
    color: #a78bfa;
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: #9ca3af;
}

.breadcrumb a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

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

.breadcrumb span[aria-current] {
    color: #d1d5db;
}

/* Filter Bar */
.insights-filters {
    padding: 32px 0 0;
    border-bottom: 1px solid #e5e7eb;
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #c92228;
    color: #c92228;
}

.filter-btn.active {
    background: #c92228;
    border-color: #c92228;
    color: #ffffff;
}

/* Articles Grid */
.insights-grid-section {
    padding: 48px 0 80px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

/* Article Card */
.insight-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: #c92228;
    box-shadow: 0 10px 25px -5px rgba(201, 34, 40, 0.1);
    transform: translateY(-4px);
}

.insight-card-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c92228;
    background: rgba(201, 34, 40, 0.08);
    border-radius: 100px;
    margin-bottom: 16px;
}

.insight-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.insight-card-title a {
    color: #1a1c1e;
    transition: color 0.2s ease;
}

.insight-card-title a:hover {
    color: #c92228;
}

.insight-card-excerpt {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d1d5db;
}

/* CTA Section */
.insights-cta {
    padding: 0 0 80px;
}

.insights-cta-box {
    background: linear-gradient(135deg, #1a1c2e 0%, #141628 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    color: #ffffff;
}

.insights-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.insights-cta-box p {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.insights-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Article Hero */
.article-hero {
    padding: 140px 0 48px;
    background: linear-gradient(135deg, #1a1c2e 0%, #141628 100%);
    color: #ffffff;
}

.article-category-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.15);
    border-radius: 100px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #9ca3af;
    flex-wrap: wrap;
}

.article-meta .meta-dot {
    background: #6b7280;
}

/* Article Body */
.article-body {
    padding: 64px 0;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1c1e;
    margin: 48px 0 16px;
    padding-top: 16px;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1c1e;
    margin: 32px 0 12px;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #363839;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 24px 24px;
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #363839;
    margin-bottom: 8px;
}

.article-content strong {
    font-weight: 600;
    color: #1a1c1e;
}

.article-content blockquote {
    border-left: 4px solid #c92228;
    padding: 16px 24px;
    margin: 32px 0;
    background: #fef2f2;
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    color: #7f1d1d;
    font-style: italic;
    margin-bottom: 0;
}

/* Key Takeaways Box */
.key-takeaways {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.key-takeaways h3 {
    color: #166534;
    margin-top: 0;
    font-size: 1.15rem;
}

.key-takeaways ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.key-takeaways li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #15803d;
}

.key-takeaways li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* Checklist Box */
.action-checklist {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.action-checklist h3 {
    color: #1e40af;
    margin-top: 0;
    font-size: 1.15rem;
}

.action-checklist ol {
    margin-left: 20px;
    margin-bottom: 0;
}

.action-checklist li {
    color: #1e3a5f;
    margin-bottom: 8px;
}

/* Warning/Alert Box */
.warning-box {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 24px 32px;
    margin: 32px 0;
}

.warning-box p {
    color: #92400e;
    margin-bottom: 0;
}

/* Podcast Callout */
.podcast-callout {
    background: linear-gradient(135deg, #1a1c2e 0%, #252740 100%);
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.podcast-callout-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.podcast-callout-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.podcast-callout-text p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.podcast-callout-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.podcast-callout-links a {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.podcast-callout-links a:hover {
    background: rgba(167, 139, 250, 0.15);
}

/* Article CTA Box */
.article-cta {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

.article-cta h3 {
    color: #991b1b;
    margin-top: 0;
    font-size: 1.35rem;
}

.article-cta p {
    color: #7f1d1d;
    max-width: 500px;
    margin: 0 auto 24px;
}

.article-cta .btn {
    margin: 0 8px;
}

/* Related Articles */
.related-articles {
    border-top: 1px solid #e5e7eb;
    padding: 48px 0;
    margin-top: 48px;
}

.related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1a1c1e;
}

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

.related-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: #c92228;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #c92228;
    margin-bottom: 8px;
}

.related-card h4 {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.related-card h4 a {
    color: #1a1c1e;
}

.related-card h4 a:hover {
    color: #c92228;
}

.related-card-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .insights-hero {
        padding: 120px 0 40px;
    }

    .insights-hero-title {
        font-size: 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .article-hero {
        padding: 120px 0 32px;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .insights-cta-box {
        padding: 40px 24px;
    }

    .podcast-callout {
        flex-direction: column;
        text-align: center;
    }

    .podcast-callout-links {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .insight-card {
        padding: 24px;
    }
}
