﻿/* Blog specific styles */
.blog-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.blog-card {
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.blog-card-img {
    height: 200px;
    object-fit: cover;
}

.blog-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-card-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.blog-card-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.blog-card-author-name {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.blog-card-author-title {
    font-size: 0.8rem;
    color: #6c757d;
}

.blog-categories {
    margin-bottom: 2rem;
}

.blog-category-btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pagination {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.newsletter-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 3rem;
}

.bg-navy {
    background-color: #0d3a67;
    color: white;
}
.article-toc {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .article-toc ul {
        margin-bottom: 0;
    }

.article-section {
    margin-bottom: 2rem;
}

    .article-section h2 {
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }