/* ============================================
   BLOG POST CONTENT STYLES
   Estilos customizados para posts do blog
   ============================================ */

/* Blog Content Frame - Semi-opaque background for readability.
   Calm reading surface: hairline border, no neon corner brackets or inner glow
   (those belong to the hero/game landmarks, not the article body). */
.blog-content-frame {
    background: rgba(8, 10, 15, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
    .blog-content-frame {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }
}

/* External link icon - plain, no glow */
.blog-content a[href^="http"]::after,
.blog-content a[href^="https://"]::after {
    content: "↗";
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.85em;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
    vertical-align: middle;
}

.blog-content a[href^="http"]:hover::after,
.blog-content a[href^="https://"]:hover::after {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Links - Calm reading surface (DESIGN.md: Reading Surface Rule).
   Muted cyan, animated underline on hover, no glow/background/text-shadow. */
.blog-content a {
    color: #38bdf8 !important;
    font-weight: 600;
    text-decoration: none;
    background-image: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(45, 212, 191, 0.9));
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    padding-bottom: 2px;
    transition: color 0.25s ease, background-size 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.blog-content a:hover,
.blog-content a:focus-visible {
    color: #e2f3ff !important;
    background-size: 100% 2px;
}

.blog-content a:focus-visible {
    outline: none;
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.35);
}

/* Listas não-ordenadas - Cyberpunk Chevron */
.blog-content ul>li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-size: 1.125rem;
    line-height: 1.4;
}

.blog-content ul>li::before {
    content: "»";
    position: absolute;
    left: 0;
    color: #6ee7b7;
    /* Softer green */
    font-weight: 700;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 1.1em;
    line-height: 1.5;
}

.blog-content ul>li:hover {
    transform: translateX(3px);
}

.blog-content ul>li:hover::before {
    color: #86efac;
}

/* Listas aninhadas */
.blog-content ul ul>li::before {
    content: "›";
    font-size: 1.4em;
    opacity: 0.8;
}


/* Decoração Antiga Removida - Usando novo padrão Orbitron */

/* NEGRITO - Calm inline emphasis (DESIGN.md: Reading Surface Rule).
   Color + weight carry the emphasis; no background, border, glow, or animation. */
.blog-content strong {
    color: #38bdf8 !important;
    font-weight: 800;
}

/* Linhas horizontais */
.blog-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(56, 189, 248, 0.3), transparent);
    margin: 2rem 0 1rem 0;
    /* Base reduzida para 1rem */
}

/* Fix: Remove margem gigante quando um elemento segue o HR */
.blog-content hr+* {
    margin-top: 0 !important;
    padding-top: 1rem !important;
    /* Pequeno respiro interno, se necessário */
}

/* Figures (Imagens e Tabelas Wrappers) */
.blog-content figure {
    margin: 3rem 0;
    display: block;
}

/* Markdown tables - diagnostic matrix style */
.blog-content table {
    width: 100%;
    margin: 1.6rem 0 2rem;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.55);
    box-shadow: 0 18px 32px -28px rgba(14, 165, 233, 0.8);
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

.blog-content table thead th {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.24), rgba(14, 165, 233, 0.08));
    color: #e2f3ff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.blog-content table th,
.blog-content table td {
    text-align: left;
    vertical-align: top;
    padding: 0.72rem 0.84rem;
    border-right: 1px solid rgba(148, 163, 184, 0.16);
}

.blog-content table th:last-child,
.blog-content table td:last-child {
    border-right: none;
}

.blog-content table tbody tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.blog-content table tbody tr:nth-child(even) {
    background: rgba(148, 163, 184, 0.05);
}

.blog-content table tbody tr:last-child {
    border-bottom: none;
}

.blog-content table td {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.45;
}

.blog-content table code {
    color: #e2f3ff;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 6px;
    padding: 0.08rem 0.36rem;
}

