/* Product widgets — 1:1 rebuilds of COatelier surfaces (draft card, thread,
   record field). Same tokens, same type scale, same radii as the app, so
   they are vector-sharp at any size. Authored at native px; the hero scales
   them with `zoom` from product.js. Namespace: .p */

@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/schibsted-grotesk-latin-wght-normal.woff2') format('woff2');
}

.p {
  --p-surface: #ffffff;
  --p-sunk: #f5f4f2;
  --p-ink: #171612;
  --p-ink-2: #57544c;
  --p-ink-3: #8d897c;
  --p-hair: #e8e6e1;
  --p-hair-2: #d5d1c8;
  --p-int: #c2410c;
  --p-int-weak: #fdece1;
  --p-ok: #4c7a58;
  --p-waiting: #94722a;
  --p-solid: #171612;
  --p-solid-fg: #fdfcfa;
  --p-shadow: 0 1px 2px rgba(23,22,18,0.05), 0 3px 10px -4px rgba(23,22,18,0.1);

  font-family: 'Schibsted Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 14px; line-height: 22px;
  color: var(--p-ink);
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
.p * { box-sizing: border-box; }
.p p { margin: 0; }
.p button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.p .ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex: none; }
.p .mono { font-family: 'Spline Sans Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }
.p .small { font-size: 13px; line-height: 20px; }
.p .cap { font-size: 11px; line-height: 16px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.p .data { font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 13px; line-height: 20px; font-weight: 500; }
.p .ink2 { color: var(--p-ink-2); } .p .ink3 { color: var(--p-ink-3); }
.p .trunc { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }

.p-card {
  background: var(--p-surface);
  border: 1px solid var(--p-hair);
  border-radius: 8px;
  box-shadow: var(--p-shadow);
}

/* buttons, as in the app */
.p .p-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px; border-radius: 8px;
  font-size: 13px; line-height: 20px; font-weight: 500;
  transition: background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, color 160ms ease;
}
.p .p-btn-solid { background: var(--p-solid); color: var(--p-solid-fg); }
.p .p-btn-solid:hover { opacity: 0.9; }
.p .p-btn-solid:disabled { opacity: 0.4; cursor: not-allowed; }
.p .p-btn-ghost { border: 1px solid var(--p-hair-2); background: var(--p-surface); color: var(--p-ink); }
.p .p-btn-ghost:hover { border-color: var(--p-ink); }
.p .p-btn-text { color: var(--p-ink-3); padding: 0 8px; }
.p .p-btn-text:hover { color: var(--p-ink); }
.p button:focus-visible { outline: 2px solid var(--p-int); outline-offset: 2px; border-radius: 8px; }
.p .p-link { display: inline-flex; align-items: center; gap: 4px; font-weight: 500; color: var(--p-int); }
.p .p-link:hover { text-decoration: underline; }

.p-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
  background: var(--p-int-weak); color: var(--p-int);
}
.p-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 6px; border-radius: 999px;
  border: 1px solid var(--p-hair); background: var(--p-surface);
  font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 11px; line-height: 16px; color: var(--p-ink-2);
}
.p-chip .ico { color: var(--p-ink-3); }
.p-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--p-int); animation: p-pulse 1.2s ease-in-out infinite; }
@keyframes p-pulse { 50% { opacity: 0.35; } }

/* ── Draft card ─────────────────────────────────────────────────── */
.p-draft { width: 940px; max-width: 100%; padding: 24px; }
.p-draft-head { display: flex; align-items: center; gap: 8px; min-width: 0; }
.p-draft-head .data { white-space: nowrap; flex: none; }
.p-draft-body { margin-top: 12px; padding: 12px; border-radius: 8px; background: var(--p-sunk); white-space: pre-wrap; line-height: 1.625; color: var(--p-ink-2); }
.p-draft-body[contenteditable="true"] { background: var(--p-surface); border: 1px solid var(--p-int); outline: 0; }
.p-draft-actions { margin-top: 12px; min-height: 36px; display: flex; align-items: center; gap: 8px; }
.p-draft-foot { margin-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; color: var(--p-ink-3); }
.p-draft-foot .p-link { white-space: nowrap; }
.p-draft[data-state="sending"] .p-draft-actions > *, .p-draft[data-state="sent"] .p-draft-actions > * { display: none; }
.p-draft .p-sending, .p-draft .p-sent { display: none; align-items: center; gap: 8px; }
.p-draft[data-state="sending"] .p-sending { display: flex; }
.p-draft[data-state="sent"] .p-sent { display: flex; color: var(--p-ok); }
.p-draft[data-state="sent"] .p-draft-body { opacity: 0.55; }
.p-draft[data-state="sent"] .p-draft-foot, .p-draft[data-state="dismissed"] .p-draft-foot { display: none; }
.p-draft[data-state="dismissed"] > :not(.p-dismissed) { display: none; }
.p-draft .p-dismissed { display: none; align-items: center; justify-content: space-between; gap: 12px; color: var(--p-ink-3); }
.p-draft[data-state="dismissed"] .p-dismissed { display: flex; }
.p-draft .p-again { display: none; }
.p-draft[data-state="sent"] .p-again { display: inline; margin-left: auto; color: var(--p-ink-3); font-weight: 400; }
.p-draft .p-again:hover { color: var(--p-ink); }

