/* Generic full-width list styles */
.list {
  width: 100%;
  display: block;
}

@media (min-width: 769px) {
  .list {
    width: 66%;
  }
}

.list-item {
  width: 100%;
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 0.25rem solid #dddddd;

  /* Hover sweep from bottom to top */
  background-image: linear-gradient(#dddddd, #dddddd);
  background-repeat: no-repeat;
  background-position: 0 100%; /* start at bottom */
  background-size: 100% 0;   /* collapsed */
  transition: background-size .7s ease;
}

.list-item:hover {
  background-size: 100% 100%; /* fill upwards */
}

/* Make link targets fill the row */
.list-item > a {
  display: block;
  width: 100%;
}

/* Desktop: increase vertical padding */
/* @media (min-width: 768px) {
  .list-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
} */
