/* Modern Blog Post Styles - Light "ProsperOps" Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=NeurialGrotesk:wght@400;500;700&display=swap');

:root {
    --primary-color: #5d5bfb;
    /* ProsperOps Purple-Blue */
    --primary-light: #7b79ff;
    --primary-dark: #4a48c9;
    --text-color: #212121;
    /* Dark Gray */
    --heading-color: #06044c;
    /* Dark Navy */
    --meta-color: #6b7280;
    --bg-light: #ffffff;
    --bg-sidebar: #f6f6f6;
    --border-color: #e5e7eb;
    --glass-bg: #ffffff;
    --glass-border: #e5e7eb;
    --glass-blur: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.75;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    min-height: 100vh;
    overflow: visible !important;
    /* Force overflow visible for sticky */
}

html {
    overflow: visible !important;
    height: auto !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'NeurialGrotesk', 'Inter', sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.example-box h4 {
    color: #6a6868;
}

.blog_tag {
    display: inline-block;
    padding: 6px 18px !important;
    background: rgba(40, 121, 255, 0.08) !important;
    color: #2879ff !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin: 4px 8px 4px 0 !important;
    transition: all 0.25s ease !important;
    border: 1px solid rgba(40, 121, 255, 0.15) !important;
    text-decoration: none !important;
}

.blog_tag:hover {
    background: #2879ff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 121, 255, 0.25);
    border-color: transparent !important;
}

.blog_post_tags {
    margin: 40px 0;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.blog_post_tags strong {
    color: #123;
    margin-right: 12px;
    font-size: 1rem;
    font-weight: 700;
}

/* Hero Section - ProsperOps style has a purple top/hero or white? 
   ProsperOps usually has a white article body. The user said "bg color" so presumably white.
   But let's keep a hero strip if needed, or make it clean white. 
   The ProsperOps article provided has a white background for the header area often.
   Let's make the header clean white with dark text.
*/

/* Hero Section - Dark Blue Background (ProsperOps Style) */
.article_header {
    background: #5d5bfb !important;
    padding: 100px 0 100px !important;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    border-radius: 0;
    border-bottom: none;
    width: 100%;
    color: #ffffff !important;
}

.article_header::before {
    display: none;
    /* Remove the gradient top border */
}

/* Remove article content styling that creates the glass card */
/* Full Width Content Styles */
/* Integrated Content Styles */
.article_content_integrated {
    font-size: 1.125rem;
    max-width: 900px;
    width: 100%;
    margin-top: 0;
    /* Removed to fix blank space */
    padding: 0;
    color: #212121;
    line-height: 1.8;
    background: transparent;
    border: none;
    flex-grow: 1;
}


.article_hero_image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.article_title_wrapper {
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: left;
    padding: 0 0px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.article_title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: left;
}

.article_meta_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0px;
    font-weight: 500;
}

.meta_item i {
    color: var(--primary-color) !important;
}

.article_content_integrated h2 {
    color: var(--heading-color);
    font-size: 2.25rem;
    margin-top: 1em;
    padding-bottom: 10px;
    border-bottom: none;
    /* ProsperOps doesn't underline headers usually */
}

.article_content_integrated h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
}

.article_content_integrated a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid rgba(93, 91, 251, 0.2);
    transition: all 0.2s;
}