.p-log-row { display: flex; align-items: center; gap: 8px; white-space: normal; }
.p-draft-log[data-state="sent"] .p-log-row .data:last-child { color: var(--p-ok); }

/* ── Thread ─────────────────────────────────────────────────────── */
.p-thread { width: 640px; max-width: 100%; }
.p-thread-head { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 20px; border-bottom: 1px solid var(--p-hair); }
.p-thread-list { padding: 16px 20px; display: grid; gap: 12px; }
.p-msg { padding: 12px 14px; border: 1px solid var(--p-hair); border-radius: 8px; transition: border-color 160ms ease; }
.p-msg:hover { border-color: var(--p-hair-2); }
.p-msg.is-active { border-color: var(--p-int); }
.p-msg-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.p-msg-head .logo { width: 16px; height: 16px; flex: none; }
.p-msg-head .from { font-size: 13px; line-height: 20px; font-weight: 500; }
.p-msg-head .date { margin-left: auto; font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 11px; line-height: 16px; color: var(--p-ink-3); }
.p-msg-body { font-size: 13px; line-height: 1.625; color: var(--p-ink-2); white-space: pre-wrap; }
.p-msg-att { margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.p-msg-att > .ico { color: var(--p-ink-3); width: 12px; height: 12px; }
.p-msg.is-new { animation: p-arrive 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes p-arrive { from { opacity: 0; transform: translateY(8px); } }
.p-thread .p-new { display: none; }
.p-thread[data-new="1"] .p-new { display: inline-flex; }

/* ── Record field + provenance receipt ───────────────────────────── */
.p-record { width: 520px; max-width: 100%; display: grid; gap: 12px; }
.p-record .group { color: var(--p-ink-3); font-size: 13px; line-height: 20px; }
.p-field { padding: 14px 16px; position: relative; }
.p-field-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.p-field-val { margin-top: 6px; font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 14px; line-height: 20px; font-weight: 500; }
.p-field-sec { margin-top: 2px; font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 11px; line-height: 16px; color: var(--p-ink-3); }
.p .p-src {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  transition: background-color 160ms ease;
}
.p .p-src img { width: 16px; height: 16px; display: block; }
.p .p-src:hover { background: var(--p-sunk); }
.p-field.is-open { border-color: var(--p-int); }
.p-field.is-open .p-src { background: var(--p-int-weak); }
.p-receipt {
  display: none;
  margin-top: 0; padding: 12px 14px 12px; border-radius: 8px; background: var(--p-sunk);
}
.p-field.is-open + .p-receipt { display: block; animation: p-arrive 260ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.p-receipt-head { display: flex; align-items: center; gap: 6px; font-size: 13px; line-height: 20px; font-weight: 500; color: var(--p-ink-2); }
.p-receipt-head img { width: 14px; height: 14px; }
.p-receipt-head .meta { font-family: 'Spline Sans Mono', ui-monospace, monospace; font-size: 11px; font-weight: 400; color: var(--p-ink-3); }
.p-receipt-quote { margin-top: 8px; padding-left: 10px; border-left: 2px solid var(--p-int); font-size: 13px; line-height: 1.6; color: var(--p-ink-2); }
.p-receipt-quote mark { background: var(--p-int-weak); color: var(--p-ink); padding: 0 2px; border-radius: 2px; }
.p-receipt .p-link { margin-top: 8px; font-size: 13px; }
.p-record .hint { font-size: 13px; line-height: 20px; color: var(--p-ink-3); }

@media (prefers-reduced-motion: reduce) {
  .p-dot { animation: none; }
  .p-msg.is-new, .p-field.is-open + .p-receipt { animation: none; }
}

/* ── Icons used by the board / today rebuilds ─────────────────────── */
.p .i14 { width: 14px; height: 14px; } .p .i16 { width: 16px; height: 16px; } .p .i18 { width: 18px; height: 18px; }

/* ── Board — the app's board screen, native 1440 × 900 ───────────── */
.p-board { width: 1440px; height: 900px; display: grid; grid-template-columns: 240px 1fr; background: #fff; overflow: hidden; font-family: 'Schibsted Grotesk', ui-sans-serif, system-ui, sans-serif; }
.b-rail { border-right: 1px solid var(--p-hair); display: flex; flex-direction: column; }
.b-rail-top { display: flex; align-items: center; justify-content: space-between; height: 92px; padding: 0 20px 0 20px; }
.b-word { font-family: 'Jost', ui-sans-serif, sans-serif; font-size: 22px; font-weight: 450; letter-spacing: -0.015em; }
.b-rail-top .ico { color: var(--p-ink-3); }
.b-search { margin: 0 20px; height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--p-hair-2); border-radius: 8px; color: var(--p-ink-3); font-size: 13px; }
.b-search .kbd { margin-left: auto; font-family: 'Spline Sans Mono', monospace; font-size: 11px; }
.b-season { margin: 18px 20px 0; height: 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--p-hair); padding-bottom: 12px; }
.b-nav { margin-top: 26px; display: grid; gap: 10px; }
.b-nav a { position: relative; display: flex; align-items: center; gap: 12px; height: 32px; padding: 0 20px; font-size: 15px; color: var(--p-ink); }
.b-nav a .ico { color: var(--p-ink-3); }
.b-nav a.on::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--p-ink); }
.b-nav a .count { margin-left: auto; font-family: 'Spline Sans Mono', monospace; font-size: 12px; color: var(--p-ink-3); }
.b-user { margin-top: auto; border-top: 1px solid var(--p-hair); height: 66px; display: flex; align-items: center; gap: 12px; padding: 0 20px; }
.b-user .avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--p-hair-2); display: grid; place-items: center; font-family: 'Spline Sans Mono', monospace; font-size: 10px; font-weight: 500; }
.b-user .name { font-size: 13px; line-height: 18px; }
.b-user .ico { margin-left: auto; color: var(--p-ink-3); }
.b-main { min-width: 0; display: flex; flex-direction: column; }
.b-head { height: 161px; border-bottom: 1px solid var(--p-hair); padding: 28px 40px 0; position: relative; }
.b-head h1 { font-family: 'Jost', ui-sans-serif, sans-serif; font-size: 26px; line-height: 1.2; font-weight: 400; letter-spacing: -0.005em; }
.b-head .sub { margin-top: 6px; font-size: 14px; color: var(--p-ink-3); }
.b-actions { position: absolute; right: 40px; top: 31px; display: flex; align-items: center; gap: 10px; }
.b-agent { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; margin-right: 6px; }
.b-agent .ico { color: var(--p-int); }
.b-filters { position: absolute; left: 40px; bottom: 16px; display: flex; align-items: center; gap: 12px; }
.b-find { display: flex; align-items: center; gap: 8px; width: 210px; height: 32px; border-bottom: 1px solid var(--p-hair-2); color: var(--p-ink-3); }
.b-find .ico { color: var(--p-ink-3); }
.b-vsep { width: 1px; height: 24px; background: var(--p-hair); margin: 0 10px; }
.b-filter { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border: 1px solid var(--p-hair); border-radius: 8px; font-size: 13px; }
.b-filter .cap { color: var(--p-ink-3); }
.b-filter .ico { color: var(--p-ink-3); }
.b-cols { flex: 1; display: grid; grid-auto-flow: column; grid-auto-columns: 300px; padding: 24px 28px 0; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; scrollbar-width: none; cursor: grab; }
.b-cols::-webkit-scrollbar { display: none; }
.b-cols.is-dragging { cursor: grabbing; user-select: none; }
.b-col-add { display: flex; align-items: flex-start; }
.b-add { display: inline-flex; align-items: center; gap: 6px; height: 21px; font-size: 13px; color: var(--p-ink-3); }
.b-col { padding: 0 16px; border-left: 1px solid var(--p-hair); }
.b-col:first-child { border-left: 0; }
.b-col h3 { display: flex; gap: 8px; height: 21px; align-items: flex-start; border-bottom: 1px solid var(--p-hair); padding-bottom: 12px; margin-bottom: 16px; font-weight: 500; }
.b-col h3 .n { font-family: 'Spline Sans Mono', monospace; font-weight: 400; }
.b-card { border: 1px solid var(--p-hair); border-radius: 8px; overflow: hidden; background: #fff; box-shadow: var(--p-shadow); margin-bottom: 18px; transition: border-color 160ms ease, box-shadow 160ms ease; }
/* the app's hover-agent-edge: a light warm-orange border, nothing else */
.b-card:hover { border-color: color-mix(in srgb, var(--p-int) 42%, transparent); box-shadow: 0 2px 4px rgba(23,22,18,0.06), 0 8px 18px -6px rgba(23,22,18,0.14); }
.b-card:hover .b-id .ico { color: var(--p-ink-2); }
.b-img { position: relative; height: 192px; background: var(--p-sunk); display: grid; place-items: center; }
.b-img img { height: 132px; width: auto; }
.b-ch { position: absolute; top: 12px; right: 12px; height: 24px; padding: 0 6px; display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--p-int); border-radius: 999px; color: var(--p-int); background: #fff; }
.b-body { padding: 14px 16px 16px; }
.b-id { display: flex; align-items: center; gap: 8px; font-family: 'Spline Sans Mono', monospace; font-size: 12px; font-weight: 500; }
.b-id .dot { width: 6px; height: 6px; border-radius: 50%; }
.b-id .ico { margin-left: auto; color: var(--p-ink-3); }
.b-title { margin-top: 8px; font-size: 15px; line-height: 20px; font-weight: 500; }
.b-fac { margin-top: 4px; font-family: 'Spline Sans Mono', monospace; font-size: 12px; color: var(--p-ink-3); }
.b-status { margin-top: 8px; font-family: 'Spline Sans Mono', monospace; font-size: 12px; font-weight: 500; }
.b-sw { margin-top: 10px; display: flex; gap: 4px; }
.b-sw span { width: 16px; height: 16px; border-radius: 3px; border: 1px solid rgba(23,22,18,0.12); position: relative; }
.b-sw span.ok::after { content: ''; position: absolute; right: -3px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--p-ok); border: 1.5px solid #fff; }

/* ── Today — the main column of the Today view, native 608 wide ──── */
.p-today { width: 608px; font-family: 'Schibsted Grotesk', ui-sans-serif, system-ui, sans-serif; }
.t-date { font-family: 'Spline Sans Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--p-ink-3); }
.t-h1 { margin-top: 6px; font-family: 'Jost', ui-sans-serif, sans-serif; font-size: 36px; line-height: 1.1; font-weight: 380; letter-spacing: -0.01em; }
.t-sub { margin-top: 8px; font-size: 15px; color: var(--p-ink-3); }
.t-sec { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.t-sec .cap { white-space: nowrap; }
.t-sec .n { font-family: 'Spline Sans Mono', monospace; font-size: 12px; font-weight: 500; }
.t-sec .hint { font-size: 13px; color: var(--p-ink-3); }
.t-list { margin-top: 10px; border: 1px solid var(--p-hair); border-radius: 8px; box-shadow: var(--p-shadow); background: #fff; }
.t-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--p-hair); transition: opacity 240ms ease, background-color 160ms ease; }
.t-row:first-child { border-top: 0; }
.t-row.is-done { opacity: 0.45; }
.t-av { width: 28px; height: 28px; border-radius: 50%; background: var(--p-sunk); display: grid; place-items: center; font-family: 'Spline Sans Mono', monospace; font-size: 10px; font-weight: 500; color: var(--p-ink-2); flex: none; }
.t-main { min-width: 0; flex: 1; }
.t-who { font-size: 13px; line-height: 20px; }
.t-who b { font-weight: 500; }
.t-who .data { font-size: 12px; }
.t-quote { margin-top: 2px; font-size: 12px; line-height: 18px; color: var(--p-ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-age { font-family: 'Spline Sans Mono', monospace; font-size: 11px; color: var(--p-ink-3); margin-top: 4px; }
.t-check { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--p-ink-3); }
.p .t-check:hover { background: var(--p-sunk); color: var(--p-ok); }
.t-row.is-done .t-check { color: var(--p-ok); }
.t-q { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--p-hair); }
.t-q:first-child { border-top: 0; }
.t-q .dot { width: 8px; height: 8px; border-radius: 50%; background: #a6493c; flex: none; }
.t-q .id { font-family: 'Spline Sans Mono', monospace; font-size: 12px; font-weight: 500; }
.t-q .title { font-size: 13px; font-weight: 500; }
.t-q .meta { margin-top: 2px; font-family: 'Spline Sans Mono', monospace; font-size: 11px; color: var(--p-ink-3); }
.p .t-chase { margin-left: auto; display: inline-flex; align-items: center; gap: 2px; font-size: 13px; color: var(--p-ink-2); }
.p .t-chase:hover { color: var(--p-ink); }
.t-banner { margin-top: 28px; display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 8px; background: var(--p-int-weak); }
.t-banner .ico { color: var(--p-int); width: 18px; height: 18px; }
.t-banner .b1 { font-size: 14px; font-weight: 500; }
.t-banner .b2 { font-size: 12px; color: var(--p-ink-2); }
.p .t-banner .go { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--p-int); white-space: nowrap; }
.t-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--p-hair); display: flex; justify-content: flex-end; }

