.year-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  text-align: center;
  width: 100%;
}

.year-list li {
  height: 30px;
  line-height: 30px;
}

.year-list a {
  display: block;
  width: 100%;
  padding: 0.5rem 0 0.5rem 0;
  border: 1px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  color: #102445;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.year-list a:hover,
.year-list a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(60, 131, 246, 0.28);
  background: rgba(60, 131, 246, 0.1);
  width: 100%;
}
