.block--game_buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0;
  margin-top: 45px;
}
@media (max-width: 575px) {
  .block--game_buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.block--game_buttons .button {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.block--game_buttons .button > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.block--game_buttons .button .image_wrapper {
  position: relative;
  height: 0;
  padding-top: 60%;
}
.block--game_buttons .button .image_wrapper > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}
.block--game_buttons span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00c384;
  width: 100%;
  color: white;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: -4px;
  padding: 8px;
  height: 100%;
}