/* ── Phone: widgets reflow at 1:1 instead of being shrunk ────────── */
@media (max-width: 700px) {
  .p-today, .p-record, .p-draft, .p-thread { width: 100%; }
  .p-draft { padding: 16px; }
  .p-draft-actions { flex-wrap: wrap; }
  .t-row { padding: 12px; }
  .t-quote { white-space: normal; }
  .t-age { display: none; }
  .t-banner { flex-wrap: wrap; }
  .t-banner .go { margin-left: 30px; }
  .b-cols { cursor: default; }
}

/* ── Attention: a reply lands, the chase updates ─────────────────── */
.p-msg { position: relative; }
.p-plus {
  position: absolute; right: 12px; top: -6px; z-index: 2;
  min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px;
  background: var(--p-int); color: #fff; font-family: 'Spline Sans Mono', monospace; font-size: 12px; line-height: 22px; font-weight: 500; text-align: center;
  animation: p-plus 1600ms cubic-bezier(0.2, 0.7, 0.2, 1) 120ms both;
}
@keyframes p-plus {
  0% { opacity: 0; transform: translateY(6px) scale(0.6); }
  12% { opacity: 1; transform: translateY(0) scale(1.15); }
  22% { transform: translateY(0) scale(1); }
  60% { opacity: 1; transform: translateY(-14px); }
  100% { opacity: 0; transform: translateY(-40px); }
}
.p-thread[data-new="1"] .p-new { animation: p-pill-in 480ms cubic-bezier(0.2, 0.7, 0.2, 1) 900ms both; }
@keyframes p-pill-in { from { opacity: 0; transform: scale(0.7); } 60% { transform: scale(1.12); } to { opacity: 1; transform: none; } }
/* the draft card rings once in orange when its reason changes */
.p-draft.is-resolved { animation: p-ring 1400ms ease-out both; }
@keyframes p-ring {
  0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.55), var(--p-shadow); border-color: var(--p-int); }
  60% { box-shadow: 0 0 0 14px rgba(194, 65, 12, 0), var(--p-shadow); border-color: var(--p-int); }
  100% { box-shadow: var(--p-shadow); border-color: var(--p-int); }
}
.p-updated { margin-left: auto; animation: p-pill-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
/* the new reason sweeps in with a highlight that settles into plain text */
mark.p-sweep { background: linear-gradient(90deg, var(--p-int-weak) 0 100%) no-repeat; background-size: 0% 100%; color: inherit; padding: 1px 3px; margin: -1px -3px; border-radius: 3px; animation: p-sweep 2400ms ease-out both; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
@keyframes p-sweep { 0% { background-size: 0% 100%; } 30% { background-size: 100% 100%; } 75% { background-size: 100% 100%; } 100% { background-size: 100% 100%; background-color: transparent; background-image: none; } }
@media (prefers-reduced-motion: reduce) {
  .p-plus, .p-thread[data-new="1"] .p-new, .p-draft.is-resolved, .p-updated, mark.p-sweep { animation: none; }
  mark.p-sweep { background: var(--p-int-weak); }
}
