@import url("base.css");

/* Meadow Mint v2 hero: the complete logo gets its own space and never covers the game. */
.hero-art {
  min-height: 720px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 45px;
  gap: 14px;
}

.hero-art .logo {
  position: relative;
  inset: auto;
  width: min(520px, 95%);
  z-index: 3;
  filter: drop-shadow(0 18px 18px #123b3433);
}

.hero-art .phone {
  width: min(350px, 72%);
  transform: rotate(1.5deg);
}

.release > img {
  display: block;
  width: min(430px, 96%);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .hero-art {
    min-height: 760px;
    padding-top: 35px;
  }

  .hero-art .logo {
    width: min(520px, 96%);
  }

  .hero-art .phone {
    width: min(320px, 82%);
  }
}
