
.ezb{
    /* Repointed to AIToolsay blue palette (design.md §2.1); token names kept for stability. */
    --ez-red:#3680ED; --ez-red-dark:#2060C0; --ez-red-soft:#60A4F5;
    --ez-tint:#EAF2FD; --ez-tint-2:#F4F8FE;
    --ez-ink:#111111; --ez-txt:#444444; --ez-mut:#777777;
    --ez-line:#ECECEC; --ez-bg:#FAFAFA; --ez-card:#FFFFFF;
    --ez-shadow:0 1px 2px rgba(15,23,42,.04),0 8px 24px rgba(15,23,42,.05);
    --ez-shadow-lg:0 18px 44px rgba(17,17,17,.10);
    --ez-r:20px; --ez-trans:.22s cubic-bezier(.4,0,.2,1);
    max-width:1280px; margin:0 auto; padding:22px 24px 64px;
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color:var(--ez-txt); -webkit-font-smoothing:antialiased;
    font-feature-settings:"cv02","cv03","cv11";
}
.ezb *{box-sizing:border-box}
.ezb a{text-decoration:none}
.ezb a:not([class]){color:inherit}
.ezb ul{list-style:none;margin:0;padding:0}
.ezb button{font-family:inherit;cursor:pointer}

/* ── Breadcrumb ── */
.ezb-crumbs{display:flex;align-items:center;gap:9px;font-size:13px;font-weight:600;color:var(--ez-mut);margin-bottom:20px}
.ezb-crumbs a{color:var(--ez-mut);transition:color var(--ez-trans)}
.ezb-crumbs a:hover{color:var(--ez-red)}
.ezb-crumbs span[aria-current]{color:var(--ez-ink)}

