/* Pilot Version 10 */
/* (c) Laurent Groult | Air4.media 2007-2026 */
/* modules/airblog/assets/css/blog-base.css 10.03 */

/* ============================================
   AirBlog Base Styles
   Uses --site-* design tokens from DesignTokenService
   Layout vars (--blog-header-bg etc.) set by theme files
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ---- Layout ---- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-layout {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 1;
    min-width: 0;
}

.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .blog-layout {
        flex-direction: column;
        gap: 32px;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
    }
}

/* ---- Header ---- */

.blog-header {
    background: var(--blog-header-bg, var(--site-bg-primary, #fff));
    border-bottom: 1px solid var(--site-border, #e5e7eb);
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--site-text-primary, #111827);
    text-decoration: none;
}

.blog-logo img {
    max-height: 40px;
}

.blog-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--site-text-secondary, #4b5563);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--site-primary, #6366f1);
}

/* ---- Post Cards ---- */

.post-card {
    display: flex;
    flex-direction: row;
    background: var(--site-bg-primary, #fff);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--site-border, #e5e7eb);
    transition: box-shadow 0.2s;
    margin-bottom: 24px;
    position: relative;
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-card-image {
    width: 280px;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
    background: var(--site-bg-secondary, #f8f9fa);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 20px;
    flex: 1;
    min-width: 0;
}

.post-card-meta {
    font-size: 13px;
    color: var(--site-text-muted, #9ca3af);
    margin-bottom: 8px;
}

.post-card-meta a {
    color: var(--site-primary, #6366f1);
    text-decoration: none;
}

.post-card-title {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 8px;
}

.post-card-title a {
    color: var(--site-text-primary, #111827);
    text-decoration: none;
}

.post-card-title a:hover {
    color: var(--site-primary, #6366f1);
}

.post-card-excerpt {
    font-size: 15px;
    color: var(--site-text-secondary, #4b5563);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
    color: var(--site-text-muted, #9ca3af);
}

.post-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--site-primary, #6366f1);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.post-card-badge.featured {
    background: var(--site-accent, #f59e0b);
}

@media (max-width: 640px) {
    .post-card {
        flex-direction: column;
    }

    .post-card-image {
        width: 100%;
    }
}

/* ---- Single Post ---- */

.blog-single {
    max-width: 800px;
}

.blog-single-featured-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: var(--site-radius-lg, 12px);
    background: var(--site-bg-secondary, #f8f9fa);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-single-featured-image img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

.blog-single .post-header h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--site-text-primary, #111827);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--site-text-muted, #9ca3af);
}

.post-meta .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.post-meta .author-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--site-primary-light, rgba(99, 102, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* ---- Blog Content ---- */

.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--site-text-primary, #111827);
}

.blog-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    line-height: 1.3;
}

.blog-content h4 {
    font-size: 18px;
    margin: 24px 0 8px;
    line-height: 1.4;
}

.blog-content p {
    margin: 0 0 16px;
}

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

.blog-content ul li,
.blog-content ol li {
    margin-bottom: 8px;
}

.blog-content blockquote {
    border-left: 4px solid var(--site-primary, #6366f1);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--site-text-secondary, #4b5563);
}

.blog-content pre {
    background: var(--blog-code-bg, var(--site-bg-tertiary, #f3f4f6));
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    margin: 16px 0;
}

.blog-content code {
    background: var(--blog-code-bg, var(--site-bg-tertiary, #f3f4f6));
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.blog-content table th,
.blog-content table td {
    padding: 10px 14px;
    border: 1px solid var(--site-border, #e5e7eb);
    text-align: left;
}

.blog-content table th {
    background: var(--site-bg-secondary, #f9fafb);
    font-weight: 600;
}

.blog-content a {
    color: var(--site-primary, #6366f1);
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content figure {
    margin: 24px 0;
}

.blog-content figcaption {
    font-size: 13px;
    color: var(--site-text-muted, #9ca3af);
    text-align: center;
    margin-top: 8px;
}

/* ---- Tags ---- */

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.tag-link {
    background: var(--site-bg-tertiary, #f3f4f6);
    color: var(--site-text-secondary, #4b5563);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.tag-link:hover {
    background: var(--site-primary, #6366f1);
    color: white;
}

/* ---- Share Buttons ---- */

.share-buttons {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--site-border, #e5e7eb);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.email {
    background: #6b7280;
}

/* ---- Author Box ---- */

.author-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--site-bg-primary, #fff);
    border-radius: var(--site-radius-lg, 12px);
    border: 1px solid var(--site-border, #e5e7eb);
    margin: 32px 0;
}

.author-box-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-box-name {
    font-weight: 600;
    font-size: 16px;
}

.author-box-bio {
    font-size: 14px;
    color: var(--site-text-secondary, #4b5563);
    margin-top: 4px;
    line-height: 1.5;
}

/* ---- Post Navigation ---- */

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--site-border, #e5e7eb);
}

.post-nav-link {
    flex: 1;
    padding: 16px;
    border-radius: 8px;
    background: var(--site-bg-primary, #fff);
    border: 1px solid var(--site-border, #e5e7eb);
    text-decoration: none;
    transition: border-color 0.2s;
}

.post-nav-link:hover {
    border-color: var(--site-primary, #6366f1);
}

.post-nav-label {
    font-size: 12px;
    color: var(--site-text-muted, #9ca3af);
    margin-bottom: 4px;
}

.post-nav-title {
    font-weight: 500;
    color: var(--site-text-primary, #111827);
}

/* ---- Comments ---- */

.comments-section {
    margin-top: 40px;
}

.comment {
    padding: 16px 0;
    border-bottom: 1px solid var(--site-border, #e5e7eb);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.comment-author {
    font-weight: 600;
    font-size: 14px;
}

.comment-badge {
    background: var(--site-primary, #6366f1);
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.comment-date {
    font-size: 12px;
    color: var(--site-text-muted, #9ca3af);
}

.comment-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--site-text-primary, #111827);
}

.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.comment-like-btn,
.comment-reply-btn {
    background: none;
    border: none;
    color: var(--site-text-muted, #9ca3af);
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    transition: color 0.2s;
}

.comment-like-btn:hover,
.comment-reply-btn:hover {
    color: var(--site-primary, #6366f1);
}

.comment-pinned {
    color: var(--site-primary, #6366f1);
    font-size: 12px;
}

/* ---- Comment Form ---- */

.comment-form {
    margin-top: 24px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }
}

.comment-form-field {
    margin-bottom: 16px;
}

.comment-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--site-border, #e5e7eb);
    border-radius: 6px;
    font-size: 15px;
    background: var(--site-form-input-bg, var(--site-bg-primary, #fff));
    color: var(--site-text-primary, #111827);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--site-primary, #6366f1);
    box-shadow: 0 0 0 3px rgba(var(--site-primary-rgb, 99, 102, 241), 0.1);
}

.comment-submit-btn {
    background: var(--site-primary, #6366f1);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.comment-submit-btn:hover {
    opacity: 0.9;
}

.comment-replying-to {
    background: var(--site-primary-light, rgba(99, 102, 241, 0.1));
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-cancel-reply {
    background: none;
    border: none;
    color: var(--site-primary, #6366f1);
    cursor: pointer;
    font-size: 13px;
}

.comment-status {
    padding: 10px;
    border-radius: 6px;
    margin-top: 12px;
}

.comment-status.success {
    background: var(--site-success-light, #d1fae5);
    color: var(--site-success, #065f46);
}

.comment-status.error {
    background: var(--site-danger-light, #fee2e2);
    color: var(--site-danger, #991b1b);
}

/* ---- Sidebar ---- */

.blog-sidebar .sidebar-widget {
    margin-bottom: 32px;
}

.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--site-primary, #6366f1);
}

.sidebar-search input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--site-border, #e5e7eb);
    border-radius: 6px;
    font-size: 14px;
    background: var(--site-form-input-bg, var(--site-bg-primary, #fff));
    color: var(--site-text-primary, #111827);
    font-family: inherit;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--site-primary, #6366f1);
    box-shadow: 0 0 0 3px rgba(var(--site-primary-rgb, 99, 102, 241), 0.1);
}

.sidebar-recent-post {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--site-bg-tertiary, #f3f4f6);
}

.sidebar-recent-post:last-child {
    border-bottom: none;
}

.sidebar-recent-thumb {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background: #f8f9fa;
    flex-shrink: 0;
    overflow: hidden;
}

.sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sidebar-recent-info {
    flex: 1;
    min-width: 0;
}

.sidebar-recent-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--site-text-primary, #111827);
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-recent-title:hover {
    color: var(--site-primary, #6366f1);
}

.sidebar-recent-date {
    display: block;
    font-size: 12px;
    color: var(--site-text-muted, #9ca3af);
    margin-top: 4px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--site-bg-tertiary, #f3f4f6);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories li a {
    color: var(--site-text-primary, #111827);
    text-decoration: none;
    font-size: 14px;
}

.sidebar-categories li a:hover {
    color: var(--site-primary, #6366f1);
}

.sidebar-categories li span {
    color: var(--site-text-muted, #9ca3af);
    font-size: 13px;
}

.sidebar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-tag {
    background: var(--site-bg-tertiary, #f3f4f6);
    color: var(--site-text-secondary, #4b5563);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.sidebar-tag:hover {
    background: var(--site-primary, #6366f1);
    color: white;
}

/* ---- Pagination ---- */

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
}

.pagination-prev,
.pagination-next {
    color: var(--site-primary, #6366f1);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.pagination-prev:hover,
.pagination-next:hover {
    opacity: 0.8;
}

.pagination-info {
    color: var(--site-text-muted, #9ca3af);
    font-size: 14px;
}

/* ---- Footer ---- */

.blog-footer {
    background: var(--blog-footer-bg, #111827);
    color: var(--blog-footer-text, #9ca3af);
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: var(--blog-footer-link, #d1d5db);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ---- Utility ---- */

.blog-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--site-text-muted, #9ca3af);
}

.blog-empty-state h3 {
    margin-bottom: 8px;
    color: var(--site-text-secondary, #4b5563);
}

mark {
    background: #fef08a;
    padding: 1px 2px;
    border-radius: 2px;
}

/* ---- Reading Progress Bar ---- */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--site-primary, #6366f1);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ---- Lightbox ---- */

.blog-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-lightbox.active {
    opacity: 1;
}

.blog-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ---- Lazy Load Fade In ---- */

.blog-img-lazy {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.blog-img-lazy.loaded {
    opacity: 1;
}

/* ============================================
   AirBlog 10.03 — Missing class rules
   Adds styling for HTML class names that prior CSS missed:
     - .sidebar-archive*  (year/month accordion in sidebar)
     - .sidebar-tags-cloud  (HTML uses plural; old CSS targeted .sidebar-tag-cloud)
     - .blog-footer-*  (HTML uses prefixed names; old CSS targeted .footer-content / .footer-links)
   ============================================ */

/* ---- Sidebar Archive Widget ---- */
.sidebar-archive {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-archive-year {
    margin-bottom: 6px;
}

.sidebar-archive-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    font: inherit;
    color: var(--site-text-primary, #111827);
    font-weight: 600;
    text-align: left;
    transition: color 0.2s;
}

.sidebar-archive-toggle:hover {
    color: var(--site-primary, #6366f1);
}

.sidebar-archive-toggle .fa-chevron-right {
    font-size: 11px;
    color: var(--site-text-muted, #9ca3af);
    transition: transform 0.2s;
}

.sidebar-archive-year.open .sidebar-archive-toggle .fa-chevron-right {
    transform: rotate(90deg);
}

.sidebar-archive-year-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--site-text-muted, #9ca3af);
    font-weight: 400;
}

.sidebar-archive-months {
    list-style: none;
    margin: 0 0 6px 22px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.sidebar-archive-year.open .sidebar-archive-months {
    max-height: 600px;
}

.sidebar-archive-months li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--site-bg-tertiary, #f3f4f6);
}

.sidebar-archive-months li:last-child {
    border-bottom: none;
}

.sidebar-archive-months li a {
    color: var(--site-text-secondary, #4b5563);
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    transition: color 0.2s;
}

.sidebar-archive-months li a:hover {
    color: var(--site-primary, #6366f1);
}

.sidebar-archive-count {
    color: var(--site-text-muted, #9ca3af);
    font-size: 12px;
}

/* ---- Tags Cloud (HTML uses plural .sidebar-tags-cloud) ---- */
.sidebar-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ---- Footer (HTML uses prefixed .blog-footer-* classes) ---- */
.blog-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.blog-footer-left {
    flex: 1;
    min-width: 220px;
}

.blog-footer-right {
    flex-shrink: 0;
}

.blog-footer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--blog-footer-link, var(--site-text-primary, #d1d5db));
    margin: 0 0 8px 0;
}

.blog-footer-about {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--blog-footer-text, var(--site-text-secondary, #9ca3af));
}

.blog-footer-social {
    display: flex;
    gap: 12px;
}

.blog-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--site-bg-tertiary, rgba(0, 0, 0, 0.05));
    color: var(--blog-footer-link, var(--site-text-primary, #d1d5db));
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.blog-footer-social-link:hover {
    background: var(--site-primary, #6366f1);
    color: #fff;
    transform: translateY(-1px);
}

.blog-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--site-border, var(--site-bg-tertiary, rgba(0, 0, 0, 0.08)));
    font-size: 13px;
    color: var(--blog-footer-text, var(--site-text-secondary, #9ca3af));
}

.blog-footer-bottom p {
    margin: 0;
}

.blog-footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-footer-links a {
    color: var(--blog-footer-link, var(--site-primary, #d1d5db));
    text-decoration: none;
    transition: color 0.2s;
}

.blog-footer-links a:hover {
    color: var(--site-primary-hover, var(--site-primary, #6366f1));
    text-decoration: underline;
}

.blog-footer-sep {
    color: var(--blog-footer-text, var(--site-text-muted, #9ca3af));
    opacity: 0.5;
}

@media (max-width: 640px) {
    .blog-footer-content {
        flex-direction: column;
    }
    .blog-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

