﻿/* Blog Redesign - Refined version */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');

:root {
    --vulone-blue: #ffffff;
    --vulone-blue-glow: rgba(255, 255, 255, 0.1);
}

/* Highlight.js Theme */
@import url('https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css');

/* Premium Code Block Styling */
pre {
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin: 2rem 0 !important;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.blog-post-body :not(pre) > code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: #fbbf24;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-body pre code {
    background: transparent;
    padding: 0;
    border: none;
    color: inherit;
}

/* Custom Scrollbar for Code Blocks */
pre::-webkit-scrollbar {
    height: 6px;
}

pre::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

pre::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

pre::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.blog-hero {
    position: relative;
    padding: 180px 20px 140px;
    background: #0e0e0e; url('../images/companies/blog.jpg') center/cover no-repeat;
    overflow: hidden;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    pointer-events: none;
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.blog-badge {
    display: inline-block;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.6;
    /* Very normal look */
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.blog-hero p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Blog Layout */
.blog-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    gap: 80px;
}

/* Sidebar */
.blog-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.category-link {
    color: #52525b;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
}

.category-link:hover,
.category-link.active {
    color: #fff;
    padding-left: 4px;
}

/* Help Box (like in image) */
.help-box {
    margin-top: 60px;
    padding: 24px;
    background: #0d0d0d;
    border: 1px solid #18181b;
    border-radius: 12px;
}

.help-box h3 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 12px;
}

.help-box p {
    font-size: 0.875rem;
    color: #71717a;
    line-height: 1.6;
}

/* Blog Main Content */
.blog-main-content {
    flex: 1;
}

.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Featured Card (Big) */
.featured-post-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-decoration: none;
    margin-bottom: 40px;
}

.featured-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0d0d0d;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta Data Styles */
.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.meta-category {
    color: #a1a1aa;
}

.meta-date {
    color: #52525b;
}

.meta-divider {
    color: #27272a;
}

/* List Card (Smaller, Side-by-Side) */
.list-post-card {
    display: flex;
    gap: 40px;
    text-decoration: none;
    align-items: flex-start;
}

.list-img-wrapper {
    flex: 0 0 280px;
    aspect-ratio: 1 / 1;
    background: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.list-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Typography for Cards */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.list-post-card .card-title {
    font-size: 1.15rem;
}

.list-post-card:hover .card-title,
.featured-post-card:hover .card-title {
    color: var(--vulone-blue);
}

.card-excerpt {
    font-size: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Row */
.author-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.author-name {
    font-size: 0.9375rem;
    color: #fff;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-label {
    font-size: 0.6875rem;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Prose Customization */
.blog-post-body {
    font-family: 'Inter', sans-serif;
}

.blog-post-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1rem 0;
}

.blog-post-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-post-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-body strong, .blog-post-body b {
    color: #fafafa;
    font-weight: 600;
}

.blog-post-body em, .blog-post-body i {
    font-style: italic;
    color: #d4d4d8;
}

.blog-post-body a {
    color: #60a5fa;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-post-body a:hover { color: #93bcf9; }

.blog-post-body ul, .blog-post-body ol {
    padding-left: 1.5em;
    margin-bottom: 1.5rem;
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.75;
}
.blog-post-body li { margin-bottom: 0.4rem; }

.blog-post-body blockquote {
    border-left: 3px solid #fbbf24;
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #d4d4d8;
}

.blog-post-body hr {
    border: none;
    border-top: 1px solid #27272a;
    margin: 2.5rem 0;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #a1a1aa;
}
.blog-post-body thead {
    border-bottom: 2px solid #27272a;
}
.blog-post-body th {
    text-align: left;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1aa;
    border-bottom: 1px solid #27272a;
}
.blog-post-body td {
    padding: 8px 12px;
    border-bottom: 1px solid #1a1a1e;
    vertical-align: top;
}
.blog-post-body tr:hover td {
    background: rgba(255,255,255,0.02);
}

.blog-post-body h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #d4d4d8;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Ensure Highlight.js colors are preserved */
.blog-post-body pre code {
    color: inherit !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Blog Detail View - Premium 2-Column Layout */
.blog-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px 100px;
}

.detail-top-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #52525b;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.meta-dot {
    width: 3px;
    height: 3px;
    background: #3f3f46;
    border-radius: 50%;
}

.detail-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    max-width: 1100px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 100px;
    align-items: flex-start;
}

.detail-main-col {
    min-width: 0;
}

.detail-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Stunning Prose Customization */
.blog-post-body {
    font-family: 'Inter', sans-serif;
}

.blog-post-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d4d4d8;
    margin-bottom: 2rem;
}