/* ── Hero ── */
.ezb-hero{
    position:relative;display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center;
    background:linear-gradient(135deg,var(--ez-tint) 0%,var(--ez-tint-2) 62%,#fff 100%);
    border:1px solid #CFE0FA;border-radius:26px;padding:44px 46px;overflow:hidden;margin-bottom:26px;
    box-shadow:0 10px 34px rgba(54,128,237,.06);
}
.ezb-badge-pill{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1px solid #CFE0FA;color:var(--ez-red);
    font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;padding:7px 14px;border-radius:999px;box-shadow:0 4px 12px rgba(54,128,237,.10)}
.ezb-hero-title{font-size:clamp(28px,3.6vw,44px);line-height:1.08;font-weight:800;letter-spacing:-.02em;color:var(--ez-ink);margin:18px 0 14px}
.ezb-hero-title span{color:var(--ez-red)}
.ezb-hero-sub{font-size:15.5px;line-height:1.65;color:var(--ez-txt);max-width:52ch;margin:0}

/* Hero decorative art */
.ezb-hero-art{position:relative;height:230px}
.ezb-art-window{position:absolute;right:0;top:14px;width:74%;background:#fff;border:1px solid #CFE0FA;border-radius:18px;box-shadow:var(--ez-shadow-lg);overflow:hidden}
.ezb-art-bar{display:flex;gap:6px;padding:12px 14px;background:linear-gradient(90deg,var(--ez-red),var(--ez-red-soft))}
.ezb-art-bar i{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.65)}
.ezb-art-screen{padding:16px 16px 20px;display:flex;flex-direction:column;gap:9px}
.ezb-art-brand{font-size:22px;font-weight:900;letter-spacing:.02em;color:var(--ez-red);margin-bottom:2px}
.ezb-art-line{height:8px;border-radius:5px;background:#EFEFF2}
.ezb-art-line.w100{width:100%}.ezb-art-line.w80{width:80%}.ezb-art-line.w60{width:60%}
.ezb-art-thumb{height:52px;border-radius:10px;background:linear-gradient(135deg,var(--ez-tint),#fff);border:1px solid var(--ez-line);margin-top:4px}
.ezb-art-tile{position:absolute;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #CFE0FA;
    border-radius:14px;color:var(--ez-red);font-weight:800;box-shadow:var(--ez-shadow);animation:ezb-float 5s ease-in-out infinite}
.ezb-art-code{left:2%;top:6px;width:52px;height:52px;font-size:16px}
.ezb-art-type{left:8%;bottom:8px;width:46px;height:46px;font-size:20px;animation-delay:.8s}
.ezb-art-search{right:6%;bottom:0;width:48px;height:48px;animation-delay:1.6s}
.ezb-art-search svg{width:22px;height:22px}
@keyframes ezb-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* ── Toolbar ── */
.ezb-toolbar{display:flex;gap:14px;margin-bottom:16px;flex-wrap:wrap}
/* Premium search — soft inset base, brand glow + lift on focus. */
.ezb-search{position:relative;flex:1;min-width:260px;display:flex;align-items:center;background:linear-gradient(180deg,#fff,var(--ez-bg));border:1.5px solid var(--ez-line);border-radius:14px;padding:0 16px;box-shadow:inset 0 1px 2px rgba(15,23,42,.03);transition:border-color var(--ez-trans),box-shadow var(--ez-trans),background var(--ez-trans)}
.ezb-search:focus-within{border-color:var(--ez-red);background:#fff;box-shadow:0 0 0 4px rgba(54,128,237,.12),0 8px 20px rgba(54,128,237,.10)}
.ezb-search-ic{width:19px;height:19px;color:var(--ez-mut);flex-shrink:0;transition:color var(--ez-trans)}
.ezb-search:focus-within .ezb-search-ic{color:var(--ez-red)}
.ezb-search input{flex:1;border:0;outline:0;background:transparent;padding:14px 12px;font-size:14.5px;color:var(--ez-ink);min-width:0;font-weight:500}
.ezb-search input::placeholder{color:var(--ez-mut);font-weight:400}
.ezb-search-spin{width:16px;height:16px;border:2px solid var(--ez-tint);border-top-color:var(--ez-red);border-radius:50%;animation:ezb-spin .7s linear infinite;flex-shrink:0}
@keyframes ezb-spin{to{transform:rotate(360deg)}}
/* Premium category / sort dropdown — pill with hover lift + focus ring. */
.ezb-filter{position:relative;min-width:210px}
.ezb-filter select{appearance:none;-webkit-appearance:none;width:100%;background:linear-gradient(180deg,#fff,var(--ez-bg));border:1.5px solid var(--ez-line);border-radius:14px;padding:14px 44px 14px 18px;font-size:14px;font-weight:700;color:var(--ez-ink);cursor:pointer;box-shadow:0 1px 2px rgba(15,23,42,.04);transition:border-color var(--ez-trans),box-shadow var(--ez-trans)}
.ezb-filter select:hover{border-color:var(--ez-red-soft);box-shadow:0 4px 12px rgba(54,128,237,.14)}
.ezb-filter select:focus{outline:0;border-color:var(--ez-red);box-shadow:0 0 0 4px rgba(54,128,237,.12)}
.ezb-filter select option{background:#fff;color:var(--ez-ink);font-weight:600}
.ezb-filter-caret{position:absolute;right:16px;top:50%;transform:translateY(-50%);width:17px;height:17px;color:var(--ez-mut);pointer-events:none;transition:color var(--ez-trans)}
.ezb-filter:hover .ezb-filter-caret{color:var(--ez-red)}

/* ── Tags ── */
.ezb-tags{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-bottom:22px}
.ezb-tags-label{font-size:13px;font-weight:700;color:var(--ez-mut);margin-right:2px}
.ezb-tag{background:#fff;border:1px solid var(--ez-line);color:var(--ez-txt);font-size:12.5px;font-weight:600;padding:6px 13px;border-radius:999px;transition:all var(--ez-trans)}
.ezb-tag:hover{background:var(--ez-tint);border-color:#CFE0FA;color:var(--ez-red-dark)}

/* ── Active filters ── */
.ezb-active{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;background:var(--ez-tint-2);border:1px solid #CFE0FA;border-radius:12px;padding:11px 16px;margin-bottom:22px;font-size:13.5px;color:var(--ez-txt)}
.ezb-active b{color:var(--ez-ink)}
.ezb-active-clear{background:#fff;border:1px solid #CFE0FA;color:var(--ez-red);font-size:12.5px;font-weight:700;padding:6px 12px;border-radius:8px;transition:all var(--ez-trans)}
.ezb-active-clear:hover{background:var(--ez-red);color:#fff;border-color:var(--ez-red)}

/* ── Body grid ── */
.ezb-body{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:30px;align-items:start}
.ezb-main{min-width:0}

/* ── Featured ── */
.ezb-feature{display:grid;grid-template-columns:minmax(0,1.05fr) 1fr;gap:0;background:var(--ez-card);border:1px solid var(--ez-line);border-radius:var(--ez-r);overflow:hidden;margin-bottom:30px;box-shadow:var(--ez-shadow);transition:transform var(--ez-trans),box-shadow var(--ez-trans),border-color var(--ez-trans)}
.ezb-feature:hover{transform:translateY(-4px);box-shadow:var(--ez-shadow-lg);border-color:#CFE0FA}
.ezb-feature-media{position:relative;min-height:260px;overflow:hidden}
.ezb-feature-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.ezb-feature-cover{position:absolute;inset:0;z-index:2;display:block}
.ezb-feature:hover .ezb-feature-media img{transform:scale(1.05)}
.ezb-feature-flag{position:absolute;left:16px;top:16px;z-index:3;background:rgba(17,17,17,.82);color:#fff;font-size:11.5px;font-weight:800;letter-spacing:.03em;padding:6px 12px;border-radius:999px;backdrop-filter:blur(6px)}
.ezb-feature-body{padding:26px 28px;display:flex;flex-direction:column;justify-content:center}
.ezb-feature-body h2{font-size:22px;font-weight:800;letter-spacing:-.015em;color:var(--ez-ink);line-height:1.25;margin:12px 0 10px}
.ezb-feature-body h2 a{color:inherit;transition:color var(--ez-trans)}
.ezb-feature-body h2 a:hover{color:var(--ez-red)}
.ezb-feature-body p{font-size:14.5px;line-height:1.6;color:var(--ez-txt);margin:0 0 16px}

/* ── Section head ── */
.ezb-sec-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:0 0 18px}
.ezb-sec-head h2{font-size:22px;font-weight:800;letter-spacing:-.02em;color:var(--ez-ink);margin:0}
.ezb-count{font-size:13px;font-weight:600;color:var(--ez-mut)}

/* ── Article list cards ── */
.ezb-list{display:flex;flex-direction:column;gap:18px}
.ezb-card{display:grid;grid-template-columns:230px minmax(0,1fr);gap:20px;background:var(--ez-card);border:1px solid var(--ez-line);border-radius:var(--ez-r);padding:16px;box-shadow:var(--ez-shadow);transition:transform var(--ez-trans),box-shadow var(--ez-trans),border-color var(--ez-trans)}
.ezb-card:hover{transform:translateY(-4px);box-shadow:var(--ez-shadow-lg);border-color:#CFE0FA}
.ezb-card-media{position:relative;border-radius:14px;overflow:hidden;aspect-ratio:16/11;background:var(--ez-bg)}
.ezb-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.ezb-card:hover .ezb-card-media img{transform:scale(1.06)}
.ezb-card-body{display:flex;flex-direction:column;min-width:0;padding:4px 6px 4px 0}
.ezb-card-top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:9px}
.ezb-card-date{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:600;color:var(--ez-mut);white-space:nowrap}
.ezb-card-date svg{width:14px;height:14px}
.ezb-card-title{font-size:18px;font-weight:800;letter-spacing:-.01em;line-height:1.32;margin:0 0 8px}
.ezb-card-title a{color:var(--ez-ink);transition:color var(--ez-trans)}
.ezb-card-title a:hover{color:var(--ez-red)}
.ezb-card-excerpt{font-size:13.7px;line-height:1.6;color:var(--ez-txt);margin:0 0 14px}
.ezb-card-foot{display:flex;align-items:center;gap:10px;margin-top:auto;flex-wrap:wrap;font-size:12.5px;color:var(--ez-mut)}
.ezb-dot{color:var(--ez-line)}
.ezb-clock{display:inline-flex;align-items:center;gap:5px}
.ezb-clock svg{width:14px;height:14px}
.ezb-card-more{margin-left:auto;display:inline-flex;align-items:center;gap:5px;color:var(--ez-red);font-weight:700;font-size:13px;transition:gap var(--ez-trans)}
.ezb-card-more svg{width:15px;height:15px}
.ezb-card-more:hover{gap:9px;color:var(--ez-red-dark)}

/* Shared: badge + author + more */
.ezb-badge{display:inline-flex;align-items:center;background:var(--ez-tint);color:var(--ez-red-dark);font-size:11.5px;font-weight:800;letter-spacing:.02em;padding:5px 11px;border-radius:999px}
.ezb-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:12.5px;color:var(--ez-mut);margin-bottom:16px}
.ezb-meta-author{display:inline-flex;align-items:center;gap:7px;font-weight:600;color:var(--ez-txt)}
.ezb-ava{width:22px;height:22px;border-radius:50%;background:var(--ez-red);color:#fff;font-size:11px;font-weight:800;display:inline-flex;align-items:center;justify-content:center}
.ezb-more{display:inline-flex;align-items:center;gap:7px;color:var(--ez-red);font-weight:800;font-size:14px;align-self:flex-start}
.ezb-more svg{width:16px;height:16px;transition:transform var(--ez-trans)}
.ezb-feature:hover .ezb-more svg{transform:translateX(4px)}

/* ── Empty state ── */
.ezb-empty{background:var(--ez-card);border:1px solid var(--ez-line);border-radius:var(--ez-r);padding:56px 28px;text-align:center;box-shadow:var(--ez-shadow)}
.ezb-empty-ic{width:96px;height:96px;margin:0 auto 22px;border-radius:50%;background:var(--ez-tint);border:1px solid #CFE0FA;display:flex;align-items:center;justify-content:center;color:var(--ez-red);box-shadow:0 8px 22px rgba(54,128,237,.14)}
.ezb-empty-ic svg{width:44px;height:44px}
.ezb-empty h3{font-size:20px;font-weight:800;color:var(--ez-ink);margin:0 0 8px}
.ezb-empty p{font-size:14.5px;color:var(--ez-txt);max-width:460px;margin:0 auto 22px;line-height:1.6}
.ezb-empty-cta{display:inline-flex;align-items:center;gap:8px;background:var(--ez-red);color:#fff;font-weight:700;font-size:14px;padding:12px 22px;border:0;border-radius:12px;transition:background var(--ez-trans),transform var(--ez-trans),box-shadow var(--ez-trans);box-shadow:0 8px 20px rgba(54,128,237,.28)}
.ezb-empty-cta:hover{background:var(--ez-red-dark);color:#fff;transform:translateY(-1px);box-shadow:0 10px 24px rgba(54,128,237,.36)}
.ezb-empty-cta svg{width:16px;height:16px;transition:transform var(--ez-trans)}
.ezb-empty-cta:hover svg{transform:translateX(3px)}

/* ── Pager (Livewire bootstrap pagination) ── */
.ezb-pager{margin-top:28px;display:flex;justify-content:center}
.ezb-pager .pagination{display:flex;gap:7px;padding:0;margin:0;list-style:none;flex-wrap:wrap}
.ezb-pager .page-item .page-link,.ezb-pager .page-link{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 12px;border-radius:12px;border:1px solid var(--ez-line);background:#fff;color:var(--ez-ink);font-weight:700;font-size:14px;transition:all var(--ez-trans)}
.ezb-pager .page-link:hover{border-color:var(--ez-red);color:var(--ez-red);background:var(--ez-tint-2)}
.ezb-pager .page-item.active .page-link{background:var(--ez-red);border-color:var(--ez-red);color:#fff}
.ezb-pager .page-item.disabled .page-link{opacity:.45;pointer-events:none}

/* ── Sidebar widgets ── */
.ezb-rail{display:flex;flex-direction:column;gap:22px;position:sticky;top:88px}
.ezb-widget{background:var(--ez-card);border:1px solid var(--ez-line);border-radius:var(--ez-r);padding:22px 20px;box-shadow:var(--ez-shadow)}
.ezb-widget h4{display:flex;align-items:center;gap:9px;font-size:16px;font-weight:800;letter-spacing:-.01em;color:var(--ez-ink);margin:0 0 14px}
.ezb-w-ic{width:26px;height:26px;flex-shrink:0;border-radius:8px;background:var(--ez-tint);color:var(--ez-red);display:inline-flex;align-items:center;justify-content:center}
.ezb-w-ic svg{width:15px;height:15px}
.ezb-w-more{display:inline-block;margin-top:14px;font-size:13px;font-weight:700;color:var(--ez-red)}
.ezb-w-more:hover{color:var(--ez-red-dark)}

/* About widget */
.ezb-about>p{font-size:13.5px;line-height:1.6;color:var(--ez-txt);margin:0 0 14px}
.ezb-about-points{display:flex;flex-direction:column;gap:9px;margin-bottom:18px}
.ezb-about-points li{display:flex;align-items:center;gap:9px;font-size:13px;font-weight:600;color:var(--ez-txt)}
.ezb-tick{width:19px;height:19px;flex-shrink:0;border-radius:50%;background:var(--ez-tint);color:var(--ez-red);display:inline-flex;align-items:center;justify-content:center;font-size:11px;font-weight:900}
.ezb-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;border-top:1px solid var(--ez-line);padding-top:16px}
.ezb-stats>div{text-align:center}
.ezb-stats b{display:block;font-size:19px;font-weight:800;color:var(--ez-red);line-height:1}
.ezb-stats small{font-size:11px;color:var(--ez-mut);font-weight:600}

/* Categories widget */
.ezb-catlist{display:flex;flex-direction:column;gap:4px}
.ezb-catlist button{width:100%;display:flex;align-items:center;gap:10px;background:transparent;border:0;padding:8px 11px;border-radius:10px;font-size:13.7px;font-weight:600;color:var(--ez-txt);transition:all var(--ez-trans);text-align:left}
.ezb-catlist button:hover{background:var(--ez-tint-2);color:var(--ez-red-dark)}
.ezb-catlist button.is-active{background:var(--ez-tint);color:var(--ez-red-dark)}
.ezb-cat-ic{width:28px;height:28px;border-radius:8px;background:var(--ez-tint);color:var(--ez-red);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background var(--ez-trans),color var(--ez-trans)}
.ezb-cat-ic svg{width:15px;height:15px}
.ezb-catlist button:hover .ezb-cat-ic,.ezb-catlist button.is-active .ezb-cat-ic{background:var(--ez-red);color:#fff}
.ezb-cat-name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ezb-cat-num{font-size:12px;font-weight:800;color:var(--ez-mut);background:var(--ez-bg);border-radius:999px;padding:2px 9px;min-width:30px;text-align:center;flex-shrink:0}
.ezb-catlist button:hover .ezb-cat-num,.ezb-catlist button.is-active .ezb-cat-num{background:#fff;color:var(--ez-red)}

/* Popular widget */
.ezb-pop{display:flex;flex-direction:column;gap:14px}
.ezb-pop li{display:flex;gap:12px;align-items:flex-start}
.ezb-pop-n{width:26px;height:26px;flex-shrink:0;border-radius:8px;background:var(--ez-tint);color:var(--ez-red);font-size:13px;font-weight:800;display:inline-flex;align-items:center;justify-content:center}
.ezb-pop-t{display:block;font-size:13.7px;font-weight:700;color:var(--ez-ink);line-height:1.35;transition:color var(--ez-trans)}
.ezb-pop a:hover .ezb-pop-t{color:var(--ez-red)}
.ezb-pop-d{display:block;font-size:11.5px;color:var(--ez-mut);margin-top:3px}

/* Topics widget */
.ezb-topics{display:flex;flex-wrap:wrap;gap:8px}
.ezb-topics button{background:var(--ez-bg);border:1px solid var(--ez-line);color:var(--ez-txt);font-size:12.5px;font-weight:600;padding:6px 12px;border-radius:999px;transition:all var(--ez-trans)}
.ezb-topics button:hover{background:var(--ez-red);border-color:var(--ez-red);color:#fff}

/* Newsletter widget */
.ezb-news{background:linear-gradient(135deg,var(--ez-tint) 0%,var(--ez-tint-2) 70%,#fff 100%);border-color:#CFE0FA;text-align:center}
.ezb-news-ic{width:60px;height:60px;margin:0 auto 14px;border-radius:16px;background:#fff;border:1px solid #CFE0FA;color:var(--ez-red);display:flex;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(54,128,237,.14)}
.ezb-news-ic svg{width:28px;height:28px}
.ezb-news h4{justify-content:center;margin-bottom:6px}
.ezb-news>p{font-size:13px;line-height:1.55;color:var(--ez-txt);margin:0 0 16px}
.ezb-news-form{display:flex;flex-direction:column;gap:9px}
.ezb-news-form input{width:100%;background:#fff;border:1.5px solid var(--ez-line);border-radius:11px;padding:12px 14px;font-size:13.5px;color:var(--ez-ink);font-family:inherit;transition:border-color var(--ez-trans)}
.ezb-news-form input:focus{outline:0;border-color:var(--ez-red);box-shadow:0 0 0 4px rgba(54,128,237,.10)}
.ezb-news-form input::placeholder{color:var(--ez-mut)}
.ezb-news-form button{width:100%;background:var(--ez-red);color:#fff;border:0;border-radius:11px;padding:12px;font-size:14px;font-weight:700;font-family:inherit;transition:background var(--ez-trans),transform var(--ez-trans);box-shadow:0 8px 20px rgba(54,128,237,.28)}
.ezb-news-form button:hover{background:var(--ez-red-dark);transform:translateY(-1px)}
.ezb-news-msg{font-size:12px;min-height:0}
.ezb-news-msg:empty{display:none}
.ezb-news-msg.ok{color:var(--ez-red-dark)}
.ezb-news-msg.err{color:var(--ez-red)}
.ezb-news-fine{display:block;margin-top:10px;font-size:11px;color:var(--ez-mut)}

/* Request-a-Tool CTA button — lives inside .ezb-news card. Same button
   language as the newsletter subscribe button but as a link, plus a chevron
   affordance matching the sitewide .rt-btn on category / tool pages. */
.ezb-rt-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;background:var(--ez-red);color:#fff;border:0;border-radius:11px;padding:12px 14px;font-size:14px;font-weight:700;font-family:inherit;text-decoration:none;transition:background var(--ez-trans),transform var(--ez-trans);box-shadow:0 8px 20px rgba(54,128,237,.28)}
.ezb-rt-btn:hover{background:var(--ez-red-dark);color:#fff;transform:translateY(-1px)}
.ezb-rt-btn svg{transition:transform var(--ez-trans)}
.ezb-rt-btn:hover svg{transform:translateX(3px)}

/* ── Responsive ── */
@media (max-width:1080px){
    .ezb-body{grid-template-columns:1fr}
    .ezb-rail{position:static;flex-direction:row;flex-wrap:wrap}
    .ezb-rail>.ezb-widget{flex:1 1 300px}
}
@media (max-width:820px){
    .ezb-hero{grid-template-columns:1fr;padding:32px 26px}
    .ezb-hero-art{display:none}
    .ezb-feature{grid-template-columns:1fr}
    .ezb-feature-media{min-height:200px}
}
@media (max-width:560px){
    .ezb{padding:16px 14px 48px}
    .ezb-hero{padding:26px 20px;border-radius:20px}
    .ezb-card{grid-template-columns:1fr;gap:14px}
    .ezb-card-media{aspect-ratio:16/9}
    .ezb-toolbar{flex-direction:column}
    .ezb-filter{min-width:0}
    .ezb-rail{flex-direction:column}
}

/* ── Dark mode (design.md §2.2 canonical) ── */
body.theme-dark .ezb{--ez-ink:#F5F5F6;--ez-txt:#C9C9CE;--ez-mut:#A0A0A6;--ez-line:rgba(255,255,255,.09);--ez-bg:#0F0F11;--ez-card:#17171A;
    --ez-shadow:0 1px 2px rgba(0,0,0,.5),0 8px 24px rgba(0,0,0,.5);
    --ez-shadow-lg:0 18px 44px rgba(0,0,0,.6)}
body.theme-dark .ezb-hero,body.theme-dark .ezb-news{background:linear-gradient(135deg,rgba(54,128,237,.16) 0%,rgba(54,128,237,.10) 70%,#17171A 100%);border-color:rgba(96,164,245,.28)}
body.theme-dark .ezb-badge-pill,body.theme-dark .ezb-art-window,body.theme-dark .ezb-art-tile,body.theme-dark .ezb-news-ic{background:#17171A;border-color:rgba(96,164,245,.28)}
body.theme-dark .ezb-search,body.theme-dark .ezb-filter select,body.theme-dark .ezb-news-form input{background:#1C1C1F;border-color:rgba(255,255,255,.14);color:#F5F5F6}
body.theme-dark .ezb-tag,body.theme-dark .ezb-topics button{background:#1C1C1F;border-color:rgba(255,255,255,.09);color:#C9C9CE}
body.theme-dark .ezb-tag:hover{background:rgba(54,128,237,.16);border-color:rgba(96,164,245,.28);color:#60A4F5}
body.theme-dark .ezb-topics button:hover{background:#3680ED;border-color:#3680ED;color:#F5F5F6}
body.theme-dark .ezb-badge,body.theme-dark .ezb-w-ic,body.theme-dark .ezb-tick,body.theme-dark .ezb-pop-n,body.theme-dark .ezb-active,body.theme-dark .ezb-empty-ic,body.theme-dark .ezb-cat-ic{background:rgba(54,128,237,.16);color:#60A4F5}
body.theme-dark .ezb-badge{color:#60A4F5}
body.theme-dark .ezb-cat-num{background:rgba(255,255,255,.06);color:#A0A0A6}
body.theme-dark .ezb-catlist button:hover .ezb-cat-num,body.theme-dark .ezb-catlist button.is-active .ezb-cat-num{background:rgba(255,255,255,.09);color:#60A4F5}
body.theme-dark .ezb-catlist button:hover .ezb-cat-ic,body.theme-dark .ezb-catlist button.is-active .ezb-cat-ic{background:#3680ED;color:#F5F5F6}
body.theme-dark .ezb-catlist button:hover,body.theme-dark .ezb-catlist button.is-active{background:rgba(54,128,237,.10);color:#60A4F5}
body.theme-dark .ezb-pager .page-link{background:#1C1C1F;border-color:rgba(255,255,255,.09);color:#F5F5F6}
body.theme-dark .ezb-pager .page-link:hover{background:rgba(54,128,237,.10);border-color:#3680ED;color:#60A4F5}
body.theme-dark .ezb-pager .page-item.active .page-link{background:#3680ED;border-color:#3680ED;color:#F5F5F6}
body.theme-dark .ezb-active-clear{background:rgba(255,255,255,.06);border-color:rgba(96,164,245,.28);color:#60A4F5}
body.theme-dark .ezb-active-clear:hover{background:#3680ED;border-color:#3680ED;color:#F5F5F6}
body.theme-dark .ezb-art-line{background:rgba(255,255,255,.09)}
body.theme-dark .ezb-art-thumb{background:linear-gradient(135deg,rgba(54,128,237,.16),#1B1B1E);border-color:rgba(255,255,255,.09)}
body.theme-dark .ezb-feature:hover,body.theme-dark .ezb-card:hover{border-color:rgba(96,164,245,.28)}
body.theme-dark .ezb-feature-flag{background:rgba(0,0,0,.72);color:#F5F5F6}
body.theme-dark .ezb-search:focus-within,body.theme-dark .ezb-filter select:focus,body.theme-dark .ezb-news-form input:focus{background:#1C1C1F;border-color:#3680ED;box-shadow:0 0 0 3px rgba(96,164,245,.28)}
body.theme-dark .ezb-dot{color:rgba(255,255,255,.09)}
body.theme-dark .ezb-stats{border-top-color:rgba(255,255,255,.09)}
body.theme-dark .ezb-stats b{color:#60A4F5}
@media (prefers-reduced-motion:reduce){.ezb *{transition:none!important;animation:none!important}}
