.hub-page h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
}

.hub-page .site-header {
  min-height: 66px;
}

.hub-page .primary-navigation a {
  padding: 9px 11px;
}

.workspace-intro {
  max-width: 980px;
  padding-block: clamp(66px, 7vw, 92px) clamp(48px, 5vw, 66px);
  border-bottom: 1px solid rgba(122, 163, 240, 0.12);
}

.workspace-intro h1 {
  max-width: 800px;
}

.workspace-intro .page-lead {
  max-width: 720px;
}

.workspace-intro .text-link {
  margin-top: 24px;
}

.workspace-section {
  padding-block: clamp(54px, 6.5vw, 88px);
}

.workspace-section + .workspace-section {
  border-top: 1px solid rgba(122, 163, 240, 0.1);
}

.workspace-section-head {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.workspace-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.workspace-section-head > div > p:last-child {
  max-width: 700px;
  margin-top: 12px;
  color: var(--color-text-muted);
}

.workspace-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 172, 255, 0.2);
  border-radius: var(--radius-medium);
  background: linear-gradient(145deg, rgba(15, 32, 56, 0.82), rgba(5, 14, 27, 0.93));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.inventory-list {
  overflow: hidden;
  border: 1px solid rgba(133, 172, 255, 0.2);
  border-radius: var(--radius-medium);
  background: rgba(6, 16, 30, 0.84);
}

.inventory-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(130px, 0.65fr) minmax(150px, 0.72fr) minmax(140px, 0.7fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 104px;
  padding: 19px 22px;
}

.inventory-row + .inventory-row {
  border-top: 1px solid rgba(133, 172, 255, 0.12);
}

.inventory-project {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inventory-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 7px;
  place-items: center;
  border: 1px solid rgba(57, 216, 255, 0.23);
  border-radius: 13px;
  background: rgba(5, 15, 28, 0.82);
  color: var(--color-cyan);
  object-fit: contain;
}

.inventory-icon svg,
.project-record-symbol svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.inventory-project strong,
.inventory-project span,
.inventory-cell strong,
.inventory-cell span {
  display: block;
}

.inventory-project strong {
  color: var(--color-text-soft);
  font-size: 0.96rem;
}

.inventory-project span,
.inventory-cell span {
  color: var(--color-text-muted);
  font-size: 0.73rem;
}

.inventory-cell strong {
  color: var(--color-text-soft);
  font-size: 0.82rem;
}

.inventory-cell span {
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-row .text-link {
  font-size: 0.82rem;
  white-space: nowrap;
}

.quiet-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  font-weight: 720;
}

.quiet-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-color, var(--color-cyan));
  box-shadow: 0 0 8px var(--status-color, var(--color-cyan));
  content: "";
}

.quiet-status.active {
  --status-color: var(--color-green);
}

.quiet-status.archived {
  --status-color: #9aaeff;
}

.quiet-status.closed {
  --status-color: var(--color-amber);
}

.hub-slim-footer {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px 42px;
  align-items: center;
  padding-block: 34px 26px;
}

.hub-slim-footer .site-brand img {
  width: 34px;
  height: 34px;
}

.hub-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: flex-end;
}

.hub-footer-links a {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 680;
  text-decoration-color: transparent;
}

.hub-footer-links a:hover {
  color: var(--color-text);
  text-decoration-color: var(--color-cyan);
}

@media (max-width: 980px) {
  .inventory-row {
    grid-template-columns: minmax(250px, 1.4fr) repeat(2, minmax(130px, 0.7fr)) auto;
  }

  .inventory-row .inventory-platform {
    display: none;
  }
}

@media (max-width: 760px) {
  .workspace-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .inventory-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .inventory-row .inventory-type,
  .inventory-row .inventory-platform {
    display: none;
  }

  .inventory-row .inventory-status {
    grid-column: 1;
  }

  .inventory-row > .text-link {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hub-slim-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hub-footer-links {
    justify-content: flex-start;
  }

  .hub-footer-links a {
    min-height: 40px;
    padding-block: 7px;
  }
}

@media (max-width: 520px) {
  .inventory-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .inventory-row > .text-link {
    grid-column: 1;
    grid-row: auto;
  }
}
