.icon-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark-grey);
  font-weight: 400;
  background-color: unset;
  border: none;
  font-size: 0.75rem;
}
.icon-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.icon-button:hover {
  color: var(--color-grey-1);
}
.icon-button:hover svg {
  fill: var(--color-grey-1);
}