﻿/* Blog post specific styles */
.blog-post-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.blog-post-meta {
    color: #6c757d;
    margin-top: 1rem;
}

.blog-post-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.blog-post-author-info {
    line-height: 1.2;
}

.blog-post-author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.blog-post-author-title {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #343a40;
}

    .blog-post-content h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-post-content h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .blog-post-content p {
        margin-bottom: 1.5rem;
    }

    .blog-post-content img {
        max-width: 100%;
        height: auto;
        margin: 2rem 0;
    }

    .blog-post-content blockquote {
        border-left: 5px solid #0d6efd;
        padding-left: 1rem;
        margin-left: 0;
        margin-right: 0;
        font-style: italic;
        color: #6c757d;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .blog-post-content li {
        margin-bottom: 0.5rem;
    }

.blog-post-tags {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-post-tag {
    display: inline-block;
    background-color: #e9ecef;
    padding: 0.35rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #495057;
    text-decoration: none;
}

    .blog-post-tag:hover {
        background-color: #dee2e6;
        color: #212529;
    }

.blog-related-posts {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.blog-related-post {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .blog-related-post:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.blog-related-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1rem;
}

.blog-related-post-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.blog-related-post-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-comments {
    margin-top: 3rem;
}

.blog-comment {
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.blog-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-comment-author {
    font-weight: 600;
}

.blog-comment-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.blog-comment-content {
    color: #495057;
}

.blog-comment-form {
    margin-top: 3rem;
}

.share-buttons {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

    .share-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #f8f9fa;
        border-radius: 50%;
        margin-right: 0.5rem;
        color: #495057;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .share-buttons a:hover {
            background-color: #0d6efd;
            color: white;
        }

.bg-navy {
    background-color: #0d3a67;
    color: white;
}

/* Table of Contents */
.toc-container {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
}

.toc-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

    .toc-list li {
        margin-bottom: 0.5rem;
    }

    .toc-list a {
        color: #495057;
        text-decoration: none;
    }

        .toc-list a:hover {
            color: #0d6efd;
            text-decoration: underline;
        }


.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;
    }

/* Article Summary Styles */
.article-summary {
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
}

.summary-container {
    padding: 1.5rem;
}

    .summary-container h4 {
        color: #0d6efd;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.summary-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Actionable Information Styles */
.actionable-info {
    margin: 3rem 0;
}

    .actionable-info h3 {
        margin-bottom: 1.5rem;
        color: #212529;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e9ecef;
    }

.actionable-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.actionable-item {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .actionable-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.actionable-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.actionable-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #212529;
}

.actionable-content p {
    margin-bottom: 0;
    color: #6c757d;
}

@media (max-width: 768px) {
    .actionable-item {
        flex-direction: column;
    }

    .actionable-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}