/* Blog Home Hero Section */
.blog-home-hero-section {
    margin-bottom: 2rem;
}

.blog-home-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 60%, #7c3aed 100%);
    color: #fff;
    border-radius: 0.2rem;
    padding: 1rem 1rem;
}

.blog-home-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.2rem;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.blog-home-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}

.blog-home-hero .lead {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 640px;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-post-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 0.3rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.blog-post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.blog-post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.blog-post-card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-card-title a:hover {
    color: #667eea;
}

.blog-post-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-post-card-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.blog-post-card-author,
.blog-post-card-date {
    display: flex;
    align-items: center;
    color: #666;
}

.blog-post-card-author a {
    color: #667eea;
    text-decoration: none;
    margin-left: 0.25rem;
}

.blog-post-card-author a:hover {
    text-decoration: underline;
}

.blog-post-card-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.blog-stat-item {
    display: flex;
    align-items: center;
    color: #555;
}

.blog-stat-item i {
    color: #667eea;
}

.blog-post-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.blog-post-card-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Blog Header (legacy) */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.blog-header h1 {
    color: white;
}

.blog-header .lead {
    color: rgba(255, 255, 255, 0.9);
}

.blog-header .btn-group {
    justify-content: center;
}

.btn-group.gap-2 {
    display: flex;
    gap: 1rem;
}

/* Blog Post Detail Page Styles */
.blog-post-container {
    background: #f8f9fa;
    min-height: 100vh;
}

.blog-post {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post-header h1 {
    line-height: 1.4;
    color: #222;
}

.blog-post-meta {
    font-size: 0.95rem;
}

.blog-post-image {
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    color: #d63384;
}

.blog-post-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
}

.blog-post-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #666;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-post-actions {
    display: flex;
    gap: 1rem;
}

.blog-post-admin-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Blog Write/Edit Form Styles */
.blog-editor-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.blog-editor-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-editor-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-editor-header h1 {
    color: #222;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.editor-toolbar {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.editor-toolbar button {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #d0d0d0;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.editor-toolbar button:hover {
    background: #e0e0e0;
    border-color: #999;
}

.editor-toolbar button.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.editor-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.editor-tab {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
}

.editor-tab:hover {
    background: #f0f0f0;
}

.editor-tab.active {
    background: white;
    border-bottom: 2px solid #667eea;
}

.editor-textarea {
    width: 100%;
    min-height: 400px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
}

.editor-preview {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-height: 400px;
}