@media (max-width: 768px) {
    .blog-content table th,
    .blog-content table td {
        padding: 0.62rem 0.7rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   MELHORIAS DE ESPAÇAMENTO E RITMO VISUAL
   ============================================ */

/* Paragraphs - Readable body text with tighter line spacing */
.blog-content p {
    text-align: left !important;
    line-height: 1.8;
    /* Matches DESIGN.md's documented body line-height for reading surfaces */
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

/* Blog Card tweaks */
.blog-card { min-height: 420px; }
.blog-card .blog-card-image { height: 18rem; }
.blog-card .blog-card-desc { font-size: 0.95rem; }

/* Larger subtitle lines for cards */
.blog-card .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Keep tag bar below image with better wrapping */
.blog-card .tag-bar { display:flex; flex-wrap:wrap; gap:6px; justify-content:flex-start; padding:0.5rem 0.75rem; }
.blog-card .tag-bar a { text-decoration:none }

/* Cabeçalhos - Calm reading hierarchy (DESIGN.md: Calm Headings Rule).
   Orbitron keeps the site's display voice for weight/structure; no rainbow
   per-level colors, no glow, no gradient bars. One muted accent (cyan)
   marks h2 as the section break; h1/h3 read from type weight alone. */
.blog-content h1,
.blog-content h2,
.blog-content h3 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
    color: #f1f5f9 !important;
    margin-top: 3rem !important;
    margin-bottom: 1.25rem !important;
    position: relative;
    display: inline-block;
    width: 100%;
}

.blog-content h1 {
    font-size: 1.75rem;
    border-bottom: none;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-top: 3.5rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

/* Cleanup old vertical bar if present on H2 */
.blog-content h2::before {
    display: none !important;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 3rem !important;
    border-bottom: none;
}

/* Small accent for H3 - Terminal style, kept muted (no color-coding, no glow) */
.blog-content h3::before {
    content: '> ';
    color: #64748b;
    margin-right: 0.5rem;
    font-weight: 800;
}

/* Inline code — terminal chip style */
.blog-content code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.88em;
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    white-space: nowrap;
}

/* FIX: Restore code block background and styling */
.blog-content pre {
    background: #0f172a !important;
    /* Slate-900 */
    border: 1px solid rgba(148, 163, 184, 0.1) !important;
    padding: 0 !important;
    /* Code element handles padding */
    margin: 2rem 0 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    /* Contain corners */
}

/* Ensure code inside pre matches formatting */
.blog-content pre code {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'JetBrains Mono', 'Fira Code', monospace !important;
    font-size: 0.9em;
    padding: 1.25rem 1.5rem;
    display: block;
    overflow-x: auto;
    color: #cbd5e1;
    /* Slate-300 */
    line-height: 1.6;
}

/* Override HighlightJS background/border if present */
.blog-content .hljs,
.blog-content pre code.hljs,
.blog-content code[class*="language-"],
.blog-content pre[class*="language-"] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ============================================
   RESTORED MISSING SECTIONS
   ============================================ */

/* FIX CRÍTICO: Anula margem do H2/H3 se vier log após um HR */
.blog-content hr+h1,
.blog-content hr+h2,
.blog-content hr+h3 {
    margin-top: 1rem !important;
    /* Pequeno respiro após divider */
    padding-top: 0 !important;
}

/* Listas - Espaçamento generoso */
.blog-content ul,
.blog-content ol {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Remove margem negativa antiga */
.blog-content p+ul,
.blog-content p+ol {
    margin-top: 0.5rem !important;
}

/* Itens de lista - Espaçamento vertical */
.blog-content ul li+li,
.blog-content ol li+li {
    margin-top: 1rem;
}

/* ============================================
   COMPONENTES REUTILIZÁVEIS
   ============================================ */

/* Callout/Alert System.
   DESIGN.md bans colored border-left stripes as a card/callout accent; the
   variant reads instead through a full hairline border in the role color,
   a low-opacity tint fill, and a leading square marker on the title. */
.blog-content .blog-callout {
    --callout-color: #94a3b8;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid color-mix(in srgb, var(--callout-color) 35%, transparent);
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--callout-color) 8%, rgba(15, 17, 26, 0.5));
}

.blog-content .blog-callout h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--callout-color);
}

