/* home.css */

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero__media {
  flex: 0 0 66.666vh;
  height: 66.666vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero__video,
.hero__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}

.hero__label {
  font-size: clamp(1.4rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fd1b4c;
  margin-bottom: 0.4rem;
  line-height: 1.05;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero__label {
    font-size: clamp(1.2rem, 6vw, 2rem);
    white-space: normal;
  }
}
