.blog-header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.cover-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-content {
    margin-bottom: 3rem;
}

.blog-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-content a {
    font-style: italic;
    text-decoration: underline;
}

.blog-content .ordered-list {
    padding-left: 20px;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #555;
}

.blog-nav {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    margin: 2rem 0;
}

.blog-nav-link {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.comment-section {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.comment {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0;
}

.comment-meta {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.comment-form {
    margin-top: 2rem;
}

.side-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.side-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.recent-posts li {
    margin-bottom: 0.8rem;
}

.recent-posts a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .side-section {
        margin-top: 2rem;
    }
}

.author-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(0, 114, 17, 0.1);
    color: var(--primary-green);
}

h3, h4 {
    color: var(--primary-green);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}