.editor-preview h1,
.editor-preview h2,
.editor-preview h3,
.editor-preview h4,
.editor-preview h5,
.editor-preview h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.editor-preview p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-input-group input {
    flex: 1;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.category-tag {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.category-tag .remove-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.ai-suggestions {
    background: #f0f7ff;
    border-left: 4px solid #667eea;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.ai-suggestions-title {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.suggestion-item {
    padding: 0.75rem;
    background: white;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.suggestion-item small {
    color: #666;
}

/* Blog My Posts Page Styles */
.blog-my-posts-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.blog-posts-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-posts-table table {
    margin-bottom: 0;
}

.blog-posts-table th {
    background: #f8f9fa;
    border-top: none;
    font-weight: 600;
    color: #333;
    padding: 1rem;
}

.blog-posts-table td {
    padding: 1rem;
    vertical-align: middle;
}

.blog-posts-table tbody tr:hover {
    background: #f8f9fa;
}

.post-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-status.draft {
    background: #fff3cd;
    color: #856404;
}

.post-status.published {
    background: #d4edda;
    color: #155724;
}

.post-status.pending {
    background: #d1ecf1;
    color: #0c5460;
}

.post-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.post-status.archived {
    background: #e2e3e5;
    color: #383d41;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
}

.post-actions .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
    }

    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-meta .ms-auto {
        margin-left: 0 !important;
        width: 100%;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-editor-form {
        padding: 1rem;
    }

    .editor-tabs {
        flex-wrap: wrap;
    }

    .editor-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .editor-textarea {
        min-height: 300px;
    }

    .editor-preview {
        min-height: 300px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group.gap-2 button,
    .btn-group.gap-2 a {
        width: 100%;
    }

    .post-actions {
        flex-wrap: wrap;
    }

    .blog-header .btn-group {
        flex-direction: column;
    }

    .blog-header .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 1rem;
    }

    .blog-post-image {
        max-height: 300px;
    }

    .blog-post-content {
        font-size: 0.95rem;
    }

    .editor-toolbar {
        padding: 0.5rem;
    }

    .editor-toolbar button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .category-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
.quiz-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.2rem;
    margin-bottom: 2rem;
}

/* ================================================
   QUIZ LIST PAGE STYLES (quizzes_list.html)
   ================================================ */

/* Page header — mirrors .page-header from subjects.css */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 60%, #7c3aed 100%);
    color: white;
    padding: 0.7rem 0 0.8rem;
    margin-bottom: 1.25rem;
    border-radius: 0.2rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.page-header-title {
    font-size: clamp(1.7rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.page-header-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.3rem 0 0;
}

/* Action bar */
.quizzes-action-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quizzes-counter {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.quizzes-count {
    color: #333;
}

.quizzes-search {
    flex: 1;
    min-width: 160px;
}

.quizzes-search .form-control {
    border-radius: 0.2rem;
    border: 1.5px solid #e0e0e0;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.quizzes-search .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Info badges on cards */
.quiz-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.08);
    color: #555;
    border-radius: 0.2rem;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

/* Card title */
.quiz-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Legacy header override (kept for quiz-taking page) */
.quiz-header {
    padding: 1rem 1rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.quiz-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.quiz-header p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-top: 0.5rem;
}

.my-quizzes-container {
    margin-bottom: 3rem;
}

.my-quizzes-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.my-quizzes-card {
    background: white;
    border-radius: 0.3rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0;
}

.my-quizzes-table {
    margin: 0;
}

.my-quizzes-table thead th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    color: #6b7280;
    background: #f8f9ff;
    border-bottom: 2px solid #eef0ff;
}

.my-quizzes-table td {
    vertical-align: middle;
}

.quiz-title {
    font-weight: 600;
    color: #1f2937;
}

.quiz-subtitle {
    color: #6b7280;
    font-size: 0.85rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.status-draft {
    background: #fff7ed;
    color: #c2410c;
}

.status-published {
    background: #ecfdf3;
    color: #047857;
}

.status-archived {
    background: #f3f4f6;
    color: #4b5563;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ================================================
   MARKDOWN CONTENT STYLES
   ================================================ */

.markdown-content {
    line-height: 1.8;
    color: #333;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1f2937;
}

.markdown-content h1 {
    font-size: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.markdown-content h2 {
    font-size: 1.75rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.3rem;
}

.markdown-content h3 {
    font-size: 1.5rem;
}

.markdown-content h4 {
    font-size: 1.25rem;
}

.markdown-content h5 {
    font-size: 1.1rem;
}

.markdown-content h6 {
    font-size: 1rem;
    color: #666;
}

.markdown-content p {
    margin-bottom: 1rem;
}

.markdown-content ul,
.markdown-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.markdown-content ul li,
.markdown-content ol li {
    margin-bottom: 0.5rem;
}

.markdown-content ul ul,
.markdown-content ol ol {
    margin-top: 0.5rem;
}

.markdown-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
    background: #f8f9ff;
    padding: 0.75rem 1rem;
}

.markdown-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: #d73a49;
}

.markdown-content pre {
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.markdown-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.markdown-content table th {
    background: #f8f9ff;
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #667eea;
}

.markdown-content table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.markdown-content table tr:hover {
    background: #f9f9f9;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.markdown-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid #667eea;
    transition: all 0.2s;
}

.markdown-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.markdown-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ddd, #667eea, #ddd);
    margin: 2rem 0;
}

/* Highlight.js theme overrides */
.markdown-content .highlight {
    background: #1e1e1e;
    border-radius: 5px;
    overflow-x: auto;
}

.markdown-content .hljs {
    background: transparent;
    padding: 0;
    color: #e0e0e0;
}

.markdown-content .hljs-string { color: #ce9178; }
.markdown-content .hljs-number { color: #b5cea8; }
.markdown-content .hljs-literal { color: #569cd6; }
.markdown-content .hljs-attr { color: #9cdcfe; }
.markdown-content .hljs-variable { color: #9cdcfe; }
.markdown-content .hljs-title { color: #dcdcaa; }
.markdown-content .hljs-built_in { color: #569cd6; }
.markdown-content .hljs-keyword { color: #569cd6; }
.markdown-content .hljs-type { color: #4ec9b0; }
.markdown-content .hljs-comment { color: #6a9955; }

/* ================================================
   POST ACTIONS AND REACTIONS
   ================================================ */

.blog-post-actions-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.action-reaction-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.action-reaction-btn:hover {
    transform: scale(1.05);
}

.action-reaction-btn .reaction-count {
    font-weight: 700;
    min-width: 1.5rem;
    text-align: center;
}

.blog-post-author-actions {
    display: flex;
    gap: 0.75rem;
}

.blog-post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE BLOG HOME HERO
   ================================================ */

@media (max-width: 768px) {
    .blog-home-hero {
        padding: 1.5rem;
    }

    .blog-home-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }

    .blog-home-hero .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-home-hero {
        padding: 1rem;
    }

    .blog-home-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .blog-home-hero .lead {
        font-size: 0.95rem;
    }

    .blog-posts-grid {
        gap: 1rem;
    }

    .blog-post-card-content {
        padding: 1rem;
    }

    .blog-post-card-title {
        font-size: 1.1rem;
    }

    .blog-post-card-meta {
        gap: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .blog-post-card-stats {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .blog-post-card-actions {
        gap: 0.5rem;
    }

    .blog-post-card-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ================================================
   DARK MODE SUPPORT
   ================================================ */

[data-bs-theme="dark"] .blog-home-hero {
    background: linear-gradient(135deg, #0f1927 0%, #1a2d5f 60%, #351c5c 100%);
}

[data-bs-theme="dark"] .blog-home-hero h1 {
    color: #e0e8ff;
}

[data-bs-theme="dark"] .blog-home-hero .lead {
    color: rgba(255, 255, 255, 0.8);
}

[data-bs-theme="dark"] .blog-post-card {
    background: #121a2a;
    border-color: #243042;
}

[data-bs-theme="dark"] .blog-post-card:hover {
    border-color: #7eb4ff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .blog-post-card-title a {
    color: #dce8f8;
}

[data-bs-theme="dark"] .blog-post-card-title a:hover {
    color: #7eb4ff;
}

[data-bs-theme="dark"] .blog-post-card-excerpt {
    color: #9aacbf;
}

[data-bs-theme="dark"] .blog-post-card-meta {
    color: #6a7d92;
    border-bottom-color: #243042;
}

[data-bs-theme="dark"] .blog-post-card-author,
[data-bs-theme="dark"] .blog-post-card-date {
    color: #9aacbf;
}

[data-bs-theme="dark"] .blog-post-card-author a {
    color: #7eb4ff;
}

[data-bs-theme="dark"] .blog-post-card-author a:hover {
    color: #b8d4ff;
}

[data-bs-theme="dark"] .blog-stat-item {
    color: #9aacbf;
}

[data-bs-theme="dark"] .blog-stat-item i {
    color: #7eb4ff;
}
