/* Joyrune – responsive game player */
.game-frame-wrap {
  position: relative;
  width: 100%;
  background: #020617;
  min-height: min(75vh, 520px);
  height: clamp(280px, 72vh, 820px);
}

.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  touch-action: manipulation;
}

.game-player:fullscreen .game-frame-wrap,
.game-player:-webkit-full-screen .game-frame-wrap {
  height: 100vh;
  min-height: 100vh;
  max-height: none;
}

@media (max-width: 640px) {
  .game-frame-wrap {
    min-height: min(68vh, 480px);
    height: clamp(260px, 65vh, 640px);
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .game-frame-wrap {
    height: calc(100vh - 120px);
    min-height: 200px;
  }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
