.w76_header {
  --number-of-columns: 3;
}
.w76__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.w76__grid > * {
  flex: 0 0 calc((100% - 16px * (var(--number-of-columns) - 1)) / var(--number-of-columns));
}
.w76__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 16px;
}

@media screen and (min-width: 1024px) {
  .w76__link {
    height: 180px;
  }
}

.w76__link__img {
  display: block;
  width: 52px;
  height: auto;
  min-width: 0;
  max-height: 80%;
  object-fit: contain;
}


@media screen and (min-width: 1024px) {
  .w76__link__img {
    width: 150px;
  }
}