.project-row {
  grid-template-columns: 1.6fr .9fr 1fr;
}

.project-name:hover,
.project-name:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.completed-projects {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.completed-projects a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .project-row {
    grid-template-columns: 1fr auto;
  }

  .project-row .row-action {
    grid-column: 1 / -1;
  }
}