.blog-content .blog-callout h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--callout-color);
    flex-shrink: 0;
}

.blog-content .blog-callout p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Variant: Danger (Red - Xamarin EOL) */
.blog-content .blog-callout.danger {
    --callout-color: #ff003c;
}

/* Variant: Warning (Amber) */
.blog-content .blog-callout.warning {
    --callout-color: #f59e0b;
}

/* Variant: Info (Blue) */
.blog-content .blog-callout.info {
    --callout-color: #3b82f6;
}

/* Variant: Success */
.blog-content .blog-callout.success {
    --callout-color: #4ade80;
}

/* Checklist Customizada (Substitui emojis feios) */
.blog-content .checklist {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.blog-content .checklist li {
    position: relative;
    padding-left: 2rem;
    /* Espaço para o ícone */
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

/* Remove a seta padrão (▸) se houver conflito */
.blog-content .checklist li::before {
    content: "\f00c" !important;
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    /* Ajuste fino vertical */
    color: #4ade80;
    /* Soft green; no glow on a reading surface */
    font-size: 1em;
}

/* Exceções de proximidade */
.blog-content h2+p,
.blog-content h3+p {
    margin-top: 0 !important;
}

/* Limpeza primeiro/último */
.blog-content>*:first-child {
    margin-top: 0 !important;
}

/* Responsive Iframe (YouTube Embeds) */
/* Responsive Iframe (Universal Support) */
.blog-content iframe,
.blog-content .video-responsive iframe,
.blog-content video {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    display: block;
    border: none;
}

/* Cleanup old container wrapper styles if present */
.blog-content .video-responsive {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}


/* ============================================
   MARKDIG ALERTS SUPPORT (GitHub Style)
   ============================================ */

/* GitHub-style alerts, same border-left-ban fix as .blog-callout above:
   full hairline border in the role color + tint fill, no glow. */
.blog-content .markdown-alert {
    --alert-color: #94a3b8;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border: 1px solid color-mix(in srgb, var(--alert-color) 35%, transparent);
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--alert-color) 8%, rgba(15, 17, 26, 0.5));
}

.blog-content .markdown-alert-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem !important;
    color: var(--alert-color);
}

/* Icons scaling */
.blog-content .markdown-alert-icon {
    width: 1.25em;
    height: 1.25em;
    fill: currentColor;
}

/* Red / Caution / Danger */
.blog-content .markdown-alert-caution,
.blog-content .markdown-alert-danger {
    --alert-color: #ff003c;
}

/* Yellow / Warning */
.blog-content .markdown-alert-warning {
    --alert-color: #f59e0b;
}

/* Green / Tip */
.blog-content .markdown-alert-tip {
    --alert-color: #4ade80;
}

/* Blue / Note */
.blog-content .markdown-alert-note {
    --alert-color: #3b82f6;
}

/* Purple / Important */
.blog-content .markdown-alert-important {
    --alert-color: #d946ef;
}

/* ============================================
   CYBER CTA (Enhanced with Animations)
   ============================================ */
/* The in-article CTA is one of the site's few permitted neon-green landmarks
   (DESIGN.md: One Signal Rule) — but the glow is a fixed resting state, not an
   infinite ambient pulse; it intensifies only on hover (Glow-Is-Not-Default Rule). */
.blog-content .cyber-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #080a0f 0%, #0d1117 50%, #080a0f 100%);
    border: 2px solid #00ff41;
    border-radius: 16px;
    text-align: center;
    max-width: 100%;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
    transition: box-shadow 0.4s ease;
    overflow: hidden;
}

