.live-game-card__wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  .live-game-card__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .live-game-card__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.live-game-card__item {
  border: 1px solid #CCCCCC;
  border-radius: 8px;
}
.live-game-card__image-holder img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
}
.live-game-card__image-holder h3 {
  color: #202a32;
  padding: 16px;
}
.live-game-card__image-holder:hover {
  text-decoration: none;
}
.live-game-card__content-holder {
  padding: 0 16px;
}
.live-game-card__title {
  font-weight: 700;
  text-align: left;
}
.live-game-card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.live-game__button {
  align-items: center;
  background: #2ecc71;
  border: 1px solid #2ecc71;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  padding: 12px 24px;
  margin-top: 36px;
}
.live-game__button:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .live-game__button {
    display: none;
  }
}