.blog-post-body h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

/* Sidebar Branding */
.detail-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-sticky-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-height: calc(100vh - 140px);
}

.toc-section {
    flex-shrink: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #18181b;
}

/* More Posts List */
.more-posts-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-post-item {
    display: flex;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sidebar-post-item:hover {
    transform: translateX(4px);
}

.sidebar-post-thumb {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    flex: 1;
}

.sidebar-post-date {
    display: block;
    font-size: 0.75rem;
    color: #52525b;
    margin-bottom: 6px;
    font-weight: 500;
}

.sidebar-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: #a1a1aa;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.sidebar-post-item:hover .sidebar-post-title {
    color: #fff;
}

.view-all-link {
    display: inline-block;
    margin-top: 32px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.view-all-link:hover {
    opacity: 0.7;
}

/* Ensure More Posts stays below scrollable TOC */
.sidebar-section {
    flex-shrink: 0;
}

.sidebar-section.toc-section {
    flex-shrink: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* TOC Section */
.toc-section {
    max-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 1px solid #18181b;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}

.toc-link {
    font-size: 0.875rem;
    color: #52525b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
    border-left: 2px solid transparent;
    margin-left: -1px;
}

.toc-link:hover {
    color: #a1a1aa;
}

.toc-link.active {
    color: var(--vulone-blue);
    border-left-color: var(--vulone-blue);
    font-weight: 500;
}

.toc-link.h3 {
    margin-left: 24px;
    font-size: 0.8125rem;
}

/* Tags Row */
.detail-tags-row {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #18181b;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-tag {
    padding: 8px 16px;
    background: #0d0d0d;
    border: 1px solid #18181b;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #71717a;
    transition: all 0.2s ease;
}

.detail-tag:hover {
    border-color: #27272a;
    color: #a1a1aa;
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
    .detail-grid {
        gap: 60px;
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: none;
    }

    .blog-detail-container {
        padding: 16px 24px 80px;
    }

    .detail-title {
        margin-bottom: 40px;
    }

    .floating-action-bar {
        position: static !important;
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin: 80px 0 0 0;
        padding: 0;
    }
    .action-btn { width: 40px; height: 40px; }
}

/* Back Nav at Top */
.back-nav-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #52525b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.back-nav-top:hover {
    color: #fff;
}

/* Detail Author Row */
.detail-author-row {
    margin-bottom: 60px;
}

/* Floating Action Bar */
.floating-action-bar {
    position: fixed;
    right: 24px;
    top: 88px;
    display: flex;
    gap: 8px;
    z-index: 60;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #18181b;
    border: 1px solid #27272a;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.action-btn:hover {
    background: #27272a;
    color: #fff;
    border-color: #3f3f46;
}

/* Share Popup */
.share-popup {
    position: fixed;
    left: 100px;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.share-popup-inner {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 28px;
    width: 340px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.share-popup-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.share-close-btn {
    background: none;
    border: none;
    color: #52525b;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.share-close-btn:hover {
    color: #fff;
}

.share-popup-desc {
    font-size: 0.8125rem;
    color: #71717a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.share-url-row {
    display: flex;
    gap: 8px;
}

.share-url-input {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #27272a;
    border-radius: 10px;
    padding: 10px 14px;
    color: #a1a1aa;
    font-size: 0.8125rem;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    min-width: 0;
}

.share-url-input:focus {
    border-color: var(--vulone-blue);
}

.share-copy-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vulone-blue);
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.share-copy-btn:hover {
    background: #e4e4e7;
}

.copy-feedback {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Light Mode Theme */
.light-mode {
    background: #fafafa !important;
}

.light-mode .blog-detail-container {
    color: #18181b;
}

.light-mode .detail-top-meta,
.light-mode .detail-top-meta span {
    color: #71717a;
}

.light-mode .detail-title {
    color: #0d0d0d;
}

.light-mode .blog-post-body p {
    color: #3f3f46;
}

.light-mode .blog-post-body h2,
.light-mode .blog-post-body h3 {
    color: #0d0d0d;
}

.light-mode .blog-post-body strong {
    color: #18181b;
}

.light-mode .detail-hero-image {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.light-mode .detail-tags-row {
    border-top-color: #e4e4e7;
}

.light-mode .detail-tag {
    background: #f4f4f5;
    border-color: #e4e4e7;
    color: #3f3f46;
}

.light-mode .author-name {
    color: #0d0d0d;
}

.light-mode .sidebar-heading {
    color: #71717a;
}

.light-mode .sidebar-heading::after {
    background: #e4e4e7;
}

.light-mode .sidebar-post-title {
    color: #3f3f46;
}

.light-mode .sidebar-post-item:hover .sidebar-post-title {
    color: #0d0d0d;
}

.light-mode .toc-nav {
    border-left-color: #e4e4e7;
}

.light-mode .toc-link {
    color: #71717a;
}

.light-mode .toc-link:hover {
    color: #3f3f46;
}

.light-mode .toc-link.active {
    color: var(--vulone-blue);
}

.light-mode .back-nav-top {
    color: #71717a;
}

.light-mode .back-nav-top:hover {
    color: #0d0d0d;
}

.light-mode pre {
    background: #f4f4f5 !important;
    border-color: #e4e4e7 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .blog-hero { padding: 120px 16px 80px; }
    .blog-hero h1 { font-size: 2.25rem; }
    .blog-sidebar { display: none; }
    .blog-main-content { padding: 0; }
    .blog-posts-grid { grid-template-columns: 1fr; }
    .blog-content-wrapper { padding-left: 0; }
    #blog-detail-main { padding: 20px 16px 0; }
    .research-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .blog-hero h1 { font-size: 1.75rem; }
    .blog-hero p { font-size: 0.9rem; }
}

/* ============================================
   LIGHT MODE FIXES
   ============================================ */
body.light-mode { background: #fafafa !important; }
body.light-mode #navbar { background: rgba(250,250,250,0.9) !important; }
body.light-mode #navbar a, body.light-mode #navbar button { color: #3f3f46 !important; }
body.light-mode #navbar a:hover, body.light-mode #navbar button:hover { color: #0d0d0d !important; }
body.light-mode #navbar .border-white\\/10 { border-color: rgba(0,0,0,0.08) !important; }
body.light-mode #navbar .bg-\\[\\#0e0e0e\\] { background: #fff !important; }
body.light-mode .footer-dark { background: #fafafa !important; border-top-color: #e4e4e7 !important; }
body.light-mode .footer-dark a { color: #52525b !important; }
body.light-mode .footer-dark h4 { color: #18181b !important; }
.light-mode .blog-post-body a { color: #2563eb !important; }
.light-mode .blog-post-body code { background: #e4e4e7; color: #3f3f46; padding: 2px 6px; border-radius: 4px; }
.light-mode .blog-post-body blockquote { border-color: #d4d4d8; background: #f4f4f5; }
.light-mode .back-nav-top { color: #52525b !important; }
.light-mode .sidebar-post-date { color: #a1a1aa !important; }
.light-mode #blog-detail-main { background: #fafafa !important; }
.light-mode pre { background: #27272a !important; border-color: #e4e4e7 !important; color: #fafafa !important; }

/* ============================================
   MOBILE BLOG DETAIL FIXES
   ============================================ */
@media (max-width: 768px) {
    #blog-detail-main { padding: 12px 12px 0 !important; }
    .detail-title { font-size: 1.5rem !important; line-height: 1.3 !important; }
    .detail-top-meta { flex-wrap: wrap; gap: 8px; }
    .blog-post-body { padding: 0 !important; }
    .blog-post-body pre { margin: 0 -12px; border-radius: 0; overflow-x: auto; }
    .blog-post-body pre code { font-size: 0.75rem; }
    .blog-post-body img { max-width: 100% !important; height: auto !important; }
    .detail-hero-image { margin: 1rem -12px; border-radius: 0; }
    .blog-post-body table { display: block; overflow-x: auto; }
    .detail-tags-row { flex-wrap: wrap; }
}
