.workspace-app-shell {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  min-height: 100vh;
}

.workspace-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-self: start;
  height: 100vh;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #15110e;
  color: #fff;
}

.workspace-brand {
  display: grid;
  gap: 3px;
  padding: 4px 10px 24px;
}

.workspace-brand strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.workspace-brand span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.workspace-navigation {
  display: grid;
  gap: 6px;
}

.workspace-nav-label {
  padding: 0 10px 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
}

.workspace-nav-link {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.workspace-nav-link:hover,
.workspace-nav-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.workspace-nav-link.is-active {
  background: #e8f4ec;
  color: #24523b;
}

.workspace-nav-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.workspace-page {
  min-width: 0;
}

.workspace-page .board-shell {
  width: min(1180px, calc(100% - 36px));
}

@media (max-width: 980px) {
  .workspace-app-shell {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    position: static;
    z-index: 5;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .workspace-brand {
    display: block;
    padding: 0 12px 0 4px;
  }

  .workspace-brand strong {
    font-size: 14px;
  }

  .workspace-brand span,
  .workspace-nav-label {
    display: none;
  }

  .workspace-navigation {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
  }

  .workspace-nav-link {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .workspace-page .board-shell {
    width: min(calc(100% - 24px), 520px);
  }
}
