/* ============================================================
   Team-Andro Memorial Archive — Community Layer
   Extends existing style.css tokens (--navy, --red, --paper, ...)
   No new color variables introduced.
   ============================================================ */

/* ============================================================
   Screen-reader only helper
   ============================================================ */
.ta-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   Buttons (community-scoped)
   ============================================================ */
.ta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font: inherit;
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--paper-line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
}
.ta-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.ta-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.ta-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.ta-btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ta-btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.ta-btn--ghost {
  background: transparent;
  border-color: var(--paper-line);
  color: var(--ink-2);
}
.ta-btn--ghost:hover { color: var(--navy); border-color: var(--ink-3); }
.ta-btn--block { width: 100%; }

/* ============================================================
   Inputs
   ============================================================ */
.ta-input {
  display: block; width: 100%;
  font: inherit;
  font-family: 'Verdana', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--paper-line);
  color: var(--ink);
  border-radius: 3px;
  transition: border-color .12s, box-shadow .12s;
}
.ta-input:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(204,0,0,0.12);
}
.ta-input--code {
  font-family: 'Consolas', 'Menlo', monospace;
  font-size: 22px;
  letter-spacing: 0.4em;
  text-align: center;
  padding: 14px 12px;
}
.ta-label {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 5px;
  font-weight: 700;
}
.ta-field { margin-bottom: 14px; }
.ta-form-err {
  font-size: 11.5px;
  color: var(--red);
  background: var(--red-bg);
  padding: 6px 10px;
  border-radius: 3px;
  border-left: 3px solid var(--red);
  margin: 8px 0;
}
.ta-form-ok {
  font-size: 11.5px;
  color: var(--green);
  background: rgba(44,139,58,0.08);
  padding: 6px 10px;
  border-radius: 3px;
  border-left: 3px solid var(--green);
  margin: 8px 0;
}

/* ============================================================
   Reaction bar — sits under detail-head
   ============================================================ */
ta-reaction-bar {
  display: block;
  margin: 12px 0 0;
}
.ta-reactions__row {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ta-reaction-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 100px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: transform .14s, background .14s, border-color .14s, color .14s;
}
.ta-reaction-btn:hover {
  background: #fff;
  color: var(--navy);
  border-color: var(--ink-3);
}
.ta-reaction-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.ta-reaction-btn:active {
  transform: scale(0.94);
}
.ta-reaction-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.ta-reaction-btn.is-active .ta-reaction-btn__ct { color: var(--gold-soft); }
.ta-reaction-btn__icon {
  display: inline-grid; place-items: center;
  width: 14px; height: 14px;
}
.ta-reaction-btn__icon svg { width: 14px; height: 14px; }
.ta-reaction-btn__lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ta-reaction-btn__ct {
  font-variant-numeric: tabular-nums;
  font-size: 10.5px;
  opacity: 0.85;
  min-width: 1ch;
}
.ta-reaction-btn.is-active .ta-reaction-btn__icon {
  /* fill effect for color-blind support */
  filter: drop-shadow(0 0 0 currentColor);
}

/* ============================================================
   Discussion section
   ============================================================ */
