.dash {
  padding: 40px 0 72px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dash-aside {
  box-shadow: var(--shadow-sketch-soft);
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--stone-600);
}

.dash-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--stone-800);
}

.dash-nav a[aria-current="page"] {
  background: rgba(182, 199, 168, 0.7);
  border: 2px solid var(--stone-800);
  color: var(--stone-800);
}

.inventory-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  background: var(--stone-100);
  border: 2px solid var(--stone-800);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.inventory-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--stone-200);
}

.inventory-item__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.inventory-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid rgba(41, 37, 36, 0.16);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  font-size: 12px;
}

@media (min-width: 900px) {
  .dash-grid {
    grid-template-columns: 320px 1fr;
  }
}
