:root{
  --paper:#fbfaf6;
  --panel:#ffffff;
  --ink:#141414;
  --text:#252525;
  --muted:#646464;
  --line:#d8d5cc;
  --line-dark:#1f1f1f;
  --red:#c63d2f;
  --teal:#087c73;
  --blue:#285a90;
  --gold:#d59a2b;
  --green:#3d7a42;
  --max:1180px;
  --font-sans:"IBM Plex Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
body{
  max-width:100%;
  margin:0;
  overflow-x:hidden;
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--paper);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
a:hover{color:var(--red)}
.container{width:min(var(--max),calc(100% - 32px));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(251,250,246,.96);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:64px;
}
.brand,.footer-brand{
  font-family:"Newsreader",serif;
  font-weight:700;
  font-size:1.7rem;
  color:var(--ink);
  line-height:1;
}
.brand span,.footer-brand span{color:var(--red)}
.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
}
.nav-links a{
  padding:8px 10px;
  border-radius:6px;
  color:var(--muted);
  font-size:.92rem;
  font-weight:700;
}
.nav-links a:hover{background:#efede6;color:var(--ink)}
.nav-links a:last-child{
  background:var(--ink);
  color:#fff;
}
.top-desk{
  border-bottom:1px solid var(--line-dark);
  padding:30px 0 26px;
}
.desk-masthead{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:end;
  border-bottom:3px solid var(--ink);
  padding-bottom:24px;
}
.dateline,.section-kicker,.eyebrow{
  margin:0 0 8px;
  color:var(--red);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1,h2,h3{
  margin:0 0 12px;
  color:var(--ink);
  letter-spacing:0;
  overflow-wrap:anywhere;
}
h1{
  font-family:"Newsreader",serif;
  font-size:clamp(2.45rem,4vw,3.45rem);
  line-height:1;
  max-width:850px;
}
h2{
  font-family:"Newsreader",serif;
  font-size:2rem;
  line-height:1.06;
}
h3{
  font-size:1.18rem;
  line-height:1.22;
}
.lead{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:1.12rem;
}
.desk-actions,.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 14px;
  border:1px solid var(--ink);
  border-radius:6px;
  background:var(--ink);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{background:var(--red);border-color:var(--red);color:#fff}
.btn-secondary{
  background:transparent;
  color:var(--ink);
}
.btn-secondary:hover{background:#efede6;color:var(--ink);border-color:var(--ink)}
.ticker{
  display:flex;
  align-items:center;
  gap:14px;
  max-width:100%;
  overflow:auto;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
}
.ticker span{
  color:#fff;
  background:var(--red);
  padding:5px 8px;
  border-radius:4px;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
}
.ticker a{
  color:var(--text);
  font-size:.94rem;
  font-weight:600;
}
.trust-strip{
  display:grid;
  grid-template-columns:minmax(0,.55fr) minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  margin:16px 0 4px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
}
.trust-strip strong{
  color:var(--ink);
  line-height:1.25;
}
.trust-strip span{
  color:var(--muted);
  font-size:.94rem;
}
.trust-strip a{
  color:var(--red);
  font-weight:800;
  border-bottom:2px solid currentColor;
  justify-self:start;
}
.front-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.7fr) minmax(230px,.45fr);
  gap:18px;
  padding-top:20px;
}
.lead-story,.headline-board,.source-panel,.story-card,.desk-card,.sidebar-card,.plan-card,.content-card,.page-card,.article-shell,.feature-slab,.launch-checklist,.ad-slot{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:8px;
}
.lead-story,.headline-board,.source-panel,.story-card,.desk-card,.sidebar-card,.plan-card,.content-card,.page-card,.feature-slab,.launch-checklist,.ad-slot{padding:18px}
.story-image{
  min-height:108px;
  border-radius:6px;
  margin-bottom:14px;
  background:
    linear-gradient(135deg, rgba(8,124,115,.88), rgba(40,90,144,.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 1px, transparent 1px 18px);
  display:flex;
  align-items:flex-end;
  padding:14px;
  color:#fff;
}
.story-image span{
  font-family:"Newsreader",serif;
  font-size:2.6rem;
  font-weight:700;
  line-height:.8;
}
.story-meta,.story-footer{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.86rem;
}
.topic-pill{
  display:inline-flex;
  width:max-content;
  align-items:center;
  border-radius:4px;
  padding:4px 7px;
  color:#fff;
  background:var(--blue);
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.topic-ai .topic-pill,.topic-ai.topic-pill{background:var(--teal)}
.topic-saas .topic-pill,.topic-saas.topic-pill{background:var(--blue)}
.topic-startups .topic-pill,.topic-startups.topic-pill{background:var(--red)}
.topic-policy .topic-pill,.topic-policy.topic-pill{background:var(--green)}
.topic-reviews .topic-pill,.topic-reviews.topic-pill{background:var(--gold)}
.headline-list{
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
}
.headline-list a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-weight:700;
  line-height:1.35;
}
.headline-list span{
  display:block;
  color:var(--red);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:3px;
}
.text-link{
  display:inline-flex;
  margin-top:12px;
  color:var(--red);
  font-weight:700;
  border-bottom:2px solid currentColor;
}
.section{padding:28px 0}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
  border-bottom:2px solid var(--ink);
  padding-bottom:10px;
}
.desk-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.desk-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:164px;
}
.desk-card strong{font-size:1.08rem;color:var(--ink)}
.editorial-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
}
.story-stream{display:grid;gap:12px}
.story-card h3{max-width:680px}
.lead-story,.headline-board,.source-panel,.story-card,.desk-card,.sidebar-card,.plan-card,.content-card,.page-card,.article-shell,.feature-slab,.launch-checklist,.ad-slot,.trust-strip,.ticker{
  min-width:0;
}
.story-card p,.source-panel p,.sidebar-card p,.plan-card p,.content-card p,.page-card p{color:var(--muted)}
.story-footer{
  justify-content:space-between;
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:10px;
}
.sidebar-stack{display:grid;gap:14px}
.feature-slab,.launch-checklist{
  display:grid;
  grid-template-columns:minmax(0,.7fr) minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.review-method{
  grid-template-columns:minmax(0,.62fr) minmax(0,1fr);
}
.plan-grid,.content-grid,.workflow-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}
.content-grid{grid-template-columns:1fr 1fr}
.review-focus-card h3{margin-top:10px}
.review-focus-card p{margin-bottom:0}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0;
}
.contact-channel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:18px 0;
}
.contact-channel h2{
  font-family:var(--font-sans);
  font-size:1.15rem;
  overflow-wrap:anywhere;
}
.contact-form{
  display:grid;
  gap:14px;
  margin:22px 0;
  padding:18px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fffdf8;
}
.contact-form h2{margin-bottom:0}
.contact-form label{
  display:grid;
  gap:6px;
  color:var(--ink);
  font-weight:800;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  padding:11px 12px;
  font:inherit;
  color:var(--text);
  background:#fff;
}
.contact-form textarea{resize:vertical}
.form-honey{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.review-path-card{
  display:grid;
  gap:10px;
  min-height:190px;
}
.review-path-card .plan-step{margin-bottom:0}
.review-template{
  align-items:start;
}
.review-template .check-grid{
  grid-template-columns:repeat(2,1fr);
}
.plan-step{
  display:block;
  color:var(--red);
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.check-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}
.check-grid li{
  border:1px solid var(--line);
  border-radius:6px;
  background:#f5f3ec;
  padding:10px 12px;
  font-weight:700;
}
.page-wrap{padding:28px 0 44px}
.page-hero{padding:20px 0 4px}
.page-card{padding:24px}
.prose-card p{max-width:780px}
.article-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
  padding:22px;
}
.article-head{
  border-bottom:2px solid var(--ink);
  margin-bottom:18px;
  padding-bottom:16px;
}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  align-items:center;
  margin-bottom:12px;
  color:var(--muted);
  font-size:.86rem;
  font-weight:700;
}
.breadcrumbs a{
  color:var(--red);
  border-bottom:1px solid currentColor;
}
.breadcrumbs span:last-child{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.article-byline{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:6px 0 12px;
  color:var(--muted);
  font-size:.92rem;
}
.article-byline a{
  color:var(--ink);
  font-weight:800;
  border-bottom:1px solid currentColor;
}
.article-byline span:before{
  content:"";
}
.article-title{
  max-width:940px;
  font-size:3.35rem;
  line-height:.98;
}
.article-title-long{
  font-size:2.75rem;
  line-height:1.02;
}
.article-title-compact{
  font-size:2.35rem;
  line-height:1.06;
}
.article-body p{font-size:1.02rem}
.article-lede{font-size:1.12rem;color:var(--ink)}
.article-section + .article-section{margin-top:22px}
.article-note{
  margin-top:20px;
  padding:14px;
  border-radius:6px;
  background:#f5f3ec;
  border:1px solid var(--line);
}
.article-source{
  margin-top:20px;
  padding:14px;
  border-left:4px solid var(--red);
  background:#fff8ec;
  border-radius:6px;
}
.article-source a{color:var(--red);font-weight:700}
.review-disclosure{
  border-left-color:var(--gold);
  background:#fbf6e8;
}
.signal-list{
  margin:16px 0;
  padding-left:20px;
  color:var(--muted);
}
.signal-list li+li{margin-top:8px}
.workflow-steps article{
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px;
  background:#fff;
}
.workflow-steps span{
  display:inline-flex;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-weight:700;
  margin-bottom:10px;
}
.mini-links{display:grid;gap:10px}
.mini-links a{font-weight:700}
.related-bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.standards-grid{align-items:stretch}
.masthead-card p{margin-top:0}
.masthead-card p+p{margin-top:10px}
.ad-slot{
  background:#f5f3ec;
  border-style:dashed;
}
.ad-label{
  display:block;
  color:var(--red);
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.ad-placeholder{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:6px;
  color:var(--muted);
  text-align:center;
  padding:14px;
  background:#fff;
}
.site-footer{padding:26px 0 38px}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  border-top:3px solid var(--ink);
  padding-top:18px;
}
.footer-links{display:flex;gap:10px;flex-wrap:wrap}
.footer-links a{font-weight:700;color:var(--muted)}
.builder-credit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  margin-left:auto;
  padding:9px 12px;
  border:1px solid rgba(117,212,246,.34);
  border-radius:10px;
  background:#06101d;
  color:rgba(223,248,255,.76);
  font-size:.78rem;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 0 20px rgba(117,212,246,.12);
}
.builder-credit:hover{
  border-color:rgba(117,212,246,.7);
  color:#fff;
}
.builder-kicker{
  color:rgba(223,248,255,.68);
}
.brightdoor-wordmark{
  color:#fff;
  font-size:1.08rem;
  font-weight:900;
  letter-spacing:-.03em;
  text-shadow:
    0 0 8px rgba(223,248,255,.72),
    0 0 18px rgba(117,212,246,.38);
}
.brightdoor-wordmark span{color:#dff8ff}
.builder-domain{
  color:rgba(223,248,255,.74);
  font-size:.78rem;
}
.small{color:var(--muted);margin:8px 0 0}
.editor-page{background:#f3f0e8}
.editor-shell{max-width:1060px}
.editor-topbar{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:start;
  border-bottom:2px solid var(--ink);
  padding-bottom:18px;
  margin-bottom:18px;
}
.editor-login,.editor-actions,.reject-form,.unpublish-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:end;
}
.editor-login label,.editor-form label{
  display:grid;
  gap:6px;
  color:var(--ink);
  font-weight:700;
}
.editor-login input,.editor-form input,.editor-form textarea,.editor-form select,.reject-form input,.unpublish-form input,.purge-actions select,.manual-review-form input,.manual-review-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  padding:10px 11px;
  font:inherit;
  color:var(--text);
  background:#fff;
}
.editor-login input{min-width:280px}
.editor-control-panel{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin:22px 0;
}
.editor-control-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  background:#fffdf8;
  box-shadow:0 14px 30px rgba(16,16,16,.04);
}
.editor-control-card-wide{grid-column:1/-1}
.control-kicker{
  display:block;
  margin-bottom:6px;
  color:var(--red);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.editor-control-card h2{
  margin:0 0 14px;
  font-family:var(--font-sans);
  font-size:1.02rem;
  line-height:1.25;
}
.editor-action-grid,.draft-filter{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.control-box,.draft-filter a{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  min-height:86px;
  width:100%;
  border:1px solid var(--line-dark);
  border-radius:12px;
  padding:14px;
  background:#fff;
  color:var(--ink);
  font:inherit;
  text-align:left;
  text-decoration:none;
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.control-box:hover,.draft-filter a:hover{
  transform:translateY(-2px);
  border-color:var(--ink);
  box-shadow:0 14px 24px rgba(16,16,16,.08);
}
.control-box strong,.draft-filter strong{
  font-size:1rem;
  line-height:1.2;
}
.control-box span,.draft-filter span{
  color:var(--muted);
  font-size:.86rem;
  line-height:1.35;
}
.control-box.primary{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}
.control-box.primary span{color:rgba(255,255,255,.78)}
.control-box.warning{
  min-height:72px;
  background:#fbf4e8;
  border-color:#cdbf9d;
}
.control-box.success{
  min-height:108px;
  background:#eef8ee;
  border-color:#7aa77e;
}
.auto-review-control{
  margin:0;
}
.auto-review-summary{
  display:grid;
  gap:6px;
  margin-top:10px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:var(--muted);
  font-size:.86rem;
}
.purge-control{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:end;
}
.purge-control label{
  grid-column:1/-1;
  font-weight:800;
  color:var(--ink);
}
.purge-control select{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  padding:12px;
  font:inherit;
  color:var(--text);
  background:#fff;
}
.draft-filter{
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}
.draft-filter a.active{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}
.draft-filter span{
  color:var(--muted);
}
.draft-filter a.active span{color:rgba(255,255,255,.78)}
.manual-review-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.manual-review-form label:nth-child(5),
.manual-review-form label:nth-child(6){
  grid-column:1/-1;
}
.manual-review-form label{
  display:grid;
  gap:6px;
  font-weight:800;
  color:var(--ink);
}
.manual-review-form button{width:max-content}
.editor-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:10px;
  margin:18px 0;
}
.editor-stats div{
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:14px;
}
.editor-stats strong{display:block;font-size:1.4rem;color:var(--ink)}
.editor-stats span{color:var(--muted);font-size:.9rem}
.editor-message{
  margin:16px 0;
  border-radius:8px;
  padding:12px 14px;
  background:#fff8ec;
  border:1px solid var(--gold);
}
.editor-message.success{background:#eef8ee;border-color:var(--green)}
.editor-message.warning{background:#fff0ee;border-color:var(--red)}
.auto-review-log{
  margin:16px 0;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fffdf8;
  overflow:hidden;
}
.auto-review-log summary{
  cursor:pointer;
  padding:13px 15px;
  font-weight:900;
  color:var(--ink);
}
.auto-review-log-list{
  display:grid;
  gap:10px;
  padding:0 15px 15px;
}
.auto-review-log article{
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:12px;
}
.auto-review-log strong,.auto-review-log span{display:block}
.auto-review-log span{color:var(--muted);font-size:.9rem}
.auto-review-log ul{margin:8px 0 0;padding-left:18px}
.draft-list{display:grid;gap:18px;margin-top:18px}
.editor-draft{
  border:1px solid var(--line-dark);
  border-radius:8px;
  background:#fff;
  padding:18px;
}
.review-panel{
  display:grid;
  grid-template-columns:160px minmax(0,1fr);
  gap:14px;
  margin:12px 0 14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#f7f5ef;
}
.review-score{
  display:grid;
  align-content:center;
  gap:2px;
  min-height:92px;
  border-radius:10px;
  padding:12px;
  background:#fff;
  border:1px solid var(--line);
}
.review-score strong{
  font-size:1.55rem;
  line-height:1;
  color:var(--ink);
}
.review-score span{
  color:var(--muted);
  font-weight:800;
}
.review-reasons strong{
  display:block;
  color:var(--ink);
  margin-bottom:6px;
}
.review-reasons ul{
  margin:0;
  padding-left:18px;
}
.review-reasons li{margin:3px 0}
.review-strong_candidate{
  background:#eef8ee;
  border-color:rgba(61,122,66,.45);
}
.review-needs_review{
  background:#fff8ec;
  border-color:rgba(213,154,43,.45);
}
.review-auto_reject{
  background:#fff0ee;
  border-color:rgba(198,61,47,.45);
}
.editor-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}
.editor-form label:nth-child(n+8),.section-editor{
  grid-column:1/-1;
}
.section-editor{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:14px;
  padding:12px;
  border-radius:8px;
  background:#f7f5ef;
  border:1px solid var(--line);
}
.reject-form{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.published-manager{
  margin-top:34px;
  padding-top:24px;
  border-top:2px solid var(--ink);
}
.published-list{
  display:grid;
  gap:12px;
}
.published-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,360px);
  gap:16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:16px;
}
.published-item h3{margin:8px 0}
.unpublish-form{
  align-self:start;
  padding:12px;
  border-radius:8px;
  background:#f7f5ef;
  border:1px solid var(--line);
}
@media (max-width:980px){
  .desk-masthead,.front-grid,.editorial-grid,.article-shell,.feature-slab,.launch-checklist,.review-method,.trust-strip{grid-template-columns:1fr}
  .desk-grid,.plan-grid,.workflow-steps,.check-grid{grid-template-columns:1fr 1fr}
  h1{font-size:2.85rem}
  .article-title,.article-title-long,.article-title-compact{font-size:2.7rem;line-height:1}
  .editor-form,.section-editor,.published-item,.editor-control-panel,.draft-filter,.review-panel,.manual-review-form{grid-template-columns:1fr}
  .editor-control-card-wide{grid-column:auto}
}
@media (max-width:640px){
  .container{width:min(var(--max),calc(100% - 22px))}
  .site-header{position:relative}
  .nav{align-items:flex-start;flex-direction:column;padding:12px 0}
  .nav-links{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .nav-links a{border:1px solid var(--line);background:#fff;text-align:center}
  .nav-links a:last-child{grid-column:1/-1}
  h1{font-size:2.05rem;line-height:1.06}
  .article-title,.article-title-long,.article-title-compact{font-size:2.1rem;line-height:1.04}
  h2{font-size:1.55rem}
  .desk-grid,.plan-grid,.workflow-steps,.check-grid,.content-grid,.contact-channel-grid,.form-grid,.review-template .check-grid{grid-template-columns:1fr}
  .editor-action-grid,.purge-control{grid-template-columns:1fr}
  .desk-actions,.hero-actions,.contact-actions{width:100%}
  .desk-actions .btn,.hero-actions .btn,.contact-actions .btn{flex:1 1 160px}
  .trust-strip{padding:13px}
  .ticker{align-items:flex-start;flex-wrap:wrap;gap:8px;white-space:normal}
  .ticker a{line-height:1.35}
  .breadcrumbs span:last-child{white-space:normal}
  .footer-grid{flex-direction:column}
  .builder-credit{
    align-items:flex-start;
    flex-direction:column;
    margin-left:0;
    white-space:normal;
  }
}