ta-comments {
  display: block;
  margin: 36px 0 0;
}
.ta-discussion {
  border-top: 4px solid var(--red);
  background: var(--paper);
  padding: 22px 24px 28px;
  margin-left: -28px;
  margin-right: -28px;
  position: relative;
}
.ta-discussion::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
  opacity: 0.85;
}
.ta-discussion__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap; gap: 12px;
}
.ta-discussion__title {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.ta-discussion__title svg { width: 18px; height: 18px; color: var(--red); }
.ta-discussion__sub {
  margin: 0 0 16px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.ta-discussion__meta {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
}
.ta-discussion__count {
  font-variant-numeric: tabular-nums;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.ta-discussion__sort select {
  font: inherit;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 3px 6px;
  color: var(--ink);
}
.ta-discussion__opener {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 10px 14px;
  text-align: left;
  margin: 4px 0 16px;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 12px;
  transition: border-color .14s, color .14s;
}
.ta-discussion__opener:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}
.ta-discussion__opener-avatar {
  width: 26px; height: 26px;
  border-radius: 4px;
  background: var(--paper-line);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Georgia', serif; font-weight: 700; font-size: 13px;
}
.ta-discussion__more {
  display: block;
  margin: 16px auto 0;
}

/* ============================================================
   Composer
   ============================================================ */
.ta-composer {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 14px;
  margin: 0 0 18px;
}
.ta-composer--inline {
  margin: 12px 0 6px;
  background: var(--paper-2);
}
.ta-composer__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.ta-composer__avatar {
  width: 28px; height: 28px;
  border-radius: 4px;
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Georgia', serif; font-weight: 700; font-size: 14px;
}
.ta-composer__handle {
  font-weight: 700;
  color: var(--ink);
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
}
.ta-composer__hint {
  margin-left: auto;
  font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.ta-composer__input {
  display: block; width: 100%;
  font: inherit;
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  color: var(--ink);
  resize: vertical;
  min-height: 80px;
}
.ta-composer__input:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(204,0,0,0.12);
}
.ta-composer__preview {
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 10px 12px;
  min-height: 80px;
  color: var(--ink);
}
.ta-composer__preview p { margin: 0 0 0.7em; }
.ta-composer__preview p:last-child { margin-bottom: 0; }
.ta-composer__preview blockquote {
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 6px 10px;
  margin: 8px 0;
}
.ta-composer__preview a { color: var(--red); text-decoration: underline; }
.ta-composer__preview code {
  font-family: 'Consolas', monospace;
  background: var(--paper);
  padding: 1px 4px;
  border-radius: 2px;
}
.ta-composer__actions {
  display: flex; gap: 8px; justify-content: flex-end;
  margin-top: 10px;
}
.ta-composer__login {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.ta-composer__login p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-2);
}

/* ============================================================
   Comments list
   ============================================================ */
.ta-comments {
  display: flex; flex-direction: column;
  gap: 4px;
}
.ta-comment {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 12px 14px;
  position: relative;
  margin: 0 0 4px;
}
.ta-comment.is-deleted {
  opacity: 0.55;
  font-style: italic;
}
.ta-comment__head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
}
.ta-comment__avatar {
  width: 24px; height: 24px;
  border-radius: 4px;
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Georgia', serif;
  font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.ta-comment__handle {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  text-decoration: none;
}
.ta-comment__handle:hover { color: var(--red); border-bottom: 1px dotted var(--red); }
.ta-comment__time { color: var(--ink-3); }
.ta-comment__edited {
  color: var(--amber);
  font-style: italic;
}
.ta-comment__body {
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
  word-wrap: break-word; overflow-wrap: break-word;
}
.ta-comment__body p { margin: 0 0 0.7em; }
.ta-comment__body p:last-child { margin-bottom: 0; }
.ta-comment__body blockquote {
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 6px 10px;
  margin: 6px 0;
  color: var(--ink-2);
  font-size: 12px;
}
.ta-comment__body a { color: var(--red); text-decoration: underline; }
.ta-comment__body code {
  font-family: 'Consolas', monospace;
  background: var(--paper);
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 11.5px;
}
.ta-comment__body pre {
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 3px;
  overflow-x: auto;
  font-size: 11.5px;
}
.ta-comment__body ul { padding-left: 20px; margin: 6px 0; }

.ta-comment__actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
}
.ta-comment__votes {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--paper);
  border-radius: 100px;
  padding: 2px 6px;
}
.ta-vote {
  background: transparent;
  border: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-3);
  border-radius: 100px;
  transition: color .12s, background .12s;
  padding: 0;
}
.ta-vote svg { width: 14px; height: 14px; }
.ta-vote:hover { color: var(--ink); background: #fff; }
.ta-vote--up.is-active { color: var(--red); }
.ta-vote--up.is-active svg { stroke-width: 3; }
.ta-vote--down.is-active { color: var(--navy); }
.ta-vote--down.is-active svg { stroke-width: 3; }
.ta-comment__score {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
  font-size: 11px;
  min-width: 2ch;
  text-align: center;
}
.ta-comment__action {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--ink-3);
  font: inherit;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: color .12s, background .12s;
}
.ta-comment__action svg { width: 13px; height: 13px; }
.ta-comment__action:hover { color: var(--navy); background: var(--paper-2); }
.ta-comment__action--muted { margin-left: auto; opacity: 0.7; }

