:root {
  color-scheme: light;
  --wb-bg: #f6f8fc;
  --wb-ink: #0a2540;
  --wb-muted: #53657d;
  --wb-faint: #6b7c93;
  --wb-panel: rgba(255, 255, 255, 0.92);
  --wb-panel-solid: #ffffff;
  --wb-line: #d9e2ef;
  --wb-line-strong: #b9c8dc;
  --wb-blue: #635bff;
  --wb-cyan: #00d4ff;
  --wb-green: #00a76f;
  --wb-amber: #b87503;
  --wb-shadow:
    0 18px 55px rgba(50, 50, 93, 0.12), 0 8px 20px rgba(15, 23, 42, 0.08);
  --wb-radius: 8px;
  --wb-font: "Soehne", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --wb-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body.workbench-page {
  min-height: 100vh;
  margin: 0;
  color: var(--wb-ink);
  background:
    linear-gradient(116deg, rgba(99, 91, 255, 0.14), transparent 34%),
    linear-gradient(152deg, rgba(0, 212, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #fbfcff 0%, var(--wb-bg) 48%, #eef3fa 100%);
  font: 14px/1.5 var(--wb-font);
  letter-spacing: 0;
}

.wb-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.wb-shell--console {
  width: min(1280px, calc(100% - 32px));
}

.wb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(185, 200, 220, 0.72);
  border-radius: var(--wb-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 28px rgba(50, 50, 93, 0.08);
  backdrop-filter: blur(18px);
}

.wb-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.wb-brand__mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wb-blue), var(--wb-cyan));
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.28);
}

.wb-brand strong,
.wb-brand small {
  display: block;
}

.wb-brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.wb-brand small {
  margin-top: 2px;
  color: var(--wb-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.wb-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wb-button,
.btn,
.wb-tabs a,
.wb-console-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #17375f;
  font: 700 0.82rem/1 var(--wb-font);
  text-decoration: none;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.wb-button,
.btn {
  padding: 0 14px;
}

.wb-button:hover,
.wb-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.wb-tabs a:hover,
.wb-tabs a:focus-visible,
.wb-console-nav a:hover,
.wb-console-nav a:focus-visible {
  border-color: var(--wb-line-strong);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(50, 50, 93, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.wb-button--primary,
.btn-primary,
.wb-tabs .is-active,
.wb-console-nav .is-active {
  border-color: transparent;
  background: #0a2540;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.18);
}

.wb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: end;
  margin: 48px 0 22px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(185, 200, 220, 0.76);
  border-radius: var(--wb-radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.58)
    ),
    linear-gradient(105deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 255, 0.12));
  box-shadow: var(--wb-shadow);
}

.wb-kicker,
.wb-chip,
.tag {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.09);
  color: #4237c8;
  font: 800 0.68rem/1 var(--wb-font);
  letter-spacing: 0;
  text-transform: uppercase;
}

.wb-kicker,
.wb-chip {
  padding: 5px 9px;
}

.tag {
  padding: 3px 8px;
  text-transform: lowercase;
}

.tag.ok {
  border-color: rgba(0, 167, 111, 0.24);
  background: rgba(0, 167, 111, 0.09);
  color: #007a52;
}

.tag.warn {
  border-color: rgba(184, 117, 3, 0.26);
  background: rgba(184, 117, 3, 0.1);
  color: var(--wb-amber);
}

.wb-hero h1 {
  max-width: 760px;
  margin: 16px 0 12px;
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.wb-hero p {
  max-width: 670px;
  margin: 0;
  color: var(--wb-muted);
  font-size: 1.05rem;
}

.wb-hero__panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(185, 200, 220, 0.78);
  border-radius: var(--wb-radius);
  background: rgba(255, 255, 255, 0.68);
}

.wb-hero__panel > div,
.kpi {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(217, 226, 239, 0.84);
  border-radius: var(--wb-radius);
  background: #ffffff;
}

.wb-metric__label,
.kpi .label,
.muted {
  color: var(--wb-muted);
}

.wb-hero__panel strong,
.kpi .value {
  font-size: 1.2rem;
  line-height: 1.15;
}

