/* Blog Article Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    line-height: 1.6;
}

/* Hero Section */
.article-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 1rem 4rem;
    /* Increased top padding for header visibility */
    text-align: center;
}

.article-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    max-width: 1000px;
    /* Increased width */
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.article-hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Main Container */
.article-container {
    max-width: 1000px;
    /* Increased from 800px */
    margin: 0 auto;
    padding: 4rem 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
    display: block;
}

/* Content Typography */
.article-content {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.8;
    color: #334155;
}

.article-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-content p {
    margin-bottom: 1.75rem;
}

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

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content strong {
    font-weight: 700;
    color: #0f172a;
}

/* Keyword Tags */
.keyword-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.keyword-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Example Box */
.example-box {
    background: #fefce8;
    border: 1px solid #fef08a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #854d0e;
    font-size: 1.05rem;
}

/* CTA Box */
.cta-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 1.125rem;
}

/* Step Cards */
.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Author Bio */
.author-bio {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-top: 4rem;
    border: 1px solid #e2e8f0;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: #004194;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Footer Navigation */
.blog-footer-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.blog-footer-nav a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.blog-footer-nav a:hover {
    color: #2563eb;
}