.blog-hero {
    background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.blog-hero h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.blog-hero p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-meta {
    font-size: 13px;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-body {
    padding: 60px 40px;
    background: #f8fafc;
    min-height: 60vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(15, 32, 68, 0.12);
    transform: translateY(-2px);
}

.blog-card-content {
    padding: 28px;
}

.blog-date {
    font-size: 12px;
    color: #c9a84c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
}

.no-posts {
    color: #64748b;
    font-size: 15px;
    text-align: center;
    grid-column: 1 / -1;
}

/* Post content */
.blog-post-content {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px;
}

.blog-post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f2044;
    margin-top: 36px;
    margin-bottom: 12px;
}

.blog-post-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2044;
    margin-top: 28px;
    margin-bottom: 10px;
}

.blog-post-content p {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 0 0 16px 24px;
}

.blog-post-content ul li, .blog-post-content ol li {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 6px;
}

.blog-post-content strong {
    color: #0f2044;
    font-weight: 600;
}

.blog-post-content a {
    color: #0f2044;
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: #c9a84c;
}

/* CTA box at end of posts */
.blog-cta {
    background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
    color: #ffffff;
}

.blog-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 0;
}

.blog-cta p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.blog-cta a {
    display: inline-block;
    background: #c9a84c;
    color: #0f2044;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.blog-cta a:hover {
    background: #b8952f;
}

@media (max-width: 768px) {
    .blog-hero { padding: 48px 24px; }
    .blog-body { padding: 40px 24px; }
    .blog-post-content { padding: 28px; }
    .blog-hero h1 { font-size: 28px; }
}