.manifest-list article {
  position: relative;
  grid-template-columns: minmax(78px, 0.42fr) minmax(145px, 0.9fr) minmax(180px, 1fr);
  align-items: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.manifest-list article:hover,
.manifest-list article:focus-within {
  border-color: rgba(168, 228, 107, 0.38);
  background: rgba(168, 228, 107, 0.06);
  transform: translateY(-1px);
}

.manifest-list article::after {
  position: absolute;
  right: 16px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  opacity: 0.42;
  content: "↗";
}

.profile-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: transparent;
  font-size: 0;
  white-space: nowrap;
}

.profile-link:focus-visible {
  border-radius: inherit;
  outline: 2px solid rgba(168, 228, 107, 0.75);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .manifest-list article {
    grid-template-columns: minmax(76px, 0.45fr) minmax(130px, 1fr);
  }

  .manifest-list article span {
    grid-column: 2 / -1;
  }
}

@media (max-width: 580px) {
  .manifest-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .manifest-list article span {
    grid-column: auto;
  }

  .manifest-list article::after {
    top: 16px;
    right: 16px;
  }
}