.wb-home-grid {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  gap: 18px;
}

.wb-card,
.card,
.wb-console-surface {
  border: 1px solid rgba(185, 200, 220, 0.78);
  border-radius: var(--wb-radius);
  background: var(--wb-panel);
  box-shadow: 0 10px 32px rgba(50, 50, 93, 0.08);
}

.wb-card,
.card {
  padding: 18px;
}

.wb-card h2,
.card h1,
.card h2,
.wb-workflows h2 {
  margin: 0 0 8px;
  line-height: 1.14;
}

.wb-card h2,
.wb-workflows h2 {
  font-size: 1.15rem;
}

.wb-map {
  align-self: start;
  position: sticky;
  top: 18px;
}

.wb-map__group {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--wb-line);
}

.wb-map__group h3 {
  margin: 0 0 8px;
  color: #17375f;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wb-map__group nav {
  display: grid;
  gap: 4px;
}

.wb-map__group a,
.plain-list a,
.card a,
td a {
  color: #4251d6;
  text-decoration: none;
}

.wb-map__group a {
  display: block;
  padding: 7px 8px;
  border-radius: 7px;
  color: #214263;
  font-weight: 650;
}

.wb-map__group a:hover,
.wb-map__group a:focus-visible {
  background: rgba(99, 91, 255, 0.08);
  color: #2f28ad;
  outline: none;
}

.wb-tabs,
.wb-console-nav,
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wb-tabs {
  margin-bottom: 20px;
}

.wb-tabs a,
.wb-console-nav a {
  padding: 0 12px;
}

.wb-lede,
.card p {
  margin: 0;
  color: var(--wb-muted);
}

.wb-workflow-grid,
.kpis,
.form-grid {
  display: grid;
  gap: 12px;
}

.wb-workflow-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.wb-workflow-card {
  display: grid;
  gap: 9px;
  min-height: 160px;
  padding: 16px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.wb-workflow-card:hover,
.wb-workflow-card:focus-visible {
  border-color: var(--wb-line-strong);
  box-shadow: 0 14px 30px rgba(50, 50, 93, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.wb-workflow-card h3,
.card h1,
.card h2 {
  margin: 0;
}

.wb-workflow-card p {
  margin: 0;
  color: var(--wb-muted);
}

.wb-console-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.wb-console-surface {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}

.wb-console-sidebar {
  align-self: start;
  position: sticky;
  top: 18px;
  padding: 12px;
  border: 1px solid rgba(185, 200, 220, 0.78);
  border-radius: var(--wb-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 32px rgba(50, 50, 93, 0.08);
}

.wb-console-overview,
.wb-console-nav-group a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  color: #214263;
  font-weight: 750;
  text-decoration: none;
}

.wb-console-overview:hover,
.wb-console-overview:focus-visible,
.wb-console-nav-group a:hover,
.wb-console-nav-group a:focus-visible {
  background: rgba(99, 91, 255, 0.08);
  color: #2f28ad;
  outline: none;
}

.wb-console-overview.is-active,
.wb-console-nav-group a.is-active {
  background: #0a2540;
  color: #ffffff;
}

.wb-console-nav-group {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--wb-line);
}

.wb-console-nav-group h2 {
  margin: 0 0 7px;
  color: var(--wb-muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wb-console-nav-group nav {
  display: grid;
  gap: 3px;
}

.wb-console-surface .card {
  grid-column: span 12;
  background: var(--wb-panel-solid);
  box-shadow: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.kpis {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-top: 12px;
}

.form-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 10px 0;
}

details {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: #f8fbff;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

label {
  display: grid;
  gap: 6px;
  color: var(--wb-muted);
  font-size: 0.78rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--wb-line-strong);
  border-radius: 7px;
  background: #ffffff;
  color: var(--wb-ink);
  font: inherit;
  padding: 8px 9px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wb-blue);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.14);
  outline: none;
}

.inline-form,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
}

.notice {
  margin-top: 10px;
  padding: 9px 11px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: #f8fbff;
}

.notice.ok {
  border-color: rgba(0, 167, 111, 0.28);
  background: rgba(0, 167, 111, 0.08);
  color: #006b48;
}

.notice.err,
.err {
  color: #b42318;
}

.notice.err {
  border-color: rgba(180, 35, 24, 0.28);
  background: rgba(180, 35, 24, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

th,
td {
  padding: 9px 7px;
  border-bottom: 1px solid var(--wb-line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--wb-muted);
  font-weight: 800;
}

hr {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid var(--wb-line);
}

code {
  font-family: var(--wb-mono);
  font-size: 0.78rem;
}

.plain-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 920px) {
  .wb-hero,
  .wb-home-grid,
  .wb-console-layout {
    grid-template-columns: 1fr;
  }

  .wb-map,
  .wb-console-sidebar {
    position: static;
  }

  .wb-topbar {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .wb-shell,
  .wb-shell--console {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .wb-topbar,
  .wb-actions {
    display: grid;
    width: 100%;
  }

  .wb-hero {
    margin-top: 24px;
    padding: 22px;
  }

  .wb-hero h1 {
    font-size: 2.35rem;
  }

  .wb-console-surface {
    padding: 10px;
  }
}

.wb-shell--wide {
  width: min(1280px, calc(100% - 32px));
}

.wb-page-body {
  margin-top: 16px;
}

.wb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(185, 200, 220, 0.72);
  color: var(--wb-muted);
  font-size: 0.78rem;
}

.wb-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wb-footer a {
  color: #4251d6;
  font-weight: 750;
  text-decoration: none;
}

.wb-page-body > .wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}

.wb-page-body > .wrap > h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  color: var(--wb-ink);
}

.wb-page-body .tiny {
  color: var(--wb-muted);
  font-size: 0.78rem;
}

.wb-page-body .mono {
  font-family: var(--wb-mono);
}

.wb-page-body .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 16px;
}

