/* ============================================================
   COMMAND CENTRE v2 — Will Francis
   Design language shared with content.willfrancis.com:
   Sentient display / Inter body, six-colour brand palette,
   rainbow strip, dark-first with warm light theme.
   ============================================================ */

:root {
  /* brand palette — theme-independent */
  --yellow: #FFB401;
  --coral:  #FA776E;
  --green:  #5AE173;
  --sky:    #6EB6FE;
  --pink:   #F1A2F0;
  --purple: #4247C7;

  --display: 'Sentient', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;

  /* module accents — the rainbow, systematised */
  --ch-brief:  var(--purple);
  --ch-todo:   var(--yellow);
  --ch-social: var(--pink);
  --ch-radar:  var(--coral);
  --ch-web:    var(--sky);
  --ch-search: var(--green);
}

:root, [data-theme="dark"] {
  --bg: #111111;
  --bg-raise: #161616;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.07);
  --text: rgba(255, 255, 255, 1);
  --text-mid: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-faint: rgba(255, 255, 255, 0.25);
  --hairline: rgba(255, 255, 255, 0.08);
  --input-border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  --scrim: rgba(17, 17, 17, 0);
  --scrim-solid: rgba(17, 17, 17, 0.92);
  --tiktok-ink: #ffffff;
  --map-land: rgba(255, 255, 255, 0.05);
  --map-border: rgba(255, 255, 255, 0.10);
}

