  :root{
    --bg-base:#12121F;
    --bg-surface:#1A1A2E;
    --bg-surface-2:#232339;
    --bg-surface-3:#2C2C46;
    --border-subtle: rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.20);
    --teal:#00D9A3;
    --cyan:#2E6FD6;
    --blue:#0052CC;
    --amber:#FF6B35;
    --green:#00D9A3;
    --text-primary:#F4F5FB;
    --text-muted:#AEB2C4;
    --text-dim:#6C757D;
    --gradient: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  ::selection{ background: var(--teal); color:#0E0E18; }

  ::-webkit-scrollbar{ width:10px; }
  ::-webkit-scrollbar-track{ background: var(--bg-base); }
  ::-webkit-scrollbar-thumb{ background: var(--bg-surface-3); border-radius:10px; border:2px solid var(--bg-base); }

  body{
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    position:relative;
  }

  /* ambient background texture */
  body::before{
    content:"";
    position:fixed; inset:0;
    background-image:
      radial-gradient(circle at 15% 8%, rgba(0,217,163,0.10), transparent 40%),
      radial-gradient(circle at 85% 18%, rgba(0,82,204,0.14), transparent 45%),
      radial-gradient(circle at 50% 95%, rgba(46,111,214,0.08), transparent 50%);
    pointer-events:none;
    z-index:0;
  }
  body::after{
    content:"";
    position:fixed; inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events:none;
    z-index:1;
    mix-blend-mode:overlay;
  }

  .container{ max-width:1180px; margin:0 auto; padding:0 32px; position:relative; z-index:2; }

  a{ color:inherit; text-decoration:none; }

  h1,h2,h3{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; }

  .eyebrow{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color: var(--teal);
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:7px; height:7px; border-radius:50%;
    background: var(--teal);
    box-shadow:0 0 0 4px rgba(0,217,163,0.15);
  }
  .eyebrow.amber{ color:var(--amber); }
  .eyebrow.amber::before{ background:var(--amber); box-shadow:0 0 0 4px rgba(255,107,53,0.15); }
  .eyebrow.blue{ color:var(--cyan); }
  .eyebrow.blue::before{ background:var(--cyan); box-shadow:0 0 0 4px rgba(46,111,214,0.15); }
  .eyebrow.green{ color:var(--green); }
  .eyebrow.green::before{ background:var(--green); box-shadow:0 0 0 4px rgba(0,217,163,0.15); }

  .gradient-text{
    background: var(--gradient);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    backdrop-filter: blur(16px);
    background: rgba(10,14,23,0.72);
    border-bottom:1px solid var(--border-subtle);
  }
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 32px; max-width:1180px; margin:0 auto;
  }
  .logo-mark{ display:flex; align-items:center; gap:10px; }
  .logo-mark svg{ width:26px; height:26px; }
  .logo-mark img.logo-icon{ width:30px; height:30px; object-fit:contain; }
  .logo-mark span{ font-family:var(--font-display); font-weight:700; font-size:18px; letter-spacing:0.02em; }
  .footer-logo-full{ height:64px; width:auto; object-fit:contain; margin-bottom:6px; }
  .nav-links{ display:flex; gap:32px; font-size:14px; color:var(--text-muted); }
  .nav-links a:hover{ color:var(--text-primary); }
  .nav-cta{
    font-family:var(--font-mono); font-size:13px; padding:9px 18px; border-radius:8px;
    background: var(--gradient); color:#FFFFFF; font-weight:600;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .nav-cta:hover{ transform:translateY(-1px); box-shadow:0 8px 24px rgba(0,82,204,.40); }
  @media (max-width: 800px){ .nav-links{ display:none; } }

  /* ---------- TIMELINE RAIL (signature element) ---------- */
  .rail{
    position:fixed; left:36px; top:50%; transform:translateY(-50%);
    z-index:50; display:flex; flex-direction:column; align-items:center;
  }
  .rail-line{
    position:relative; width:2px; height:280px;
    background: var(--border-strong);
    border-radius:2px;
  }
  .rail-fill{
    position:absolute; top:0; left:0; width:100%; height:0%;
    background: var(--gradient);
    border-radius:2px;
    transition: height .3s ease;
  }
  .rail-nodes{ position:absolute; top:0; left:50%; transform:translateX(-50%); width:2px; height:100%; }
  .rail-node{
    position:absolute; left:50%; transform:translate(-50%,-50%);
    width:10px; height:10px; border-radius:50%;
    background: var(--bg-surface-2); border:2px solid var(--border-strong);
    transition: all .3s ease;
  }
  .rail-node.active{ background:var(--teal); border-color:var(--teal); box-shadow:0 0 0 5px rgba(0,217,163,0.18); }
  .rail-label{
    position:absolute; left:22px; transform:translateY(-50%);
    font-family:var(--font-mono); font-size:10px; letter-spacing:0.08em;
    color:var(--text-dim); white-space:nowrap; text-transform:uppercase;
    opacity:0; transition:opacity .3s ease, color .3s ease;
  }
  .rail-label.active{ opacity:1; color:var(--teal); }
  @media (max-width: 980px){ .rail{ display:none; } }

  section{ position:relative; z-index:2; padding:120px 0; }

  /* ---------- HERO ---------- */
  .hero{ padding:170px 0 100px; }
  .hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center; }
  .hero h1{
    font-size:clamp(34px, 4.4vw, 54px);
    line-height:1.08;
    margin-bottom:22px;
  }
  .hero p.sub{
    font-size:18px; color:var(--text-muted); max-width:520px; margin-bottom:34px;
  }
  .cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
  .btn-primary{
    font-family:var(--font-body); font-weight:600; font-size:15px;
    padding:15px 26px; border-radius:8px;
    background:var(--gradient); color:#FFFFFF;
    transition: transform .2s ease, box-shadow .2s ease;
    display:inline-flex; align-items:center; gap:8px;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(0,82,204,.40); }
  .btn-secondary{
    font-family:var(--font-body); font-weight:600; font-size:15px;
    padding:15px 26px; border-radius:8px;
    border:1px solid var(--border-strong); color:var(--text-primary);
    transition: border-color .2s ease, background .2s ease;
  }
  .btn-secondary:hover{ border-color:var(--teal); background:rgba(0,217,163,0.06); }
  .proof-line{
    font-family:var(--font-mono); font-size:12.5px; color:var(--text-dim);
    padding-top:22px; border-top:1px solid var(--border-subtle); max-width:520px;
  }
  .proof-line b{ color:var(--text-muted); font-weight:600; }

  .hero-visual{ position:relative; display:flex; justify-content:center; }
  .hero-phone{
    position:relative; width:100%; max-width:340px;
    filter: drop-shadow(0 40px 70px rgba(0,0,0,0.55));
    transform: rotate(-1.5deg);
  }
  .hero-phone img{ display:block; width:100%; height:auto; }
  .device-frame{
    position:relative; width:246px; padding:11px; border-radius:42px;
    background: linear-gradient(165deg, #26263c 0%, #0e0e18 62%);
    border:1px solid var(--border-default);
    box-shadow: 0 34px 64px -22px rgba(0,0,0,0.78), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .device-frame::before{
    content:""; position:absolute; top:5px; left:50%; transform:translateX(-50%);
    width:48px; height:5px; border-radius:999px; background:rgba(255,255,255,0.16); z-index:3;
  }
  .device-frame .screen{
    position:relative; border-radius:31px; overflow:hidden;
    aspect-ratio:1080 / 2457; background:var(--bg-surface);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  }
  .device-frame .screen img{ display:block; width:100%; height:100%; object-fit:cover; object-position:top center; }
  .glow-badge{
    position:absolute; padding:10px 16px; border-radius:10px;
    background: rgba(18,24,43,0.9); border:1px solid var(--border-strong);
    backdrop-filter: blur(8px);
    font-family:var(--font-mono); font-size:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
  }
  .glow-badge.top{ top:-16px; right:-18px; color:var(--amber); }
  .glow-badge.bottom{ bottom:26px; left:-34px; color:var(--green); }
  @media (max-width: 980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ margin-top:20px; }
  }

  /* ---------- GENERIC SECTION HEADS ---------- */
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head h2{ font-size:clamp(26px,3vw,36px); margin-bottom:16px; }
  .section-head p{ color:var(--text-muted); font-size:16.5px; }

  /* ---------- PROBLEM STATS ---------- */
  .stat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:56px; }
  .stat-card{
    background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:12px;
    padding:28px 24px;
  }
  .stat-card .num{ font-family:var(--font-display); font-size:38px; color:var(--amber); margin-bottom:8px; }
  .stat-card .label{ font-size:14px; color:var(--text-muted); }

  .consequence-list{ display:grid; gap:14px; max-width:720px; }
  .consequence-list div{
    display:flex; gap:14px; padding:16px 18px; background:var(--bg-surface);
    border:1px solid var(--border-subtle); border-radius:12px; font-size:15px; color:var(--text-muted);
  }
  .consequence-list div .tag{
    font-family:var(--font-mono); font-size:11px; color:var(--amber); flex-shrink:0; padding-top:2px;
  }

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

  /* ---------- FEATURES ---------- */
  .feature-layout{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
  .feature-list{ display:grid; gap:28px; }
  .feature-item{ display:flex; gap:18px; }
  .feature-icon{
    flex-shrink:0; width:44px; height:44px; border-radius:11px;
    background: var(--bg-surface-2); border:1px solid var(--border-subtle);
    display:flex; align-items:center; justify-content:center;
  }
  .feature-icon svg{ width:20px; height:20px; }
  .feature-item h3{ font-size:17px; margin-bottom:6px; }
  .feature-item p{ font-size:14.5px; color:var(--text-muted); }

  .screens-row{ display:flex; gap:24px; justify-content:center; }
  .screen-card{ text-align:center; }
  .screen-card .device-frame{ width:228px; margin:0 auto 16px; }
  .screen-card span{ font-family:var(--font-mono); font-size:11.5px; color:var(--text-dim); text-transform:uppercase; letter-spacing:.06em; }

  @media (max-width:980px){
    .feature-layout{ grid-template-columns:1fr; }
    .screens-row{ margin-top:12px; }
  }
  @media (max-width:560px){ .screens-row{ flex-direction:column; align-items:center; } }

  /* ---------- ARCHITECTURE ---------- */
  .arch-list{ display:grid; gap:0; max-width:760px; position:relative; }
  .arch-item{
    display:grid; grid-template-columns:56px 1fr; gap:24px; padding:26px 0;
    border-left:2px solid var(--border-subtle); margin-left:20px; padding-left:36px; position:relative;
  }
  .arch-item:last-child{ border-left-color:transparent; }
  .arch-item::before{
    content:""; position:absolute; left:-7px; top:32px; width:12px; height:12px; border-radius:50%;
    background:var(--bg-base); border:2px solid var(--cyan);
  }
  .arch-num{ font-family:var(--font-mono); font-size:12px; color:var(--text-dim); padding-top:3px; }
  .arch-item h3{ font-size:18px; margin-bottom:6px; color:var(--text-primary); }
  .arch-item p{ font-size:14.5px; color:var(--text-muted); max-width:520px; }

  /* ---------- RESULTS ---------- */
  .result-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .result-card{
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-surface-2));
    border:1px solid var(--border-subtle); border-radius:12px; padding:30px 22px;
    position:relative; overflow:hidden;
  }
  .result-card::after{
    content:""; position:absolute; top:-40%; right:-40%; width:140px; height:140px; border-radius:50%;
    background: radial-gradient(circle, rgba(0,217,163,0.16), transparent 70%);
  }
  .result-card .num{ font-family:var(--font-display); font-size:34px; margin-bottom:10px; position:relative; z-index:1; }
  .result-card .num.gradient{ background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .result-card .label{ font-size:13.5px; color:var(--text-muted); position:relative; z-index:1; }
  @media (max-width:980px){ .result-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .result-grid{ grid-template-columns:1fr; } }

  .predictive-block{ margin-top:64px; padding-top:56px; border-top:1px solid var(--border-subtle); }
  .predictive-head{ max-width:640px; margin-bottom:40px; }
  .predictive-head h3{ font-size:22px; margin-bottom:14px; }
  .predictive-head p{ color:var(--text-muted); font-size:15.5px; }
  .predictive-features{ grid-template-columns:1fr; display:grid; gap:26px; margin-bottom:44px; }
  @media (min-width:800px){ .predictive-features{ grid-template-columns:repeat(3,1fr); } }

  .eco-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
  .eco-card{
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-surface-2));
    border:1px solid var(--border-subtle); border-radius:12px; padding:28px 26px;
  }
  .eco-tag{
    font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
    color:var(--teal); display:block; margin-bottom:10px;
  }
  .eco-card h3{ font-size:19px; margin-bottom:10px; }
  .eco-card p{ font-size:14.5px; color:var(--text-muted); }
  @media (max-width:700px){ .eco-grid{ grid-template-columns:1fr; } }

  /* ---------- CREDIBILITY ---------- */
  .cred-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:32px; }
  .cred-card{
    background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:12px; padding:32px;
  }
  .cred-card .cred-tag{ font-family:var(--font-mono); font-size:11.5px; color:var(--text-dim); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; display:block; }
  .cred-card h3{ font-size:19px; margin-bottom:12px; }
  .cred-card p{ font-size:14.5px; color:var(--text-muted); }
  .cred-card img{ height:26px; margin-bottom:18px; }
  .trl-strip{
    display:flex; align-items:center; gap:18px; flex-wrap:wrap;
    background:var(--bg-surface-2); border:1px solid var(--border-subtle); border-radius:12px; padding:18px 24px;
    font-size:14px; color:var(--text-muted);
  }
  .trl-strip b{ font-family:var(--font-mono); color:var(--cyan); font-weight:600; }
  @media (max-width:800px){ .cred-grid{ grid-template-columns:1fr; } }

  /* ---------- FAQ ---------- */
  .faq-list{ display:grid; gap:14px; max-width:820px; }
  .faq-item{
    background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:12px;
    padding:6px 24px; transition: border-color .2s ease;
  }
  .faq-item[open]{ border-color: rgba(0,217,163,0.35); }
  .faq-item summary{
    cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between;
    gap:20px; padding:18px 0; font-family:var(--font-display); font-weight:600; font-size:16px;
    color:var(--text-primary);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::marker{ content:""; }
  .faq-icon{
    flex-shrink:0; width:22px; height:22px; border-radius:50%; border:1px solid var(--border-strong);
    display:flex; align-items:center; justify-content:center; position:relative; transition:transform .25s ease, border-color .25s ease;
  }
  .faq-icon::before, .faq-icon::after{
    content:""; position:absolute; background:var(--text-muted); transition: opacity .2s ease;
  }
  .faq-icon::before{ width:10px; height:1.5px; }
  .faq-icon::after{ width:1.5px; height:10px; }
  .faq-item[open] .faq-icon{ border-color:var(--teal); transform:rotate(180deg); }
  .faq-item[open] .faq-icon::after{ opacity:0; }
  .faq-item p{ font-size:14.5px; color:var(--text-muted); padding-bottom:20px; max-width:640px; }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-surface-2));
    border:1px solid var(--border-subtle); border-radius:16px;
    padding:64px 56px; text-align:center; position:relative; overflow:hidden;
  }
  .final-cta::before{
    content:""; position:absolute; inset:0;
    background: radial-gradient(circle at 50% 0%, rgba(0,82,204,.16), transparent 60%);
  }
  .final-cta h2{ font-size:clamp(26px,3.4vw,38px); margin-bottom:16px; position:relative; z-index:1; }
  .final-cta p{ color:var(--text-muted); max-width:520px; margin:0 auto 32px; position:relative; z-index:1; font-size:16px; }
  .final-cta .cta-row{ justify-content:center; margin-bottom:18px; position:relative; z-index:1; }
  .final-cta .fine-print{ font-size:13px; color:var(--text-dim); position:relative; z-index:1; font-family:var(--font-mono); }
  @media (max-width:700px){ .final-cta{ padding:48px 24px; } }

  /* ---------- FOOTER ---------- */
  footer{ padding:56px 0 40px; border-top:1px solid var(--border-subtle); }
  .footer-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; margin-bottom:28px; }
  .footer-links{ display:flex; gap:26px; font-size:13.5px; color:var(--text-muted); flex-wrap:wrap; }
  .footer-links a:hover{ color:var(--text-primary); }
  .footer-bottom{ font-size:12.5px; color:var(--text-dim); font-family:var(--font-mono); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; }

  /* reveal animation */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  ::-moz-selection{ background: var(--teal); color:#0E0E18; }

  /* ---------- BLOG (#blog) ---------- */
  .blog-empty{
    border:1px solid var(--border-subtle); border-radius:12px;
    background:var(--bg-surface); padding:40px 32px; text-align:center;
  }
  .blog-empty p{ color:var(--text-muted); font-size:16px; max-width:460px; margin:0 auto 20px; }

  /* Widget da Soro adaptado à paleta do ManTix.
     O widget injeta o <style> dele no fim do <head>, depois deste arquivo — por isso
     todo seletor é prefixado com #soro-blog, para vencer por especificidade e não por ordem. */
  /* Ao abrir um post o widget faz scrollIntoView({block:'start'}) neste container.
     Sem a margem, o título do artigo para atrás do header fixo. */
  #soro-blog{ scroll-margin-top:96px; }
  #soro-blog .soro-blog{
    background:transparent; max-width:none;
    color:var(--text-primary); font-family:var(--font-body);
  }

  /* O widget monta HTML semântico — <section> para a lista, <header> para o cabeçalho
     do artigo — e o site estiliza esses elementos pelo nome da tag: `section{padding:120px 0}`
     abria um vão enorme em volta da lista, e `header{position:fixed;top:0}` arrancava o
     cabeçalho do artigo do fluxo, jogando título e data para trás da barra de navegação.
     Este reset devolve o comportamento normal a qualquer tag dessas vinda do widget.
     Os cards são <a>, então não são afetados. */
  #soro-blog header,
  #soro-blog footer,
  #soro-blog article,
  #soro-blog section{
    position:static; inset:auto; z-index:auto;
    padding:0; background:none; border:0;
    backdrop-filter:none; -webkit-backdrop-filter:none;
  }

  /* Lista em grade, como as demais grades de card do site. O minmax segura a
     largura do card quando há um post só, em vez de esticá-lo pela seção inteira. */
  #soro-blog .soro-blog-list{
    display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 360px));
    gap:24px;
  }
  #soro-blog .soro-blog-card{
    flex-direction:column; gap:16px; padding:20px;
    background:var(--bg-surface); border:1px solid var(--border-subtle);
    border-radius:12px; transition:border-color .2s ease, transform .2s ease;
  }
  #soro-blog .soro-blog-card:hover{
    border-color:rgba(0,217,163,0.35); box-shadow:none; transform:translateY(-2px);
  }
  #soro-blog .soro-blog-card-image{ width:100%; height:170px; border-radius:8px; }
  #soro-blog .soro-blog-card-title{ font-size:19px; color:var(--text-primary); }
  #soro-blog .soro-blog-card-excerpt{ font-size:14.5px; color:var(--text-muted); }
  /* Data em mono, mesma linguagem das legendas e metadados do resto do site.
     display:block porque <time> é inline e o margin-bottom do widget não pegava. */
  #soro-blog .soro-blog-card-date,
  #soro-blog .soro-blog-article-date{
    display:block; font-family:var(--font-mono); font-size:11.5px;
    letter-spacing:.06em; color:var(--text-dim);
  }
  #soro-blog .soro-blog-article-date{ margin-bottom:24px; }

  /* Post aberto: largura de leitura, não a largura da seção */
  #soro-blog .soro-blog-article{ max-width:760px; }
  #soro-blog .soro-blog-article-title{ font-size:clamp(26px,3vw,34px); color:var(--text-primary); }
  #soro-blog .soro-blog-article-content{ color:var(--text-muted); }
  #soro-blog .soro-blog-article-content h1,
  #soro-blog .soro-blog-article-content h2,
  #soro-blog .soro-blog-article-content h3{ color:var(--text-primary); }
  #soro-blog .soro-blog-article-content a{ color:var(--teal); text-decoration:underline; }

  /* Botão "voltar" com o mesmo desenho do .btn-secondary */
  #soro-blog .soro-blog-back{
    background:transparent; border:1px solid var(--border-strong);
    color:var(--text-primary); border-radius:8px; padding:12px 20px;
    font-family:var(--font-body); font-weight:600; font-size:14px;
  }
  #soro-blog .soro-blog-back:hover{
    background:rgba(0,217,163,0.06); border-color:var(--teal);
  }

  /* Estados: vazio, carregando, erro */
  #soro-blog .soro-blog-empty,
  #soro-blog .soro-blog-loading{ color:var(--text-muted); }
  #soro-blog .soro-blog-error{ color:var(--amber); }
  #soro-blog .soro-blog-spinner{
    border-color:var(--border-subtle); border-top-color:var(--teal);
  }

  @media (max-width:660px){
    #soro-blog .soro-blog-list{ grid-template-columns:1fr; }
  }