.wb-page-body .row,
.wb-page-body .row3 {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.wb-page-body .row {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.wb-page-body .row3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}

.wb-page-body .checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 14px;
}

.wb-page-body .checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wb-ink);
}

.wb-page-body .checks input {
  width: auto;
}

.wb-page-body .controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wb-page-body .controls button {
  max-width: 260px;
}

.wb-page-body button,
.wb-page-body input[type="button"],
.wb-page-body input[type="submit"] {
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  background: #0a2540;
  color: #ffffff;
  cursor: pointer;
  font: 800 0.82rem/1 var(--wb-font);
  padding: 10px 14px;
}

.wb-page-body button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #17375f;
}

.wb-page-body pre {
  min-height: 320px;
  margin: 0;
  overflow: auto;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: #f8fbff;
  color: var(--wb-ink);
  font: 0.78rem/1.45 var(--wb-mono);
  padding: 12px;
  white-space: pre-wrap;
}

.wb-page-body .ok {
  color: var(--wb-green);
}

.wb-page-body .bad,
.wb-page-body .err {
  color: #b42318;
}

.wb-page-body .warn {
  color: var(--wb-amber);
}

@media (max-width: 720px) {
  .wb-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.ops-hero,
.ops-section-head,
.ops-toolbar,
.ops-filter,
.ops-list-filter,
.ops-reader-toolbar,
.ops-list-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ops-hero {
  margin-bottom: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(0, 212, 255, 0.16), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(243, 248, 255, 0.92)
    );
}

.ops-hero h1 {
  margin: 6px 0 6px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.ops-hero p,
.ops-section-head p,
.ops-toolbar p,
.ops-folder-block p,
.ops-reader-head p,
.ops-reader-body p,
.ops-detail-card p {
  margin: 0;
  color: var(--wb-muted);
}

.ops-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 10px;
  min-width: min(100%, 360px);
}

.ops-hero__stats div,
.ops-live__card,
.ops-detail-card,
.ops-attachment-item {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
}

