.home-view {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.home-hero {
  border: 4px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  position: relative;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 16, 28, 0.92) 0%, rgba(9, 16, 28, 0.72) 33%, rgba(9, 16, 28, 0.08) 68%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.08), rgba(9, 16, 28, 0.48));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-hero img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.home-hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  max-width: 560px;
  padding: clamp(24px, 6vw, 70px);
  position: relative;
  z-index: 1;
}

.home-hero-content h1 {
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.88;
  margin: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.home-hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.34;
  margin: 0;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero-actions .solid-button,
.home-hero-actions .ghost-button {
  min-height: 50px;
}

.tile-image {
  align-items: stretch;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.tile-image img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transition: transform 0.28s ease;
  width: 100%;
}

.game-tile:hover .tile-image img {
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .home-hero {
    min-height: 520px;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(9, 16, 28, 0.9), rgba(9, 16, 28, 0.34));
  }

  .home-hero-content {
    justify-content: end;
  }

  .home-hero-actions {
    flex-direction: column;
  }
}
