.hub {
  padding-top: 24px;
  padding-bottom: 64px;
}

.hub .hub__list {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.hub .hub__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  text-align: center;
}

.hub .hub__list li a:hover {
  color: var(--color-secondary);
}

.hub .hub__list li a img {
  width: 100px;
  height: 100px;
}

.hub .hub__button {
  top: calc(50% + 8px);
  width: 32px;
  height: 32px;
  color: #9ca3af;
  background-color: transparent;
  border-width: 0;
  transition: color 0.15s ease-in-out;
}

.hub .hub__button:hover {
  color: var(--color-secondary);
}

@media (min-width: 576px) {
  .hub .hub__list li a img {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 992px) {
  .hub .hub__list li a img {
    width: 150px;
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hub .hub__button {
    transition: none;
  }
}
