.home-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.home-header {
  display: grid;
  justify-items: center;
  margin-bottom: 48px;
  text-align: center;
}

.home-header p {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.game-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

a.game-card:hover {
  transform: translateY(-3px);
  border-color: #55585f;
  background: #1d1e21;
}

.game-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  content: "";
}

.game-icon {
  display: grid;
  width: 72px;
  height: 72px;
  align-self: start;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  font-style: normal;
  font-weight: 900;
}

.word-icon {
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.word-icon b,
.word-icon i {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-style: normal;
  font-size: 21px;
}

.word-icon b { background: var(--orange); }
.word-icon i { background: var(--green); }

.number-icon {
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 8px;
  background: transparent;
}

.number-icon b,
.number-icon i {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  font-style: normal;
  font-size: 22px;
}

.number-icon i { background: var(--yellow); color: #181818; }

.clue-icon {
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 8px;
  background: transparent;
}

.clue-icon b,
.clue-icon i,
.clue-icon em {
  display: grid;
  height: 100%;
  place-items: center;
  border-radius: 5px;
  font-style: normal;
}

.clue-icon b { background: var(--green); }
.clue-icon i { background: var(--yellow); color: #171717; }
.clue-icon em { background: var(--gray); }

.coming-icon {
  border: 1px dashed #4b4d52;
  background: transparent;
  color: #707278;
  font-size: 34px;
}

.game-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.eyebrow {
  margin: 2px 0 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.game-copy strong {
  font-size: 23px;
}

.game-copy small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.play-label {
  grid-column: 2;
  align-self: end;
  color: #e5e5e6;
  font-size: 14px;
  font-weight: 800;
}

.play-label b {
  margin-left: 5px;
  color: var(--green);
  font-size: 18px;
}

.coming-card {
  opacity: .58;
}

.coming-card .eyebrow {
  color: var(--muted);
}

@media (max-width: 760px) {
  .home-shell {
    padding-top: 34px;
  }

  .game-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-shell {
    width: min(100% - 20px, 980px);
  }

  .home-header {
    margin-bottom: 32px;
  }

  .home-header p {
    font-size: 15px;
  }

  .game-card {
    grid-template-columns: 58px 1fr;
    min-height: 174px;
    gap: 14px;
    padding: 18px;
  }

  .game-icon {
    width: 58px;
    height: 58px;
  }

  .game-copy strong {
    font-size: 20px;
  }
}
