.m-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%
}

.m-game-card__top-right {
  position: absolute;
  z-index: 9;
  top: 6px;
  right: 8px;
  opacity: 0
}

.m-game-card__top-right--mobile {
  opacity: 1
}

.m-game-main {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all .3s;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer
}

.m-game-main--shallow {
  border-radius: 14px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  flex-grow: initial
}

.m-game-main--grayscale img {
  filter: grayscale(100%)
}

.m-card-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark-grey-2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease-in-out
}

.m-card-thumb:before {
  content: "";
  display: block;
  padding-top: 100%
}

.m-game-list--mobile .m-card-thumb:after {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  background: var(--gradient-dark-grey-1-bottom)
}

.m-card-thumb-video,
.m-card-thumb-image,
.m-card-thumb-preview {
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.m-card-thumb-image {
  opacity: 0;
  transition: opacity .6s ease-in-out
}

.m-card-thumb-image.fadeIn {
  opacity: 1
}

.m-card-thumb-image--bottom {
  object-position: bottom
}

.m-cdn-image {
  width: 100%;
  height: 100%
}

.m-game-footer {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 8px 0 0;
  border-radius: 0 0 14px 14px
}

.m-game-list--mobile .m-game-footer {
  padding: 2px 0 0
}

.m-game-footer-left {
  position: relative;
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap
}

.m-game-footer-left:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: 100%;
  /*background:var(--gradient-dark-grey-0-right*/
}

.m-game-footer-left--large:after {
  background: var(--gradient-dark-grey-0-right)
}

.m-game-footer-provider {
  overflow: hidden;
  color: var(--color-mid-grey-2);
  text-overflow: ellipsis
}

.m-game-footer-name {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #919191;
  text-overflow: ellipsis;
  cursor: pointer
}