/* ============================================================
   Tech Report — design system v2
   SaaS-blog look: dark navy header, blue accent, pills, cards.
   ============================================================ */

/* ---------- tokens ---------- */
:root{
  --navy:#00091F;            /* header / footer */
  --ink:#010E2F;             /* headings */
  --body:#3E4350;            /* body text */
  --muted:#616670;
  --blue:#3874FF;
  --blue-deep:#2456D6;
  --blue-soft:#EBF1FF;       /* chips, tints */
  --blue-ghost:#F4F7FF;      /* illustration bg */
  --border:#E6E8EC;
  --bg:#FFFFFF;
  --card:#FFFFFF;
  --code-bg:#071233;
  --code-ink:#DCE4F7;

  --head:"Poppins", system-ui, sans-serif;
  --font:"Nunito Sans", system-ui, sans-serif;
  --mono:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-s:8px; --r:16px; --r-pill:36px;
  --shadow:0 8px 28px -12px rgba(1,14,47,.14);
  --maxw:1200px;
}

/* ---------- base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--body);
  font-family:var(--font);font-size:16px;line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img,svg{max-width:100%;display:block}
h1,h2,h3,h4{margin:0;font-family:var(--head);font-weight:600;color:var(--ink);line-height:1.25;letter-spacing:-.01em}
p{margin:0}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
::selection{background:var(--blue);color:#fff}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ---------- header ---------- */
.hdr{background:var(--navy);color:#fff}
.hdr .wrap{display:flex;align-items:center;gap:28px;height:72px}
.logo{display:flex;align-items:center;gap:10px;font-family:var(--head);font-weight:700;font-size:20px;letter-spacing:.02em;color:#fff}
.logo-badge{
  width:34px;height:34px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(135deg,#3874FF,#6C4DFF);
  display:grid;place-items:center;color:#fff;
  font-family:var(--mono);font-size:13px;font-weight:600;
}
.logo .dot{color:var(--blue)}
.hdr-nav{display:flex;gap:4px;margin-left:6px}
.hdr-nav a{font-size:14.5px;color:#C7CBD6;padding:8px 12px;border-radius:8px}
.hdr-nav a:hover{color:#fff}
.hdr-nav a.on{color:var(--blue)}
.hdr-actions{margin-left:auto;display:flex;gap:12px;align-items:center}
.btn{
  display:inline-flex;align-items:center;gap:8px;justify-content:center;
  font-family:var(--font);font-weight:600;font-size:14.5px;
  border-radius:var(--r-s);padding:11px 22px;transition:.15s;
}
.btn-outline{border:1px solid var(--blue);color:#fff;padding:10px 21px}
.btn-outline:hover{background:rgba(56,116,255,.15)}
.btn-light{background:var(--blue-soft);color:var(--ink)}
.btn-light:hover{background:#DFE9FF}
.btn-blue{background:var(--blue);color:#fff}
.btn-blue:hover{background:var(--blue-deep)}

/* ---------- breadcrumbs ---------- */
.crumbs{padding:22px 0 0;font-size:13.5px;color:var(--muted);display:flex;gap:8px;flex-wrap:wrap}
.crumbs a:hover{color:var(--blue)}
.crumbs .cur{color:var(--blue);font-weight:600}
.crumbs .sep{color:#C9CDD6}

/* ---------- blog hero ---------- */
.hero{padding:44px 0 10px;text-align:center}
.chip{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--blue-soft);color:var(--blue);
  font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:8px 16px;border-radius:var(--r-pill);
}
.chip--ghost{background:#fff;border:1px solid var(--border);color:var(--muted)}
.hero h1{font-size:clamp(32px,4.6vw,48px);margin:22px auto 0;max-width:760px;line-height:1.2}
.hero .sub{margin:16px auto 0;max-width:640px;font-size:18px;color:var(--muted)}

/* ---------- filters ---------- */
.filters{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;padding:30px 0 44px}
.filters a{
  font-size:14px;font-weight:600;color:var(--muted);
  border:1px solid var(--border);border-radius:var(--r-pill);
  padding:9px 20px;background:#fff;transition:.15s;
}
.filters a:hover{border-color:var(--blue);color:var(--blue)}
.filters a.on{background:var(--blue);border-color:var(--blue);color:#fff}

/* ---------- toolbar ---------- */
.toolbar{display:flex;gap:10px;align-items:center;justify-content:center;flex-wrap:wrap;padding:0 0 34px}
.toolbar input[type=search]{
  flex:0 1 320px;min-width:200px;border:1px solid var(--border);border-radius:var(--r-pill);
  padding:10px 18px;font-family:var(--font);font-size:14px;outline:0;color:var(--ink);background:#fff;
}
.toolbar input[type=search]:focus{border-color:var(--blue)}
.toolbar select{
  -webkit-appearance:none;appearance:none;
  border:1px solid var(--border);border-radius:var(--r-pill);padding:10px 36px 10px 18px;
  font-family:var(--font);font-size:14px;font-weight:600;color:var(--muted);background:#fff;outline:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23616670' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 16px center;
  line-height:1.45;cursor:pointer;
}
.toolbar select:hover{border-color:var(--blue);color:var(--blue)}
.toolbar select:focus{border-color:var(--blue)}
.toolbar .count{font-size:13px;color:var(--muted);font-weight:700}
.pg-dots{align-self:center;color:var(--muted);padding:0 4px}
.src-tag{color:#A9AEB8;font-size:12px}
.post-body-wrap{padding:8px 0 12px}

/* ---------- featured ---------- */
.featured{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:56px;
  align-items:center;padding:10px 0 34px;border-bottom:1px solid var(--border);
}
.featured .fig{border-radius:var(--r);overflow:hidden}
.featured .chip{margin-bottom:18px}
.featured h2{font-size:clamp(24px,3vw,32px);line-height:1.28}
.featured h2 a:hover{color:var(--blue)}
.featured .dek{margin-top:14px;font-size:15.5px;color:var(--muted);line-height:1.7}
.featured .btn{margin-top:22px}

/* author row */
.author-row{display:flex;align-items:center;gap:10px;margin-top:18px;font-size:13.5px;color:var(--muted)}
.avatar{
  width:32px;height:32px;border-radius:50%;flex-shrink:0;
  background:var(--navy);color:#fff;display:grid;place-items:center;
  font-size:11px;font-weight:700;font-family:var(--head);
}
.avatar--blue{background:var(--blue)}
.author-row b{color:var(--ink);font-weight:700}
.author-row .d{color:#C9CDD6}

/* ---------- grid ---------- */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:44px 28px;padding:44px 0 10px}
.card .fig{border-radius:var(--r);overflow:hidden;margin-bottom:18px}
.card .chip{font-size:11.5px;padding:6px 13px}
.card h3{margin-top:12px;font-size:19px;line-height:1.37}
.card h3 a:hover{color:var(--blue)}
.card .dek{
  margin-top:9px;font-size:14px;color:var(--muted);line-height:1.6;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.card .author-row{margin-top:13px;font-size:13px}
.card .avatar{width:28px;height:28px;font-size:10px}

/* illustration frame */
.fig{background:var(--blue-ghost);border:1px solid var(--border)}
.fig svg{width:100%;height:auto}

/* ---------- pagination ---------- */
.pager{display:flex;justify-content:center;gap:8px;padding:44px 0 10px}
.pager a{
  min-width:42px;height:42px;display:grid;place-items:center;padding:0 14px;
  border:1px solid var(--border);border-radius:var(--r-s);
  font-weight:700;font-size:14px;color:var(--muted);
}
.pager a:hover{border-color:var(--blue);color:var(--blue)}
.pager a.on{background:var(--blue);border-color:var(--blue);color:#fff}

/* ---------- subscribe CTA ---------- */
.cta{margin:64px 0 0}
.cta-in{
  background:var(--navy);border-radius:20px;padding:56px 32px;text-align:center;color:#fff;
  position:relative;overflow:hidden;
}
.cta-in::before,.cta-in::after{
  content:"";position:absolute;border-radius:50%;pointer-events:none;
  background:radial-gradient(closest-side,rgba(56,116,255,.35),transparent 70%);
}
.cta-in::before{width:420px;height:420px;left:-120px;top:-180px}
.cta-in::after{width:520px;height:520px;right:-160px;bottom:-260px}
.cta-in h2{color:#fff;font-size:clamp(24px,3vw,32px);position:relative}
.cta-in p{margin:12px auto 0;max-width:520px;color:#AEB6C8;font-size:15.5px;position:relative}
.cta-form{
  position:relative;margin:26px auto 0;max-width:460px;display:flex;gap:10px;
}
.cta-form input{
  flex:1;min-width:0;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.06);
  border-radius:var(--r-s);color:#fff;font-family:var(--font);font-size:14.5px;padding:12px 16px;outline:0;
}
.cta-form input::placeholder{color:#7C8499}
.cta-form input:focus{border-color:var(--blue)}
.cta-note{position:relative;margin-top:14px;font-size:12.5px;color:#7C8499}

/* ---------- footer ---------- */
.footer{background:var(--navy);color:#AEB6C8;margin-top:72px;padding:56px 0 28px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px}
.footer .f-about{margin-top:16px;font-size:14px;line-height:1.7;max-width:300px}
.footer h4{color:#fff;font-size:14px;font-weight:600;margin-bottom:16px;font-family:var(--head)}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.footer ul a{font-size:14px;color:#AEB6C8}
.footer ul a:hover{color:#fff}
.footer-bottom{
  margin-top:44px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:13px;color:#7C8499;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-head{
  display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.9fr);gap:56px;
  align-items:center;padding:30px 0 40px;
}
.article-head .chip{margin-bottom:18px}
.article-head h1{font-size:clamp(28px,3.6vw,40px);line-height:1.25}
.article-head .dek{margin-top:16px;font-size:16.5px;color:var(--muted);line-height:1.7}
.article-head .fig{border-radius:var(--r)}
.article-meta{display:flex;align-items:center;gap:14px;margin-top:22px;flex-wrap:wrap;font-size:13.5px;color:var(--muted)}
.article-meta .avatar{width:44px;height:44px;font-size:14px}
.article-meta .who b{display:block;color:var(--ink);font-size:14.5px}
.article-meta .who span{font-size:12.5px}
.article-meta .d{color:#C9CDD6}
.share-row{display:flex;gap:8px;margin-top:20px}
.share-row a,.share-row button{
  width:38px;height:38px;border:1px solid var(--border);border-radius:var(--r-s);
  display:grid;place-items:center;color:var(--muted);transition:.15s;background:#fff;
}
.share-row a:hover,.share-row button:hover{border-color:var(--blue);color:var(--blue)}
.share-row svg{width:16px;height:16px}

.article-layout{
  display:grid;grid-template-columns:250px minmax(0,1fr);gap:56px;
  padding:14px 0 30px;align-items:start;
}
.toc{position:sticky;top:24px}
.toc .toc-t{font-family:var(--head);font-weight:600;color:var(--ink);font-size:15px;margin-bottom:14px}
.toc ol{list-style:none;margin:0;padding:0;display:grid;gap:2px}
.toc a{
  display:block;font-size:13.5px;color:var(--muted);line-height:1.45;
  padding:7px 12px;border-left:2px solid var(--border);
}
.toc a:hover{color:var(--ink)}
.toc a.on{border-left-color:var(--blue);color:var(--blue);font-weight:700;background:var(--blue-ghost)}

/* prose */
.prose{font-size:16.5px;color:var(--body)}
.prose > p + p{margin-top:1.1em}
.prose h2{font-size:26px;margin:1.9em 0 .7em}
.prose h3{font-size:19px;margin:1.5em 0 .5em}
.prose a{color:var(--blue);font-weight:600}
.prose a:hover{text-decoration:underline}
.prose ul,.prose ol{margin:1em 0;padding-left:1.3em}
.prose li{margin:.5em 0}
.prose li::marker{color:var(--blue);font-weight:700}
.prose code{
  font-family:var(--mono);font-size:.85em;background:var(--blue-soft);
  color:var(--blue-deep);padding:.14em .4em;border-radius:5px;
}
.prose pre{
  background:var(--code-bg);color:var(--code-ink);border-radius:12px;
  padding:22px 24px;overflow-x:auto;margin:1.7em 0;font-size:13.5px;line-height:1.7;position:relative;
}
.prose pre code{background:none;color:inherit;padding:0;font-size:inherit}
.pre-label{
  position:absolute;top:10px;right:14px;font-family:var(--font);font-size:11px;
  font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#5D6C97;
}
.prose blockquote{
  margin:1.8em 0;padding:20px 24px;background:var(--blue-ghost);
  border-left:3px solid var(--blue);border-radius:0 12px 12px 0;
  font-size:17px;color:var(--ink);font-weight:600;font-family:var(--head);line-height:1.55;
}
.prose blockquote .src{display:block;margin-top:10px;font-family:var(--font);font-weight:400;font-size:13px;color:var(--muted)}

/* stat strip */
.stat-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:1.8em 0}
.stat-strip > div{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:20px 16px;text-align:center;
}
.stat-strip .v{font-family:var(--head);font-size:30px;font-weight:600;color:var(--blue)}
.stat-strip .l{margin-top:5px;font-size:12.5px;color:var(--muted);line-height:1.4}

/* callout */
.note{
  background:var(--blue-soft);border-radius:12px;padding:18px 22px;margin:1.6em 0;
  font-size:14.5px;line-height:1.65;color:var(--ink);display:flex;gap:12px;
}
.note .ic{
  width:26px;height:26px;flex-shrink:0;border-radius:50%;background:var(--blue);
  color:#fff;display:grid;place-items:center;font-size:14px;font-weight:800;margin-top:1px;
}

/* chart card */
.figure{margin:1.8em 0;background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.figure .fg-head{padding:16px 20px 0;font-family:var(--head);font-weight:600;font-size:15px;color:var(--ink)}
.figure figcaption{font-size:12.5px;color:var(--muted);padding:0 20px 16px;line-height:1.5}
.figure .fg-body{padding:10px 20px 8px}

/* bars (pure css chart) */
.bars{display:flex;align-items:flex-end;gap:10px;height:150px;padding-top:10px}
.bars .bar{flex:1;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;gap:6px;height:100%}
.bars .bv{font-size:10.5px;font-weight:700;color:var(--ink)}
.bars .bfill{width:100%;background:linear-gradient(180deg,#5B8CFF,#3874FF);border-radius:6px 6px 0 0}
.bars .bfill--mut{background:#C9D8FF}
.bars .bl{font-size:10px;color:var(--muted);white-space:nowrap}

/* tags */
.article-tags{display:flex;gap:8px;flex-wrap:wrap;margin:36px 0 0}
.article-tags .chip{text-transform:none;letter-spacing:0;font-size:13px}

/* author box */
.author-box{
  margin-top:32px;background:var(--blue-ghost);border:1px solid var(--border);border-radius:var(--r);
  padding:24px;display:grid;grid-template-columns:56px 1fr;gap:18px;
}
.author-box .avatar{width:56px;height:56px;font-size:17px}
.author-box b{font-family:var(--head);font-size:16px;color:var(--ink)}
.author-box .role{font-size:12.5px;color:var(--blue);font-weight:700;margin:3px 0 8px}
.author-box p{font-size:14px;color:var(--muted);line-height:1.65}

/* prev / next */
.pn{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:32px}
.pn a{border:1px solid var(--border);border-radius:12px;padding:18px 20px;transition:.15s;background:#fff}
.pn a:hover{border-color:var(--blue);box-shadow:var(--shadow)}
.pn .pn-l{font-size:11.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:7px}
.pn .pn-t{font-family:var(--head);font-weight:600;font-size:15px;color:var(--ink);line-height:1.4}
.pn a + a{text-align:right}

/* related */
.related{padding:56px 0 0}
.related .rel-head{text-align:center;margin-bottom:8px}
.related h2{font-size:28px}

/* ---------- draft banner + mirrored body ---------- */
.draft-banner{
  background:#FFF7E8;border:1px solid #F2D9A6;border-left:3px solid #E8A33D;
  border-radius:12px;padding:14px 18px;font-size:13.5px;line-height:1.6;color:#7A5A18;
}
.draft-banner b{color:#B0791F;letter-spacing:.04em}
.draft-banner a{color:var(--blue);font-weight:700}
.article-body img{border-radius:10px;margin:1.2em auto;max-width:100%;height:auto}
.article-body figure{margin:1.6em 0}
.article-body figcaption{font-size:12.5px;color:var(--muted);text-align:center;margin-top:6px}
.article-body table{border-collapse:collapse;width:100%;margin:1.4em 0;font-size:14px;display:block;overflow-x:auto}
.article-body th,.article-body td{border:1px solid var(--border);padding:8px 12px;text-align:left}
.article-body th{background:var(--blue-ghost);font-weight:700}
.article-body h1{font-size:26px;margin:1.7em 0 .6em}
.article-body video,.article-body embed{max-width:100%}

/* ---------- html sitemap ---------- */
.sm-block{margin-bottom:44px}
.col-head-sm{display:flex;align-items:baseline;gap:14px;border-bottom:2px solid var(--ink);padding-bottom:10px;margin-bottom:18px}
.col-head-sm h2{font-size:22px}
.sm-note{font-size:12.5px;color:var(--muted);font-weight:700}
.sm-cols{list-style:none;margin:0;padding:0;columns:3;column-gap:36px}
.sm-cols li{break-inside:avoid;padding:5px 0;font-size:14.5px}
.sm-cols a{font-weight:600;color:var(--body)}
.sm-cols a:hover{color:var(--blue)}
.sm-cnt{font-family:var(--mono);font-size:11px;color:var(--muted);margin-left:6px}
.sm-list{list-style:none;margin:0;padding:0}
.sm-list li{padding:9px 0;border-bottom:1px solid var(--border);font-size:14.5px;display:flex;gap:14px;justify-content:space-between;align-items:baseline}
.sm-list a{font-weight:600;color:var(--body);flex:1}
.sm-list a:hover{color:var(--blue)}
.sm-meta{font-family:var(--mono);font-size:11px;color:var(--muted);white-space:nowrap}
@media(max-width:900px){.sm-cols{columns:2}}
@media(max-width:600px){.sm-cols{columns:1}.sm-list li{flex-direction:column;gap:2px}}

/* ---------- responsive ---------- */
@media(max-width:1024px){
  .article-layout{grid-template-columns:minmax(0,1fr)}
  .toc{position:static;border:1px solid var(--border);border-radius:12px;padding:18px;background:var(--blue-ghost)}
  .article-head{grid-template-columns:1fr;gap:30px}
  .article-head .fig{order:-1}
}
@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr}
  .featured{grid-template-columns:1fr;gap:28px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hdr-nav{display:none}
}
@media(max-width:600px){
  .hdr .wrap{gap:12px}
  .logo{font-size:17px}
  .logo-badge{width:30px;height:30px;font-size:11px}
  .btn-outline{display:none}
  .btn{padding:9px 16px;font-size:13.5px}
  .grid{grid-template-columns:1fr}
  .stat-strip{grid-template-columns:1fr}
  .cta-form{flex-direction:column}
  .footer-grid{grid-template-columns:1fr}
  .pn{grid-template-columns:1fr}
  .pn a + a{text-align:left}
}

/* static-site extras */
.article-layout.no-toc{grid-template-columns:minmax(0,1fr)}
.article-layout.no-toc .prose{max-width:820px;margin:0 auto}
.article-layout{grid-template-columns:250px minmax(0,1fr);padding-bottom:40px}
.sm-anchor{scroll-margin-top:20px}
img.avatar-img{object-fit:cover;border:1px solid var(--border);background:var(--blue-ghost)}
img.avatar-lg{width:44px;height:44px}
img.avatar-sm{width:28px;height:28px}
.fig{display:block;overflow:hidden}
.fig img{width:100%;height:auto;display:block}
.fig svg{width:100%;height:auto;display:block}
.footer-grid-5{grid-template-columns:1.6fr 1fr 1fr 1fr 1fr}
@media(max-width:900px){.footer-grid-5{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.footer-grid-5{grid-template-columns:1fr}}
.card img.avatar-img{border-radius:50%}
img.avatar-xl{width:56px;height:56px}
img.avatar-hero{width:84px;height:84px;border-radius:50%;border:2px solid #fff;box-shadow:var(--shadow)}
.avatar-wrap{position:relative;overflow:hidden}
.avatar-wrap img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:50%}
.chip-row{margin-left:auto;font-size:9.5px;padding:3px 9px;letter-spacing:.05em}
.author-row .chip-row:hover{background:#DFE9FF}
.toc-share{display:flex;align-items:center;flex-wrap:wrap;gap:6px;margin-top:16px;padding-top:14px;border-top:1px solid var(--border)}
.toc-share-t{font-family:var(--head);font-weight:600;font-size:12.5px;color:var(--ink);margin-right:3px}
.toc-share a,.toc-share button{width:34px;height:34px;min-width:34px;flex:0 0 auto;padding:0;border:1px solid var(--border);border-radius:10px;display:grid;place-items:center;color:var(--muted);background:#fff;cursor:pointer;transition:.15s}
.toc-share a:hover,.toc-share button:hover{border-color:var(--blue);color:var(--blue)}
.toc-share svg{width:18px;height:18px}
.toc-share .copy-link.done{border-color:#2BC48A;color:#2BC48A}
.prose a,.prose a:visited,.article-body a,.article-body a:visited{color:var(--blue);font-weight:600;text-decoration:none}
.prose a:hover,.article-body a:hover{text-decoration:underline}
.article-col{min-width:0}
.author-card{
  margin-top:40px;border:1px solid var(--border);border-radius:16px;background:var(--blue-ghost);
  padding:26px;display:grid;grid-template-columns:72px 1fr;gap:20px;align-items:start;
}
.author-card .avatar,.author-card img.avatar-card{width:72px;height:72px;border-radius:50%;font-size:22px}
.ac-kicker{font-size:11.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);display:block}
.ac-name{font-family:var(--head);font-weight:600;font-size:19px;margin-top:4px}
.ac-name a{color:var(--ink)}
.ac-name a:hover{color:var(--blue)}
.ac-role{font-size:12.5px;color:var(--muted);font-weight:700;margin:2px 0 10px}
.ac-bio{font-size:14.5px;color:var(--body);line-height:1.65;margin:0 0 12px}
.ac-links{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.ac-links a{font-size:12.5px;font-weight:700;color:var(--blue);border:1px solid var(--border);background:#fff;border-radius:99px;padding:5px 13px}
.ac-links a:hover{border-color:var(--blue)}
.ac-all{font-size:13.5px;font-weight:700;color:var(--blue)}
@media(max-width:600px){.author-card{grid-template-columns:1fr}}
