.hero__logo {
  width: 400px;
  aspect-ratio: 1.34383;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.hero__subtitle {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 20px;
  color: rgb(255, 255, 255);
  text-align: center;
  white-space: pre-wrap;
}

.hero__download {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.hero__download:hover {
  text-decoration: underline;
}

.audio-player {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgb(255, 255, 255);
  border-radius: 1000px;
  padding: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.audio-player__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.audio-player__icon--pause {
  display: none;
}

.audio-player.is-playing .audio-player__icon--play {
  display: none;
}

.audio-player.is-playing .audio-player__icon--pause {
  display: block;
}

.hero__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.hero__social-link {
  display: block;
  flex-shrink: 0;
}

.hero__social-link--instagram {
  width: 54px;
  height: 48px;
}

.hero__social-link--instagram img {
  width: 100%;
  height: 100%;
}

.hero__social-link--telegram,
.hero__social-link--whatsapp {
  width: 48px;
  height: 48px;
}

.hero__social-link--telegram img,
.hero__social-link--whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 810px) and (max-width: 1199.98px) {
  .audio-player {
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 1200px) {
  .hero__subtitle {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 809.98px) {
  .hero__logo {
    width: 260px;
  }

  .hero__social {
    gap: 36px;
  }

  .hero__social-link--telegram,
  .hero__social-link--whatsapp {
    width: 40px;
    height: 40px;
  }
}
