/* =========================
   HOME HERO (PROFILE)
========================= */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px 10px;
}

/* Logo */
.profile img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-bottom: 28px;
}

/* Headline */
.profile h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

/* Subtext */
.profile p {
  max-width: 800px;
  margin-bottom: 28px;
}

/* Button spacing */
.profile .btn {
  margin: 8px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .profile {
    padding: 20px 16px 20px;
  }

  .profile h1 {
    font-size: 2rem;
  }
}