/* Hoja de estilos de los artículos del blog.
   Antes vivía duplicada dentro de cada post escrito a mano, y por eso los
   artículos que genera build_blog_posts.py salían sin estilo: la plantilla
   nunca la llevó. Ahora es un fichero único que enlazan todos. */

.blog-faq{margin:8px 0 12px;border-top:1px solid rgba(24,16,44,0.1);}
    .blog-faq__item{border-bottom:1px solid rgba(24,16,44,0.1);}
    .blog-faq__item summary{list-style:none;cursor:pointer;padding:20px 0;display:flex;justify-content:space-between;align-items:center;gap:16px;font-weight:600;color:#181028;font-size:1.05rem;transition:color .25s;}
    .blog-faq__item summary::-webkit-details-marker{display:none;}
    .blog-faq__item summary::after{content:"+";color:#7c3aed;font-weight:300;font-size:1.5rem;line-height:1;flex-shrink:0;transition:transform .25s;}
    .blog-faq__item[open] summary::after{content:"−";}
    .blog-faq__item:hover summary{color:#7c3aed;}
    .blog-faq__item p{margin:0 0 20px;color:rgba(34,22,56,.7);line-height:1.75;}
  

  
    /* ── BASE GLOBAL (idéntico a Home y hubs) ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    body, html {
      margin: 0; padding: 0; width: 100%;
      background: transparent; overflow-x: hidden;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #221638;
    }
    .rc { font-family: "Roboto Condensed", sans-serif; }
    ::selection { background: rgba(124,58,237,.3); color:#fff; }
    ::-webkit-scrollbar { width: 7px; }
    ::-webkit-scrollbar-track { background: #faf9fe; }
    ::-webkit-scrollbar-thumb { background: #ffffff; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #7c3aed; }

    /* Skip link */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 0;
      background: #7c3aed;
      color:#ffffff;
      padding: 8px 16px;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* ── HEADER GLOBAL ─────────────────── */
    .site-header {
      position: fixed; top: 36px; left: 0; width: 100%;
      padding: 22px 40px;
      display: flex; justify-content: space-between; align-items: center;
      z-index: 100;
      background: rgba(252,251,255,0.72);
      backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid rgba(24,16,44,0.04);
      transition: padding .3s ease, background .3s ease;
    }
    .site-header.scrolled { padding: 14px 40px; background: rgba(252,251,255,0.9); }
    @media(max-width:768px){ .site-header { padding: 14px 20px; } }
    .header-logo { color:#181028; text-decoration: none; font-family: "Roboto Condensed", sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
    .header-logo span { color: #7c3aed; }
    .header-right { display: flex; align-items: center; gap: 40px; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { color: rgba(24,16,44,0.94); text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: color .3s; }
    .nav-links a:hover, .nav-links a.active { color: #7c3aed; }
    @media(max-width:768px){ .nav-links { display: none; } }
    .nav-contact-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; color:#fff; text-decoration: none; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; transition: all .3s; backdrop-filter: blur(10px); }
    .nav-contact-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(124,58,237,.5); color: #8b5cf6; transform: translateY(-1px); }
    
    .nav-dropdown { position: relative; }
    .nav-dropdown__trigger { display: inline-flex; align-items: center; }
    .nav-dropdown__trigger svg { transition: transform .3s; }
    .nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }
    .nav-dropdown__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 260px; padding: 12px 0; margin-top: 14px; background: rgba(252,251,255,.97); border: 1px solid rgba(24,16,44,0.08); border-radius: 12px; backdrop-filter: blur(20px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s, visibility .25s, transform .25s; transform: translateX(-50%) translateY(8px); box-shadow: 0 20px 40px rgba(20,12,40,0.18); z-index: 200; } .nav-dropdown__menu::before { content: ""; position: absolute; top: -25px; left: 0; width: 100%; height: 25px; }
    .nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .nav-dropdown__menu a { display: block; padding: 10px 20px; font-size: 13px !important; font-weight: 500 !important; letter-spacing: .02em !important; text-transform: none !important; color: rgba(24,16,44,0.82) !important; transition: background .2s, color .2s, padding-left .2s; }
    .nav-dropdown__menu a:hover { background: rgba(124,58,237,.08); color: #7c3aed !important; padding-left: 24px; }
    .nav-dropdown__all { color: #7c3aed !important; font-weight: 600 !important; border-top: 1px solid rgba(24,16,44,0.07); margin-top: 6px; padding-top: 12px !important; }
    .nav-dropdown__all:hover { padding-left: 24px; }
    .nav-dropdown--wide .nav-dropdown__menu { min-width: 300px; }
    
    .mobile-menu-btn { display: none; background: none; border: none; color:#181028; cursor: pointer; padding: 4px; }
    @media(max-width:960px){ .nav-links { display: none !important; } .mobile-menu-btn { display: flex; } }
    .mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(252,251,255,.98); backdrop-filter: blur(24px); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; overflow-y: auto; padding: 84px 24px 48px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
    .mobile-menu.open { opacity: 1; visibility: visible; }
    .mobile-menu__close { position: fixed; top: 20px; right: 20px; background: none; border: none; color:#181028; cursor: pointer; z-index: 2; }
    .mobile-menu__nav { display: flex; flex-direction: column; gap: 11px; text-align: center; margin: auto 0; width: 100%; max-width: 360px; }
    .mobile-menu__nav a { color: rgba(24,16,44,0.97); text-decoration: none; font-size: 1.05rem; font-weight: 600; transition: color .3s; }
    .mobile-menu__nav a:hover { color: #7c3aed; }
    .mobile-menu__group { font-size: .72rem !important; font-weight: 700 !important; letter-spacing: 2px; text-transform: uppercase; color: #7c3aed !important; margin-top: 14px; }
    .mobile-menu__sub { font-size: .9rem !important; font-weight: 400 !important; color: rgba(24,16,44,0.62) !important; }

    .btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-size: .9rem; font-weight: 700; background: linear-gradient(180deg,#7c3aed 0%,#6d28d9 100%); border-radius: 10px; border: none; color:#fff; text-decoration: none; transition: all .3s; box-shadow: inset 0 1px 0 rgba(24,16,44,0.18), 0 10px 24px rgba(138,84,255,.22); cursor: pointer; }
    .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
    .btn-ghost { display: inline-flex; align-items: center; padding: 12px 24px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(34,22,56,.85); text-decoration: none; border: 1px solid rgba(24,16,44,0.18); border-radius: 8px; background: transparent; transition: all .25s; }
    .btn-ghost:hover { border-color: rgba(24,16,44,0.5); background: rgba(24,16,44,0.06); color:#181028; transform: translateY(-2px); }

    /* ── DISEÑO EDITORIAL REUTILIZABLE ─────────────────── */
    .blog-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
    
    .post-hero { padding: 160px 0 60px; text-align: center; border-bottom: 1px solid rgba(24,16,44,0.05); margin-bottom: 60px; }
    .post-hero-bg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80vw; max-width: 1000px; height: 500px; background: radial-gradient(ellipse at top, rgba(124,58,237,.08) 0%, transparent 70%); pointer-events: none; z-index: 0; }
    
    .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: rgba(24,16,44,0.52); margin-bottom: 24px; }
    .breadcrumb a { color: rgba(124,58,237,.7); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: #7c3aed; }
    
    .post-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #7c3aed; padding: 6px 14px; border: 1px solid rgba(124,58,237,.2); background: rgba(124,58,237,.08); border-radius: 4px; margin-bottom: 20px; }
    
    .post-h1 { font-family: "Roboto Condensed", sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; color:#181028; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 24px; }
    .post-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(34,22,56,.65); line-height: 1.6; font-weight: 300; max-width: 90%; margin: 0 auto 30px; }
    
    .post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: .85rem; color: rgba(34,22,56,.5); }
    .post-meta span::before { content: "•"; color: rgba(24,16,44,0.2); margin-right: 16px; }
    .post-meta span:first-child::before { display: none; }

    /* Imagen de cabecera del artículo. Va debajo del titular, no de fondo:
       el texto manda y la imagen acompaña. */
    .post-figure { margin: 0 0 56px; border-radius: 14px; overflow: hidden; position: relative; z-index: 2; box-shadow: 0 18px 44px -22px rgba(24,16,44,.45); }
    .post-figure img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
    @media(max-width:640px){ .post-figure { margin-bottom: 36px; border-radius: 10px; } }

    .post-body { font-size: 1.1rem; line-height: 1.8; color: rgba(34,22,56,.85); padding-bottom: 80px; }
    .post-body p { margin-bottom: 24px; }
    
    .post-body h2 { font-family: "Roboto Condensed", sans-serif; font-size: 2.2rem; font-weight: 700; color:#181028; margin: 60px 0 24px; line-height: 1.2; letter-spacing: -.02em; border-bottom: 1px solid rgba(24,16,44,0.06); padding-bottom: 12px; }
    .post-body h3 { font-family: "Roboto Condensed", sans-serif; font-size: 1.5rem; font-weight: 600; color:#181028; margin: 40px 0 16px; line-height: 1.3; }
    
    .post-body ul, .post-body ol { margin-bottom: 28px; padding-left: 24px; }
    .post-body li { margin-bottom: 12px; position: relative; }
    .post-body li::marker { color: #7c3aed; }
    .post-body strong { color:#181028; font-weight: 600; }

    /* Bloques editoriales específicos */
    .post-block-context { background: rgba(24,16,44,0.02); border-left: 4px solid #7c3aed; padding: 24px 32px; border-radius: 0 12px 12px 0; margin: 40px 0; }
    .post-block-context h3 { margin-top: 0; color: #7c3aed; font-size: 1.3rem; border: none; padding: 0; }
    
    .post-block-practical { background: linear-gradient(180deg, #f6f4fb, #f1edf8); border: 1px solid rgba(24,16,44,0.08); border-radius: 12px; padding: 36px; margin: 50px 0; box-shadow: 0 20px 40px rgba(20,12,40,0.12); }
    .post-block-practical h3 { margin-top: 0; display: flex; align-items: center; gap: 12px; color:#181028; }
    .post-block-practical h3::before { content: "⚡"; font-size: 1.2rem; }
    
    .post-block-when { background: linear-gradient(135deg, rgba(124,58,237,.08) 0%, transparent 100%); border: 1px solid rgba(124,58,237,.2); border-radius: 12px; padding: 36px; margin: 50px 0; }
    .post-block-when h3 { margin-top: 0; color:#181028; display: flex; align-items: center; gap: 12px; }
    .post-block-when h3::before { content: "🎯"; font-size: 1.2rem; }

    /* CTA contextual dentro del artículo */
    .post-cta-inline { background: #f4f1fa; border: 1px solid rgba(124,58,237,.15); padding: 40px; border-radius: 16px; margin: 60px 0; text-align: center; position: relative; overflow: hidden; }
    .post-cta-inline::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(124,58,237,.1) 0%, transparent 70%); pointer-events: none; }
    .post-cta-inline h3 { font-family: "Roboto Condensed", sans-serif; font-size: 1.6rem; color:#181028; margin: 0 0 16px; position: relative; z-index: 2; }
    .post-cta-inline p { color: rgba(34,22,56,.6); margin: 0 0 28px; position: relative; z-index: 2; font-size: 1rem; }
    .post-cta-inline .btn-ghost { background: rgba(252,251,255,0.4); border-color: rgba(124,58,237,.3); color:#181028; }
    .post-cta-inline .btn-ghost:hover { background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.6); }

    /* Enlaces relacionados al final */
    .related-articles { padding: 80px 24px; background: #faf9fe; border-top: 1px solid rgba(24,16,44,0.05); text-align: center; position: relative; z-index: 2; }
    .related-title { font-family: "Roboto Condensed", sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 32px; color:#181028; }
    .related-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; max-width: 900px; margin: 0 auto; }
    .related-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: rgba(24,16,44,0.03); border: 1px solid rgba(24,16,44,0.08); border-radius: 30px; font-size: .9rem; font-weight: 600; color: rgba(34,22,56,.8); text-decoration: none; transition: all .3s; }
    .related-pill:hover { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.3); color:#fff; transform: translateY(-2px); }

    /* CTA FINAL GLOBAL */
    .final-cta { position: relative; background: linear-gradient(180deg,#f8f6fd,#f3f0f9); padding: 96px 0; overflow: hidden; border-top: 1px solid rgba(24,16,44,0.04); z-index: 2; }
    .final-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(24,16,44,0.018) 1px,transparent 1px),linear-gradient(90deg,rgba(24,16,44,0.018) 1px,transparent 1px); background-size: 40px 40px; opacity: .5; pointer-events: none; }
    .cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 380px; background: radial-gradient(ellipse,rgba(176,108,255,.08) 0%,transparent 70%); pointer-events: none; }
    .cta-box { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; padding: 0 24px; }
    .cta-box h2 { font-family: "Roboto Condensed",sans-serif; font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -.04em; color:#181028; margin: 0 0 18px; }
    .cta-box p { font-size: 1.02rem; color: rgba(34,22,56,.62); line-height: 1.72; max-width: 52ch; margin: 0 auto 36px; }
    .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    /* FOOTER (idéntico) */
    .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; }
    @media(min-width:768px){ .footer-grid { grid-template-columns: repeat(2,1fr); } }
    @media(min-width:1024px){ .footer-grid { grid-template-columns: repeat(5,1fr); } }
    .footer-col h3 { font-size: 16px; line-height: 1.5; color:#181028; margin-bottom: 16px; font-weight: 600; }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: #5d5478; text-decoration: none; transition: color .3s; }
    .footer-col ul li a:hover { color:#181028; }
    .footer-logo { font-size: 20px; text-transform: uppercase; color:#181028; font-weight: bold; margin-bottom: 20px; display: inline-block; text-decoration: none; }
    .footer-col p { line-height: 1.6; margin-bottom: 20px; color: #5d5478; }
    .social-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; border-top: 1px solid #e4dcf5; padding-top: 40px; }
    .social-circle { width: 40px; height: 40px; background-color: #4c1d95; border-radius: 50%; display: flex; align-items: center; justify-content: center; color:#fff; text-decoration: none; transition: all .3s; }
    .social-circle:hover { background-color: #9333ea; transform: translateY(-3px); }
    .social-circle svg { width: 18px; height: 18px; fill: currentColor; }
    .copyright { text-align: center; color: #665c86; font-size: 14px; }
    .footer-social-row { border-top: none !important; padding-top: 0 !important; margin-bottom: 0 !important; justify-content: flex-start !important; gap: 10px !important; }
    .footer-copyright { text-align: left; margin-top: 10px; }
  
  
    /* ── PREMIUM ANIMATIONS SYSTEM ── */
    @keyframes gridMove {
      0% { background-position: 0 0; }
      100% { background-position: 72px 72px; }
    }
    .bg-grid {
      animation: gridMove 25s linear infinite !important;
    }
    
    /* Neon glow slow pulse */
    @keyframes glowPulse {
      0%, 100% { opacity: 0.55; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.04); }
    }
    .hero-glow-top, .srv-glow, .sub-glow, .cta-glow {
      animation: glowPulse 12s ease-in-out infinite alternate !important;
    }
    
    /* Premium Hover transitions on Cards */
    .srv-card, .prob-card, .sub-card, .diff-item, .sol-card, .met-card, .blog-card, .principle-card {
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .srv-card:hover, .sol-card:hover, .met-card:hover, .blog-card:hover {
      transform: translateY(-6px) scale(1.015) !important;
      border-color: rgba(124,58,237, 0.4) !important;
      box-shadow: 0 22px 45px rgba(124,58,237, 0.08), 0 0 0 1px rgba(124,58,237, 0.1) !important;
    }
    .prob-card:hover, .principle-card:hover {
      transform: translateY(-4px) scale(1.015) !important;
      border-color: rgba(124,58,237, 0.3) !important;
      box-shadow: 0 16px 32px rgba(124,58,237, 0.06) !important;
    }
    .sub-card:hover {
      transform: translateY(-4px) scale(1.02) !important;
      border-color: rgba(124,58,237, 0.35) !important;
      box-shadow: 0 16px 32px rgba(124,58,237, 0.06) !important;
    }
    .diff-item:hover {
      transform: translateX(6px) !important;
      border-color: rgba(124,58,237, 0.3) !important;
      background: #f1edf8 !important;
    }

    /* Shiny glare effect on buttons */
    .btn-primary, .submit-btn, .nav-contact-btn {
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before, .submit-btn::before, .nav-contact-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -150%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transform: skewX(-25deg);
      pointer-events: none;
      transition: none;
    }
    .btn-primary:hover::before, .submit-btn:hover::before, .nav-contact-btn:hover::before {
      left: 150%;
      transition: left 0.8s ease-in-out;
    }

    /* Scroll reveal improvements */
    html.js .reveal {
      opacity: 0;
      transform: translateY(24px);
      will-change: transform, opacity;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .reveal.active {
      opacity: 1 !important;
      transform: none !important;
    }
    
    /* Staggered transition delays */
    .rd1, .delay-100 { transition-delay: 0.08s !important; }
    .rd2, .delay-200 { transition-delay: 0.16s !important; }
    .rd3, .delay-300 { transition-delay: 0.24s !important; }
    .rd4, .delay-400 { transition-delay: 0.32s !important; }
    .rd5, .delay-500 { transition-delay: 0.4s !important; }
    .delay-600 { transition-delay: 0.48s !important; }
    .delay-700 { transition-delay: 0.56s !important; }

    /* Interactive logo hover */
    .header-logo img {
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }
    .header-logo:hover img {
      transform: scale(1.08) rotate(3deg) !important;
    }
  


    .nav-contact-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; font-size: 13px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color:#fff; text-decoration: none; background: linear-gradient(135deg,#8b5cf6 0%,#6d28d9 100%); border: 1px solid rgba(124,58,237,.55); border-radius: 10px; box-shadow: 0 8px 24px -8px rgba(124,58,237,.7), inset 0 1px 0 rgba(255,255,255,0.18); overflow: hidden; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, filter .25s; }
    .nav-contact-btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%); transform: translateX(-130%); transition: transform .6s var(--ease-io,cubic-bezier(.65,.05,.36,1)); }
    .nav-contact-btn svg { transition: transform .25s ease; }
    .nav-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(124,58,237,.95), inset 0 1px 0 rgba(255,255,255,0.26); filter: brightness(1.06); color:#fff; }
    .nav-contact-btn:hover::before { transform: translateX(130%); }
    .nav-contact-btn:hover svg { transform: translateX(3px); }
  
  
  html{background:#faf9fe}
  html::before{content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;background:
   radial-gradient(52% 40% at 12% 6%,rgba(124,58,237,.14),transparent 62%),
   radial-gradient(46% 36% at 90% 10%,rgba(8,116,178,.11),transparent 60%),
   radial-gradient(60% 48% at 50% 104%,rgba(109,40,217,.10),transparent 58%),
   linear-gradient(180deg,#faf9fe,#f4f1fb)}

    /* ── WEBGRAFÍA ─────────────────────────────────────────────────────────
       Solo aparece en los artículos que se apoyan en fuentes externas
       (noticias y curiosidades). En una guía escrita de cero no se pinta. */
    .post-sources {
      margin: 56px 0 0; padding: 28px 30px;
      background: rgba(124,58,237,.045);
      border: 1px solid rgba(124,58,237,.16);
      border-radius: 12px;
    }
    .post-sources h2 {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.25rem !important; font-weight: 700; color:#181028;
      margin: 0 0 6px !important; padding: 0 !important;
      border: none !important; letter-spacing: -.01em;
    }
    .post-sources__note { font-size: .82rem; color: rgba(34,22,56,.5); margin: 0 0 18px; }
    .post-sources ol { margin: 0; padding-left: 20px; }
    .post-sources li { margin-bottom: 12px; font-size: .95rem; line-height: 1.6; }
    .post-sources li:last-child { margin-bottom: 0; }
    .post-sources li::marker { color: #7c3aed; font-weight: 700; }
    .post-sources a { color: #6d28d9; text-decoration: none; border-bottom: 1px solid rgba(109,40,217,.3); word-break: break-word; }
    .post-sources a:hover { color: #7c3aed; border-bottom-color: #7c3aed; }
    .post-sources__pub { color: rgba(34,22,56,.55); }
    @media(max-width:640px){ .post-sources { padding: 22px 20px; } }