.ops-hero__stats span,
.ops-stream-channel label,
.ops-folder-block h2,
.ops-live__card h3,
.ops-thread-section {
  color: var(--wb-muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-hero__stats strong {
  display: block;
  margin-top: 3px;
  font-size: 1.5rem;
  line-height: 1;
}

.ops-live,
.ops-toolbar,
.ops-desk {
  margin-top: 16px;
}

.ops-live__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 12px;
  margin-top: 14px;
}

.ops-live__card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.ops-live__log {
  min-height: 150px;
  max-height: 250px;
  overflow: auto;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: #f8fbff;
  font-family: var(--wb-mono);
  padding: 10px;
}

.ops-stream-channel {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.ops-stream-channel label {
  grid-column: 1 / -1;
}

.ops-pill,
.ops-thread-row__status em {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 22px;
  border: 1px solid rgba(99, 91, 255, 0.2);
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: #2f28ad;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 850;
  padding: 0 8px;
}

.ops-filter,
.ops-list-filter {
  flex: 1;
}

.ops-filter {
  display: grid;
  grid-template-columns:
    minmax(260px, 1fr) minmax(130px, 0.25fr) minmax(150px, 0.25fr)
    auto;
}

.ops-desk {
  display: grid;
  grid-template-columns: 220px minmax(420px, 1fr) minmax(360px, 0.85fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  overflow: hidden;
}

.ops-sidebar,
.ops-list,
.ops-reader {
  min-height: 680px;
  padding: 14px;
}

.ops-sidebar,
.ops-list {
  border-right: 1px solid var(--wb-line);
}

.ops-chip-row,
.ops-folder-block,
.ops-list-tabs,
.ops-thread-table,
.ops-reader,
.ops-reader-head,
.ops-reader-body {
  display: grid;
  gap: 8px;
}

.ops-chip-row {
  grid-template-columns: 1fr 1fr;
  margin: 12px 0;
}

.ops-chip,
.ops-folder,
.ops-list-tabs span {
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  color: #214263;
  font-weight: 800;
  text-decoration: none;
  padding: 7px 10px;
}

.ops-folder {
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
}

.ops-chip.is-active,
.ops-folder.is-active,
.ops-list-tabs .is-active,
.ops-thread-row.is-active {
  background: #0a2540;
  color: #ffffff;
}

.ops-list-tabs {
  grid-template-columns: repeat(3, max-content);
  overflow: hidden;
  margin-bottom: 8px;
}

.ops-list-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  margin-bottom: 8px;
}

.ops-list-actions {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.ops-list-actions button,
.ops-reader-toolbar button {
  padding: 7px 10px;
}

.ops-thread-row {
  display: grid;
  grid-template-columns: 18px minmax(120px, 0.35fr) minmax(220px, 1fr) auto 52px;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--wb-line);
  color: inherit;
  text-decoration: none;
  padding: 8px 4px;
}

.ops-thread-row__check {
  width: 12px;
  height: 12px;
  border: 1px solid var(--wb-line-strong);
  border-radius: 4px;
  background: #ffffff;
}

.ops-thread-row__from,
.ops-thread-row__subject strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.ops-thread-row__subject {
  display: grid;
  min-width: 0;
}

.ops-thread-row__subject small,
.ops-thread-row__time {
  overflow: hidden;
  color: var(--wb-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-thread-row__status {
  display: flex;
  gap: 5px;
}

.ops-reader-toolbar {
  justify-content: flex-start;
}

.ops-reader-head {
  border-bottom: 1px solid var(--wb-line);
  padding-bottom: 12px;
}

.ops-reader-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.ops-detail-card,
.ops-reader-body {
  margin-top: 12px;
}

.ops-attachment-item {
  margin-top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .ops-live__grid,
  .ops-desk {
    grid-template-columns: 1fr;
  }

  .ops-sidebar,
  .ops-list {
    border-right: 0;
    border-bottom: 1px solid var(--wb-line);
  }

  .ops-sidebar,
  .ops-list,
  .ops-reader {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .ops-hero,
  .ops-section-head,
  .ops-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .ops-hero__stats,
  .ops-filter,
  .ops-thread-row,
  .ops-stream-channel {
    grid-template-columns: 1fr;
  }
}
