.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  overflow: hidden;
}

.game-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--green-dark);
  width: 100%;
  height: 648px;
  padding: 20px;
  box-sizing: border-box;
}

.game-panel__portrait {
  width: 486px;
  height: 608px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-panel__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 614px;
  flex-shrink: 0;
}

.game-panel__landscape {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.game-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: #000;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  padding: 18px 60px;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.game-panel__btn:hover {
  filter: brightness(0.92);
}

.game-panel__text {
  width: 100%;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}

.game-panel__text p + p {
  margin-top: 1.3em;
}

.game-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1080px;
}

.game-summary__title {
  width: 100%;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--green-dark);
}

.game-summary__text {
  width: 100%;
  padding-left: 281px;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}

@media (max-width: 768px) {
  .game {
    gap: 20px;
    padding: 40px 20px;
  }

  .game-panel {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 20px;
  }

  .game-panel__portrait {
    width: 100%;
    height: 260px;
    order: 4;
  }

  .game-panel__main {
    width: 100%;
    align-items: stretch;
    gap: 20px;
    order: 1;
  }

  .game-panel__landscape {
    height: 300px;
  }

  .game-panel__btn {
    align-self: flex-start;
  }

  .game-summary {
    gap: 20px;
  }

  .game-summary__text {
    padding-left: 20px;
  }
}