.article_content_integrated a:hover {
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

.article_content_integrated blockquote {
    border-left: 4px solid var(--primary-color);
    color: #b9b8b8;
    font-style: normal;
    font-weight: 500;
}

.blockquote-footer {
    color: #4b3f32 !important;
}

/* Light Theme Tables */
.blog_table_wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.blog_table th {
    background: #f3f4f6;
    /* Gray-100 */
    color: var(--heading-color);
    border-bottom: 1px solid var(--border-color);
}

.blog_table td {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.blog_table tr:hover td {
    background: #f9fafb;
    /* Gray-50 */
}

/* Light Theme Pros/Cons */
.pros_box {
    background: #f0fdf4;
    /* Light Green BG */
    border: 1px solid #bbf7d0;
}

.cons_box {
    background: #fef2f2;
    /* Light Red BG */
    border: 1px solid #fecaca;
}

.pros_box h4 {
    color: #15803d;
    /* Green-700 */
}

.cons_box h4 {
    color: #b91c1c;
    /* Red-700 */
}

.pros_list li,
.cons_list li {
    color: #374151;
    /* Gray-700 */
}

.pros_list li::before {
    color: #16a34a;
    /* Green-600 */
}

.cons_list li::before {
    color: #dc2626;
    /* Red-600 */
}

/* Sidebar and Navigation Adjustments */
.category_sidebar {
    background: var(--bg-sidebar);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.category_sidebar h4 {
    color: var(--heading-color);
    border-bottom-color: #d1d5db;
}

.category_link {
    color: var(--text-color);
}

.category_link:hover {
    background: #e5e7eb;
    color: var(--primary-color);
    transform: none;
}

.category_link.active {
    background: var(--primary-color);
    color: white;
}

/* Ensure container handles are correct */
section.container {
    background: transparent;
}

.no-padding {
    padding: 0;
    margin: 0;
}

/* Lead Paragraph */
.article_content_integrated .lead,
.lead {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: #fe7600;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Blog Category Tags */
.blog_category_tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-color);
    color: white;
}

/* Sidebar - Semi-transparent */
.category_sidebar {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    backdrop-filter: var(--glass-blur);
}

.category_sidebar h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

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

.category_link {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 4px;
    color: #e5e7eb;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9375rem;
}

.category_link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    transform: translateX(3px);
}

.category_link.active {
    background: var(--primary-color);
    color: white;
}

.category_link.active .category_count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Share Buttons - Fixed Left */
.floating_share {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

@media (max-width: 1400px) {
    .floating_share {
        display: none;
    }
}

.share_icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    transition: all 0.3s ease;
    border: none;
}

.share_icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Interaction Bar - Refined for Light Theme */
.interaction_bar {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f9fafb;
    padding: 20px 30px;
    margin: 50px 0;
    border-radius: 100px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.like_btn {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.like_btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.like_btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    color: white;
}

.like_btn:hover i {
    transform: scale(1.2);
}

.like_btn.liked {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
    animation: likePulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.interaction_bar .comment_count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.interaction_bar .comment_count i {
    color: var(--primary-color);
}

@keyframes likePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Share Buttons Section */
.share_buttons {
    background: transparent;
    padding: 30px 20px;
    margin: 40px -20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share_buttons h5 {
    color: #ffffff;
}

/* Premium Comments Section */
.comments_section {
    padding: 60px 0;
    margin-top: 60px;
    border-top: 2px solid #f3f4f6;
}

.comments_section h4 {
    color: var(--heading-color);
    font-size: 1.75rem;
    margin-bottom: 35px;
    font-weight: 800;
}

.comment_form_container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.comment_form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment_input {
    background: #fdfdfd;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 22px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.comment_input:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(93, 91, 251, 0.08);
    outline: none;
}

.comment_textarea {
    min-height: 120px;
    resize: vertical;
}

.submit_comment_btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(93, 91, 251, 0.2);
    width: fit-content;
}

.submit_comment_btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(93, 91, 251, 0.3);
}

.comment_item.hidden_comment {
    display: none;
}

.show_more_container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.show_more_btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show_more_btn:hover {
    background: var(--primary-color);
    color: white;
}

.comment_item:last-child {
    border-bottom: none;
}

.comment_avatar {
    width: 50px;
    height: 50px;
    background: #e5e7eb;
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: none;
}

.comment_content {
    flex-grow: 1;
}

.comment_author {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.comment_time {
    font-size: 0.8rem;
    color: var(--meta-color);
    margin-bottom: 10px;
}

.comment_text {
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.reply_btn {

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(41, 102, 244, 1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reply_btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

/* Related Posts Section - Modern Cards */
.related_posts {
    padding: 100px 0;
    background: #f6f6f6;
    border-top: 1px solid var(--border-color);
}

.related_posts h3 {
    color: #4a6fff;
    font-weight: 800;
    margin-bottom: 50px;
    font-size: 1.5rem;
}

.blog_card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog_card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog_img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}

.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Show top part of image */
    transition: transform 0.5s ease;
}

.blog_card:hover .blog_img img {
    transform: scale(1.1);
}

.blog_content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog_category_tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    width: fit-content;
}

.article_content_integrated {
    margin-top: 20px !important;
}

.blog_category_tag.guide {
    background: rgba(0, 0, 0, 0.5);
    color: #1f6db6;
}

.blog_category_tag.trends {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.blog_category_tag.security {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.blog_date {
    font-size: 0.85rem;
    color: var(--meta-color);
    margin-bottom: 12px;
}

.blog_title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog_title a {
    color: #06044c !important;
    /* Dark Navy */
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_title a:hover {
    color: var(--primary-color);
}

.blog_excerpt {
    font-size: 1rem;
    color: #212121 !important;
    /* Dark Gray */
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.reply_form {
    display: none;
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
}

.reply_form.active {
    display: flex;
}

.replies_container {
    margin-top: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.reply_item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.reply_avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

/* Related Posts Section */
.related_posts {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.article_flex_container {
    display: flex;
    /* align-items: flex-start; */
    /* Removed to let sidebar stretch */
    gap: 40px;
    position: relative;
    padding: 0;
    /* Removed padding to fix blank top */
    margin-top: 0;
    /* Removed to fix blank space */
}

/* Force container to allow sticky children */
section.container-fluid {
    overflow: visible !important;
}

/* Table of Contents Sidebar (Integrated Float) */
.toc_sidebar_wrapper {
    flex-basis: 350px;
    flex-shrink: 0;
    z-index: 10;
    align-self: stretch;
    /* Ensure it stretches for sticky track */
}

.toc_card {
    position: sticky !important;
    top: 120px;
    /* Space for header */
}

.toc_card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.toc_nav::before {
    content: "On this page";
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

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

.toc_item {
    margin-bottom: 8px;
}

.toc_h3 {
    padding-left: 16px;
    font-size: 0.9em;
}

.toc_link {
    display: block;
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    border-bottom: none !important;
    padding: 4px 0;
}

.toc_link:hover {
    color: var(--primary-color) !important;
}

.toc_link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    transform: translateX(4px);
}

.toc_item.toc_h2>.toc_link.active {
    border-left: 2px solid var(--primary-color);
    padding-left: 8px;
    margin-left: -10px;
}

/* Adjustments for wider screens */
@media (min-width: 1600px) {
    .toc_sidebar_wrapper {
        flex-basis: 380px;
    }

    .article_content_integrated {
        max-width: 1000px;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .toc_sidebar_wrapper {
        display: none;
    }
}

/* CTA Section - Keep gradient */
.cta_section {
    margin-top: 0 !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .article_title {
        font-size: 2rem;
    }

    .article_title_wrapper {
        padding: 0 20px;
    }

    .article_meta_wrapper {
        flex-wrap: wrap;
        gap: 12px 16px;
        font-size: 0.8rem;
    }

    .meta_item {
        white-space: nowrap;
    }

    .article_content {
        font-size: 1rem;
        padding: 40px 20px;
    }

    .article_content h2 {
        font-size: 1.5rem;
    }

    .category_sidebar {
        position: relative;
        top: 0;
    }

    /* Ensure all content sections have proper padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .article_title {
        font-size: 1.75rem;
        padding: 0 15px;
    }

    .article_title_wrapper {
        padding: 0 15px;
    }

    .article_content {
        font-size: 0.95rem;
        padding: 30px 20px;
    }

    .article_content h2 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }

    .article_content h3 {
        font-size: 1.15rem;
    }

    .article_content p,
    .article_content li {
        margin-bottom: 1rem;
    }

    /* Ensure container has padding on very small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .article_header {
        padding: 80px 0 30px;
    }
}

/* Container adjustments for dark background */
.container {
    position: relative;
}

section.container {
    background: transparent;
}

/* Modern Table Styles */
.blog_table_wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.blog_table {
    width: 100%;
    border-collapse: collapse;
    color: #e5e7eb;
    font-size: 1rem;
}

.blog_table th {
    background: rgba(40, 121, 255, 0.98);
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 2px solid var(--glass-border);
    white-space: nowrap;
}

.blog_table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.blog_table tr:last-child td {
    border-bottom: none;
}

.blog_table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Pros and Cons Lists */
.pros_cons_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros_box,
.cons_box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--glass-border);
}

.pros_box h4 {
    color: #4ade80;
    /* Green-400 */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cons_box h4 {
    color: #f87171;
    /* Red-400 */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros_list,
.cons_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros_list li,
.cons_list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pros_list li::before,
.cons_list li::before {
    display: none;
}

@media (max-width: 768px) {
    .pros_cons_container {
        grid-template-columns: 1fr;
    }
}

/* Mobile Interaction Bar Fixes */
@media (max-width: 576px) {
    .interaction_bar {
        padding: 12px 20px;
        gap: 15px;
        margin: 30px 0;
        border-radius: 50px;
    }

    .like_btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .interaction_bar .comment_count {
        font-size: 0.85rem;
        gap: 8px;
    }
}