.graphLinkList {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(56px , auto);
}
.graphLinkList > li {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.graphLinkList > li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:480px) {
  .graphLinkList {
    grid-template-columns: 45% 45%;
    justify-content: center;
  }
  .graphLinkList > li {
    margin-bottom: 10px;
  }
}