.trash-loading {
  min-height: 220px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
}
.trash-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.trash-summary > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.trash-summary small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.trash-summary strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
}
.trash-list {
  padding: 8px;
}
.trash-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
.trash-list article:last-child {
  border: 0;
}
.trash-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eee8dc;
  color: #71541a;
  font-weight: 800;
}
.trash-info {
  min-width: 0;
}
.trash-info > span,
.trash-info > small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.trash-info > strong {
  display: block;
  margin: 3px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trash-actions {
  display: flex;
  gap: 8px;
}
@media (max-width: 720px) {
  .trash-summary {
    grid-template-columns: 1fr;
  }
  .trash-list article {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .trash-actions {
    grid-column: 1/-1;
  }
  .trash-actions button {
    flex: 1;
  }
}
