
.catalog-page .games__inner {
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.games__title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.games__row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.games__arrow {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.games__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.games__small-grid {
  display: grid;
  grid-template-columns: repeat(2, 135px);
  gap: 20px;
}


.catalog-page .journey__inner,
.game-page .journey__inner {
  align-items: flex-end;
}

.catalog-page .journey__content,
.game-page .journey__content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
  flex: 1;
  min-width: 0;
}

.journey__arrow {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.journey__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.journey__right {
  flex: 1;
  min-width: 0;
}

.journey__contacts-row {
  display: flex;
  gap: 15px;
}


.catalog-page .journey__image,
.game-page .journey__image {
  flex: 0 0 290px;
}

.catalog-page .journey__image img,
.game-page .journey__image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px;
}


.game-section {
  padding: 60px 0;
}

.game-section__content {
  max-width: 910px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.game-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.game-img-sm {
  width: 290px;
  height: 290px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.game-img-wide {
  width: 500px;
  height: 290px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}


@media (max-width: 768px) {
  .games__title { font-size: 32px; }

  .games__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .games__arrow { display: none; }

  .catalog-page .journey__content,
  .game-page .journey__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey__arrow { display: none; }

  .journey__contacts-row {
    flex-direction: column;
  }

  .catalog-page .journey__image,
  .game-page .journey__image {
    flex: none;
    width: 100%;
  }

  .catalog-page .journey__image img,
  .game-page .journey__image img {
    height: 392px;
  }

  .game-title { font-size: 32px; }

  .game-img-sm {
    width: 100%;
    max-width: 290px;
    height: 290px;
  }

  .game-img-wide {
    width: 100%;
    max-width: 330px;
    height: 192px;
  }
}
