/* RetroWebGames brand wordmark
   The visible logo is a dedicated transparent asset derived from the approved cover.
   It must always render in full: no background crop, cover sizing or overflow clipping. */

.hero-wordmark {
  display: block;
  box-sizing: border-box;
  width: min(100%, 790px);
  max-width: 100%;
  margin: 4px auto 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
}

.hero-wordmark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(101,231,255,.10));
}

@media (max-width: 420px) {
  .hero-wordmark {
    width: 100%;
    margin-top: 6px;
  }
}
