.archive {
  width: auto;
  gap: 14px;
  padding: 14px 12px 14px 16px;
}

.archive time {
  width: 28px;
  flex: none;
  font-size: 23px;
}

.archive div {
  min-width: 0;
}

.archive b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archiveLink {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 12px;
  background: #f7f7f9;
  color: #a1a1aa;
  transition: background .18s, color .18s, transform .18s;
}

.archiveLink:hover {
  background: #fff3e5;
  color: var(--orange);
}

.archiveLink:active {
  transform: scale(.92);
}

.archiveLink svg {
  width: 15px;
  height: 15px;
}

.actions {
  display: flex;
  grid-template-columns: none;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #f4f4f5;
}

.actionIcon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f4f4f5;
  color: #71717a;
  transition: background .18s, color .18s, transform .18s;
}

.actionIcon:hover {
  background: #fff3e5;
  color: var(--orange);
}

.actionIcon:active {
  transform: scale(.92);
}

.actionIcon svg {
  width: 18px;
  height: 18px;
}

.actionIcon.danger {
  background: #fff5f5;
  color: #d93d42;
}

.actionIcon.danger:hover {
  background: #ffe9e9;
  color: #c62f34;
}

.round:focus-visible,
.actionIcon:focus-visible,
.archiveLink:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
