.digital {
  display: grid;
  gap: 30px;
  margin-top: 24px;
}

.digital__link {
  position: relative;
  line-height: 0;
}

.digital__link.play {
  height: unset;
}

.digital__poster {
  width: 100%;
  height: 53vw;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.digital__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  margin-top: 20px;
}

.digital__desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .digital {
    grid-template-columns: 1fr 1fr;
  }
  .digital__poster {
    height: 26.1vw;
    max-height: 450px;
  }
}

@media screen and (min-width: 1200px) {
  .digital {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .digital__poster {
    height: 200px;
  }
}
