/* Responsive */
@media (min-width: 48rem) {
  .hero .container {
    text-align: left;
  }
  .hero .actions {
    justify-content: flex-start;
  }
  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 48rem) {
  nav {
    padding: 0 0.5rem;
  }
  .hero {
    padding: 3.5rem 0.5rem;
  }
  .socials svg {
    width: 28px;
    height: 28px;
  }
  button[type="submit"] {
    width: 100%;
  }
}

/* Small utilities */
.muted {
  color: var(--color-muted);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