.ta-comment__children {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--paper-line);
}
.ta-comment--depth-1 { background: #fcfaf3; }
.ta-comment--depth-2 { background: var(--paper); }
.ta-comment__more {
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  padding: 6px 0 0;
}

.ta-empty {
  background: #fff;
  border: 1px dashed var(--paper-line);
  padding: 18px 16px;
  text-align: center;
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  border-radius: 3px;
}

/* skeleton */
.ta-skel-comment {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  height: 96px;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.ta-skel-comment::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
  animation: ta-skel 1.4s linear infinite;
}
@keyframes ta-skel {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   Modal (login + handle prompt)
   ============================================================ */
body.ta-modal-open { overflow: hidden; }
.ta-modal-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(0, 29, 62, 0.78);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 20px;
  animation: ta-fade .2s ease;
}
@keyframes ta-fade { from { opacity: 0; } to { opacity: 1; } }
.ta-modal-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--paper);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55);
  animation: ta-pop .2s ease;
}
@keyframes ta-pop { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ta-modal-close {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px;
  border: 0; background: transparent;
  display: grid; place-items: center;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: 4px;
}
.ta-modal-close svg { width: 16px; height: 16px; }
.ta-modal-close:hover { color: var(--red); background: rgba(0,0,0,0.04); }
.ta-modal-title {
  margin: 0 0 6px;
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ta-modal-sub {
  margin: 0 0 18px;
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.ta-modal-foot {
  margin: 14px 0 0;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.ta-login__form { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Auth pill + profile menu (mobile-bar)
   ============================================================ */
.ta-authpill {
  display: inline-flex;
  margin-left: auto;
}
.ta-authpill__btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  width: 40px; height: 40px;
  border-radius: 4px;
  display: grid; place-items: center;
  padding: 0;
  color: #fff;
  cursor: pointer;
}
.ta-authpill__btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.ta-authpill__btn--login {
  width: auto;
  padding: 0 12px;
  font: inherit;
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.ta-authpill__avatar {
  width: 26px; height: 26px;
  border-radius: 4px;
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 13px;
}
.ta-profile-menu {
  z-index: 9990;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.25);
  min-width: 180px;
  overflow: hidden;
  animation: ta-pop .14s ease;
}
.ta-profile-menu__item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid var(--paper-line);
}
.ta-profile-menu__item:last-child { border-bottom: 0; }
.ta-profile-menu__item:hover { background: var(--paper-2); color: var(--navy); }

/* ============================================================
   Sidebar widgets (trending) — adopt nav-item visual
   ============================================================ */
.ta-widget-skel {
  height: 22px;
  margin: 2px 16px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 200% 100%;
  animation: ta-skel-bg 1.4s linear infinite;
  border-radius: 3px;
}
@keyframes ta-skel-bg {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ta-widget-empty {
  margin: 4px 16px 12px;
  padding: 8px 0;
  font-size: 10.5px;
  color: #6a85ab;
  font-style: italic;
  font-family: 'Consolas', monospace;
}
.nav-group [data-widget],
.nav-group[data-widget="trending"] {
  /* widgets sit inside an existing nav-group */
}
.ta-widget-h4--spaced { margin-top: 14px !important; }
.nav-item.ta-widget-item .lbl {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Profile page
   ============================================================ */
.ta-profile-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 30px 28px 60px;
}
.ta-profile-head {
  display: flex; gap: 18px; align-items: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 24px;
}
.ta-profile-head__avatar {
  width: 72px; height: 72px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 32px;
  flex-shrink: 0;
}
.ta-profile-head__handle {
  margin: 0 0 4px;
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ta-profile-head__bio {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.ta-profile-head__stats {
  display: flex; gap: 14px;
  margin-top: 6px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.ta-profile-head__stats b { color: var(--ink); font-weight: 700; }
.ta-profile-comments {
  display: flex; flex-direction: column; gap: 12px;
}
.ta-profile-comment {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 12px 14px;
}
.ta-profile-comment__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
}
.ta-profile-comment__target {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.ta-profile-comment__target:hover { text-decoration: underline; }
.ta-profile-comment__body {
  font-family: 'Verdana', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================================
   Settings panel
   ============================================================ */
.ta-settings-page {
  max-width: 540px;
  margin: 0 auto;
  padding: 30px 28px 60px;
}
.ta-settings-page h1 {
  margin: 0 0 6px;
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.ta-settings-page > p {
  font-size: 12.5px;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.ta-settings-form { display: flex; flex-direction: column; }

/* ============================================================
   Toasts
   ============================================================ */
.ta-toasts {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 9995;
  display: flex; flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.ta-toast {
  pointer-events: auto;
  background: #fff;
  border-left: 4px solid var(--red);
  padding: 10px 14px;
  border-radius: 3px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.2);
  font-family: 'Verdana', sans-serif;
  font-size: 12px;
  color: var(--ink);
  max-width: 320px;
  transition: opacity .3s, transform .3s;
}
.ta-toast--success { border-left-color: var(--green); }
.ta-toast--info { border-left-color: var(--navy); }
.ta-toast--error { border-left-color: var(--red); }
.ta-toast--out { opacity: 0; transform: translateX(20px); }

.ta-muted { color: var(--ink-3); font-style: italic; }

/* ============================================================
   Mobile overrides
   ============================================================ */
@media (max-width: 720px) {
  .ta-discussion {
    margin-left: -16px;
    margin-right: -16px;
    padding: 18px 16px 22px;
  }
  .ta-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  .ta-modal-card {
    width: 100%;
    border-radius: 0;
    padding: 24px 20px;
    max-width: none;
    align-self: center;
  }
  .ta-reactions__row { gap: 4px; }
  .ta-reaction-btn { padding: 5px 8px; }
  .ta-reaction-btn__lbl { display: none; }
  .ta-toasts { right: 8px; left: 8px; bottom: 8px; }
  .ta-toast { max-width: none; }
  .ta-discussion__head { gap: 6px; }
  .ta-discussion__title { font-size: 17px; }
}
