.sts-games-home {
  padding: var(--sts-section-pad) 0;
}

.sts-games-home-card {
  background: linear-gradient(135deg, #8b70ff 0%, #6e5bd8 100%);
  border-radius: var(--sts-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.sts-games-home-image {
  position: relative;
  overflow: hidden;
}

.sts-games-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sts-games-home-content {
  padding: 56px 56px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #fff;
}

.sts-games-home-title {
  font-size: 40px;
  margin: 0;
}

.sts-games-home-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 420px;
  margin: 0;
}

.sts-games-home .sts-btn {
  background: #fff;
  color: var(--sts-primary-2);
  margin-top: 8px;
  align-self: flex-start;
}

.sts-games-home .sts-btn .arrow {
  background: rgba(110, 91, 216, 0.18);
}

.sts-games-home .sts-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 880px) {
  .sts-games-home-card {
    grid-template-columns: 1fr;
  }

  .sts-games-home-content {
    padding: 32px 28px 36px;
  }
  .sts-games-home-title {
    font-size: 28px;
  }
}