[data-theme="light"] {
  --bg: #F7F5F2;
  --bg-raise: #EFECE8;
  --card-bg: #ffffff;
  --card-border: rgba(17, 17, 17, 0.09);
  --card-hover: #fdfcfa;
  --text: #111111;
  --text-mid: #3a3a3a;
  --text-muted: #6b6660;
  --text-faint: #9e9890;
  --hairline: rgba(17, 17, 17, 0.08);
  --input-border: rgba(17, 17, 17, 0.18);
  --shadow: 0 24px 80px rgba(60, 50, 30, 0.10);
  --scrim: rgba(247, 245, 242, 0);
  --scrim-solid: rgba(247, 245, 242, 0.92);
  --tiktok-ink: #111111;
  --map-land: rgba(17, 17, 17, 0.06);
  --map-border: rgba(17, 17, 17, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-gutter: stable; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  transition: background 0.2s, color 0.2s;
}

::selection { background: var(--yellow); color: #111; }

/* ---------- rainbow strip ---------- */
.rainbow { display: flex; height: 4px; width: 100%; position: sticky; top: 0; z-index: 60; }
.rainbow span { flex: 1; }
.rainbow span:nth-child(1) { background: var(--yellow); }
.rainbow span:nth-child(2) { background: var(--coral); }
.rainbow span:nth-child(3) { background: var(--green); }
.rainbow span:nth-child(4) { background: var(--sky); }
.rainbow span:nth-child(5) { background: var(--pink); }
.rainbow span:nth-child(6) { background: var(--purple); }

/* ---------- micro-label utility ---------- */
.micro {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* ---------- header ---------- */
header {
  position: sticky; top: 4px; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.7rem 1.4rem;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.brand { display: flex; align-items: baseline; gap: 0.65rem; min-width: 0; }
.brand h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand .stamp {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header-spacer { flex: 1; }

/* source status dots */
.sources { display: flex; align-items: center; gap: 0.45rem; }
.src-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); position: relative; cursor: default;
  transition: transform 0.12s;
}
.src-dot.err { background: var(--coral); }
.src-dot:hover { transform: scale(1.5); }
.src-dot::after {
  content: attr(data-tip);
  position: absolute; top: 14px; right: -4px;
  background: var(--bg-raise); border: 1px solid var(--card-border);
  color: var(--text-mid); font-size: 0.62rem; font-weight: 500;
  font-family: var(--body); letter-spacing: 0.02em; text-transform: none;
  padding: 0.3rem 0.55rem; border-radius: var(--radius-sm);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.12s; box-shadow: var(--shadow); z-index: 70;
}
.src-dot:hover::after { opacity: 1; }

/* toggles */
.tog {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: 1px solid var(--card-border);
  border-radius: 999px; padding: 0.32rem 0.7rem;
  color: var(--text-muted); cursor: pointer;
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.tog:hover { border-color: var(--input-border); color: var(--text-mid); }
.tog svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tog .lab-on, [data-theme="light"] .tog .moon { display: none; }
[data-theme="light"] .tog .sun { display: block; }
.tog .sun { display: none; }
body.private #tog-privacy { border-color: var(--yellow); color: var(--yellow); }
body.private #tog-privacy .lab-on { display: inline; }
body.private #tog-privacy .lab-off { display: none; }

/* ---------- privacy blur ---------- */
body.private .sensitive {
  filter: blur(5px);
  transition: filter 0.15s;
  user-select: none;
}
body.private .sensitive:hover { filter: blur(0); }

/* ---------- page grid ---------- */
main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 1.2rem 1.4rem 3rem;
  max-width: 1560px;
  margin: 0 auto;
}

section.mod {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: 1.15rem 1.25rem 1.25rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

/* staggered load-in */
@media (prefers-reduced-motion: no-preference) {
  section.mod { opacity: 0; transform: translateY(10px); animation: rise 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  section.mod:nth-of-type(1) { animation-delay: 0.05s; }
  section.mod:nth-of-type(2) { animation-delay: 0.13s; }
  section.mod:nth-of-type(3) { animation-delay: 0.21s; }
  section.mod:nth-of-type(4) { animation-delay: 0.29s; }
  section.mod:nth-of-type(5) { animation-delay: 0.37s; }
  section.mod:nth-of-type(6) { animation-delay: 0.45s; }
  section.mod:nth-of-type(7) { animation-delay: 0.53s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* module header: accent tick + label */
.mod-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem; }
.mod-head .tick { width: 16px; height: 3px; border-radius: 2px; background: var(--accent, var(--text-faint)); }
.mod-head .micro { color: var(--text-muted); }
.mod-head .aux { margin-left: auto; font-variant-numeric: tabular-nums; }

/* per-module accent binding */
#mod-brief  { --accent: var(--ch-brief); }
#mod-todo   { --accent: var(--ch-todo); }
#mod-social { --accent: var(--ch-social); }
#mod-radar  { --accent: var(--ch-radar); }
#mod-web    { --accent: var(--ch-web); }
#mod-search { --accent: var(--ch-search); }

/* spans */
#mod-brief  { grid-column: span 12; }
#mod-todo   { grid-column: span 5; }
#mod-radar  { grid-column: span 7; }
#mod-social { grid-column: span 12; padding: 0; background: none; border: none; overflow: visible; }
#mod-web    { grid-column: span 7; }
#mod-search { grid-column: span 5; }

/* ============================================================
   BRIEFING HERO
   ============================================================ */
#mod-brief { padding: 1.6rem 1.6rem 1.5rem; }
#mod-brief::before {
  /* faint aurora behind the hero — barely-there atmosphere */
  content: ''; position: absolute; inset: -40% -10% auto;
  height: 140%; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(38% 55% at 12% 0%, color-mix(in srgb, var(--purple) 14%, transparent), transparent 70%),
    radial-gradient(30% 50% at 88% 10%, color-mix(in srgb, var(--yellow) 9%, transparent), transparent 70%);
}
#brief-date { margin-bottom: 0.55rem; }
#brief-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 26em;
  position: relative;
}
#brief-body {
  margin-top: 0.7rem; max-width: 62em;
  color: var(--text-mid); font-weight: 300; font-size: 0.88rem;
  position: relative;
}
#brief-body b, #brief-body strong { font-weight: 600; color: var(--text); }

.wr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.15rem; position: relative; }
.wr {
  border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: color-mix(in srgb, var(--card-bg) 60%, transparent);
}
.wr .micro { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.45rem; }
.wr .micro::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.wr.wins .micro { color: var(--green); }
.wr.wins .micro::before { background: var(--green); }
.wr.risks .micro { color: var(--coral); }
.wr.risks .micro::before { background: var(--coral); }
.wr ul { list-style: none; }
.wr li { padding: 0.22rem 0; color: var(--text-mid); font-size: 0.8rem; font-weight: 300; }
.wr li + li { border-top: 1px solid var(--hairline); }

/* ============================================================
   TO-DO LIST
   ============================================================ */
#todo-list { list-style: none; }
.todo {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.62rem 0.35rem 0.62rem 0.15rem;
  border-top: 1px solid var(--hairline);
  transition: background 0.12s;
  border-radius: var(--radius-sm);
}
.todo:first-child { border-top: none; }
.todo:hover { background: var(--card-hover); }

.todo input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; margin-top: 0.18rem; flex: none;
  border: 1.5px solid var(--input-border); border-radius: 5px;
  cursor: pointer; position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.todo input[type="checkbox"]:hover { border-color: var(--yellow); }
.todo input[type="checkbox"]:checked { background: var(--yellow); border-color: var(--yellow); }
.todo input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 4.5px; top: 1.5px;
  width: 4px; height: 8px;
  border: solid #111; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

.todo .t-main { flex: 1; min-width: 0; }
.todo .t-text { font-size: 0.83rem; font-weight: 400; color: var(--text); }
.todo.done .t-text { text-decoration: line-through; color: var(--text-faint); }
.todo .t-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin-top: 0.28rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.14rem 0.5rem; border-radius: 999px;
  border: 1px solid var(--card-border); color: var(--text-muted);
  text-decoration: none; white-space: nowrap;
}
a.chip { transition: border-color 0.12s, color 0.12s; }
a.chip:hover { border-color: var(--text-muted); color: var(--text); }

.chip.src-email    { color: var(--sky); border-color: color-mix(in srgb, var(--sky) 35%, transparent); }
.chip.src-calendar { color: var(--pink); border-color: color-mix(in srgb, var(--pink) 40%, transparent); }
.chip.src-meeting  { color: var(--purple); border-color: color-mix(in srgb, var(--purple) 45%, transparent); }
[data-theme="dark"] .chip.src-meeting { color: #8b90f5; }
.chip.src-notes    { color: var(--yellow); border-color: color-mix(in srgb, var(--yellow) 40%, transparent); }
.chip.src-pipeline { color: var(--green); border-color: color-mix(in srgb, var(--green) 35%, transparent); }
.chip.src-playbook { color: var(--coral); border-color: color-mix(in srgb, var(--coral) 40%, transparent); }

.chip.due { color: var(--text-mid); }
.chip.due.today { color: var(--coral); border-color: color-mix(in srgb, var(--coral) 45%, transparent); font-weight: 700; }
.chip.ready {
  color: #111; background: var(--yellow); border-color: var(--yellow); font-weight: 700;
}
.chip.age { border: none; padding-left: 0; color: var(--text-faint); letter-spacing: 0.06em; }

#todo-empty { padding: 1.6rem 0; text-align: center; color: var(--text-muted); font-weight: 300; }
#todo-empty .big { font-family: var(--display); font-size: 1.3rem; color: var(--text-mid); display: block; margin-bottom: 0.2rem; }

/* ============================================================
   SOCIAL OVERVIEW — three platform cards
   ============================================================ */
#social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.soc {
  border: 1px solid var(--card-border); border-radius: var(--radius);
  background: var(--card-bg); padding: 1.05rem 1.15rem;
  min-width: 0; position: relative; overflow: hidden;
}
.soc-top { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.8rem; }
.soc-top svg { width: 15px; height: 15px; flex: none; }
.soc-top .handle { margin-left: auto; color: var(--text-faint); font-variant-numeric: tabular-nums; }

.soc-big {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.soc-sub { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.35rem; }
.delta { font-size: 0.66rem; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.delta.up { color: var(--green); }
.delta.downish { color: var(--coral); }
.delta.flat { color: var(--text-muted); }

.soc-spark { margin: 0.75rem 0 0.9rem; }
.soc-spark svg { display: block; width: 100%; height: 42px; }

.soc-posts { list-style: none; border-top: 1px solid var(--hairline); }
.soc-posts li { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--hairline); }
.soc-posts li:last-child { border-bottom: none; }
.soc-posts .thumb {
  width: 30px; height: 40px; border-radius: 5px; object-fit: cover; flex: none;
  background: var(--bg-raise); border: 1px solid var(--card-border);
}
.soc-posts .p-title {
  flex: 1; min-width: 0; font-size: 0.72rem; font-weight: 400; color: var(--text-mid);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.35;
}
.soc-posts a.p-title { text-decoration: none; transition: color 0.12s; }
.soc-posts a.p-title:hover { color: var(--text); }
.soc-posts .p-views { font-size: 0.72rem; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.soc-posts .p-age { font-size: 0.58rem; color: var(--text-faint); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* degraded state */
.soc.degraded .soc-big, .soc.degraded .soc-posts, .soc.degraded .soc-spark { opacity: 0.35; }
.stale-note { margin-top: 0.6rem; font-size: 0.62rem; color: var(--coral); font-weight: 500; }

/* ============================================================
   OPPORTUNITIES RADAR
   ============================================================ */
#mod-radar { display: flex; flex-direction: column; }
#radar-list { list-style: none; flex: 1; }
.radar-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.35rem 0.8rem;
  align-items: baseline;
  padding: 0.6rem 0.2rem; border-top: 1px solid var(--hairline);
}
.radar-item:first-child { border-top: none; }
.radar-item .plat { display: flex; align-items: center; gap: 0.4rem; }
.radar-item .plat svg { width: 12px; height: 12px; }
.radar-item .r-title {
  grid-column: 2; min-width: 0;
  font-size: 0.8rem; color: var(--text); text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
a.r-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.radar-item .r-mult {
  grid-column: 3; grid-row: 1 / span 2; align-self: center;
  font-family: var(--display); font-size: 1.35rem; font-variant-numeric: tabular-nums;
  color: var(--coral); letter-spacing: -0.02em; white-space: nowrap;
}
.radar-item .r-mult small { font-size: 0.7em; }
.radar-item .r-meta { grid-column: 2; display: flex; gap: 0.7rem; flex-wrap: wrap; color: var(--text-muted); font-size: 0.62rem; font-variant-numeric: tabular-nums; }
.radar-item .r-meta .who { font-weight: 600; color: var(--text-mid); }

#radar-health { margin-top: 0.85rem; padding-top: 0.7rem; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; }
#radar-health .h { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
#radar-health .h::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
#radar-health .h.skip::before { background: var(--coral); }
#radar-health .h.skip { color: var(--coral); }

/* ============================================================
   WEBSITE — world map + top pages
   ============================================================ */
#chart-worldmap { width: 100%; height: 340px; }
#map-cap { margin-top: 0.1rem; font-variant-numeric: tabular-nums; }
#map-cap b { color: var(--text); font-weight: 600; }
#web-pages { list-style: none; margin-top: 0.9rem; border-top: 1px solid var(--hairline); columns: 2; column-gap: 2rem; }
#web-pages li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.42rem 0; border-bottom: 1px solid var(--hairline);
  break-inside: avoid; font-size: 0.75rem;
}
#web-pages .pg { color: var(--text-mid); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 300; }
#web-pages .pv { font-weight: 600; font-variant-numeric: tabular-nums; }
#web-pages li:first-child .pv, #web-pages li:first-child .pg { color: var(--text); font-weight: 600; }

/* ============================================================
   SEARCH — GSC queries
   ============================================================ */
#gsc-spark svg { display: block; width: 100%; height: 52px; }
#gsc-stats { display: flex; gap: 1.6rem; margin: 0.4rem 0 0.9rem; }
#gsc-stats .kv .v { font-family: var(--display); font-size: 1.45rem; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; line-height: 1.1; }
#gsc-stats .kv .k { margin-top: 0.15rem; }

#gsc-table { width: 100%; border-collapse: collapse; }
#gsc-table th {
  text-align: right; font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint);
  padding: 0.3rem 0 0.45rem 0.6rem; border-bottom: 1px solid var(--hairline);
}
#gsc-table th:first-child { text-align: left; padding-left: 0; }
#gsc-table td {
  padding: 0.44rem 0 0.44rem 0.6rem; border-bottom: 1px solid var(--hairline);
  font-size: 0.75rem; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap;
}
#gsc-table td.q {
  text-align: left; padding-left: 0; color: var(--text-mid); font-weight: 400;
  max-width: 0; width: 55%; overflow: hidden; text-overflow: ellipsis;
}
#gsc-table tr:hover td { background: var(--card-hover); }
.pos-delta { font-size: 0.62rem; font-weight: 600; margin-left: 0.3rem; }
.pos-delta.up { color: var(--green); }
.pos-delta.down { color: var(--coral); }
.pos-delta.flat { color: var(--text-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 0 1.4rem 2.2rem; max-width: 1560px; margin: 0 auto;
  display: flex; gap: 1rem; align-items: center;
}
footer .micro { color: var(--text-faint); }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #mod-todo, #mod-radar, #mod-web, #mod-search { grid-column: span 12; }
  #social-grid { grid-template-columns: 1fr 1fr; }
  #web-pages { columns: 1; }
}
@media (max-width: 640px) {
  header { padding: 0.6rem 0.9rem; gap: 0.6rem; }
  .brand .stamp { display: none; }
  main { padding: 0.9rem 0.9rem 2rem; gap: 10px; }
  #mod-brief { padding: 1.15rem 1.05rem; }
  .wr-grid { grid-template-columns: 1fr; }
  #social-grid { grid-template-columns: 1fr; }
  #chart-worldmap { height: 240px; }
  .sources { display: none; }
}

/* prep viewer (prep.html) */
.prep-wrap { max-width: 760px; margin: 0 auto; padding: 2.2rem 1.4rem 4rem; }
.prep-wrap .back { display: inline-block; margin-bottom: 1.6rem; }
.prep-doc h1, .prep-doc h2, .prep-doc h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; margin: 1.5em 0 0.5em; }
.prep-doc h1 { font-size: 1.9rem; margin-top: 0; }
.prep-doc h2 { font-size: 1.3rem; }
.prep-doc h3 { font-size: 1.05rem; }
.prep-doc p, .prep-doc li { color: var(--text-mid); font-weight: 300; font-size: 0.9rem; }
.prep-doc ul, .prep-doc ol { padding-left: 1.3rem; margin: 0.5em 0 1em; }
.prep-doc strong { color: var(--text); font-weight: 600; }
.prep-doc hr { border: none; border-top: 1px solid var(--hairline); margin: 1.5em 0; }
.prep-doc blockquote { border-left: 3px solid var(--yellow); padding-left: 1em; margin: 1em 0; }
.prep-doc code { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 4px; padding: 0.1em 0.35em; font-size: 0.85em; }