.blog-content .cyber-cta:hover {
    box-shadow: 0 0 45px rgba(0, 255, 65, 0.25);
}

/* Corner accents */
.blog-content .cyber-cta::before,
.blog-content .cyber-cta::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #00ff41;
    z-index: 10;
}

.blog-content .cyber-cta::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.blog-content .cyber-cta::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Hide any leftover HUD elements */
.blog-content .cyber-cta .cta-grid,
.blog-content .cyber-cta .corner,
.blog-content .cyber-cta-content {
    display: contents !important;
}

/* Headings - solid signature color, no gradient-text (SKILL.md absolute ban) */
.blog-content .cyber-cta h1,
.blog-content .cyber-cta h2,
.blog-content .cyber-cta h3,
.blog-content .cyber-cta h4 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #00ff41 !important;
    margin: 0 0 1.5rem 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Paragraphs */
.blog-content .cyber-cta p {
    color: #cbd5e1 !important;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 auto 2rem auto !important;
    max-width: 650px;
}

/* Links/Buttons - Enhanced */
.blog-content .cyber-cta a {
    position: relative !important;
    display: inline-block !important;
    padding: 1.2rem 3rem !important;
    background: linear-gradient(135deg, #00ff41 0%, #00cc33 100%) !important;
    color: #000 !important;
    font-weight: 900 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    letter-spacing: 1px !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow:
        0 0 25px rgba(0, 255, 65, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3) !important;
    margin-top: 1rem;
    overflow: hidden !important;
}

/* Button shine effect */
.blog-content .cyber-cta a::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    transition: left 0.5s ease !important;
}

.blog-content .cyber-cta a:hover::before {
    left: 100% !important;
}

.blog-content .cyber-cta a:hover {
    background: linear-gradient(135deg, #5aff85 0%, #00ff41 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 0 50px rgba(0, 255, 65, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4) !important;
    color: #000 !important;
}

/* Remove default link ::after */
.blog-content .cyber-cta a::after {
    display: none !important;
    content: none !important;
}

/* ============================================
   LIGHTBOX (Full Screen Image Viewer)
   ============================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 10, 15, 0.95);
    /* Deep dark background */
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-image.active {
    transform: scale(1);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.1), 0 0 0 1px rgba(0, 255, 65, 0.3);
    /* Subtle neon border */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.2s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #00ff41;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* ============================================
   BLOG CARD STYLES (Grid View)
   ============================================ */

.blog-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Standard ambient card lift (DESIGN.md), one accent instead of a two-color glow halo */
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Image hover effect */
.blog-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

/* ============================================
   CYBERPUNK REVEAL ANIMATION
   ============================================ */

/* Calm entrance: fade + slight rise. The glitch/chromatic-aberration text-shadow
   flicker previously here was itself a reading-surface neon excess; dropped
   per DESIGN.md's Reading Surface Rule. Motion stays (it's a nice arrival),
   just without the flicker. */
@keyframes content-reveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to blog content container */
.blog-content.cyber-fade-in {
    animation: content-reveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
}

/* Cascade effect for child elements */
.blog-content.cyber-fade-in > * {
    opacity: 0;
    animation: content-reveal 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.blog-content.cyber-fade-in > *:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-content.cyber-fade-in > *:nth-child(2) {
    animation-delay: 0.15s;
}

.blog-content.cyber-fade-in > *:nth-child(3) {
    animation-delay: 0.2s;
}

.blog-content.cyber-fade-in > *:nth-child(4) {
    animation-delay: 0.25s;
}

.blog-content.cyber-fade-in > *:nth-child(5) {
    animation-delay: 0.3s;
}

.blog-content.cyber-fade-in > *:nth-child(n+6) {
    animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    .blog-content.cyber-fade-in,
    .blog-content.cyber-fade-in > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .animate-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.blog-toc-panel[data-empty="true"] {
    display: none;
}
