/* -----------------------------------
   HEADER
----------------------------------- */
header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

header img.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
}

.meta h1 {
  margin: 0 0 8px;
  margin-top: 30px;
  font-size: 2.75rem;
}

.meta p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .header-left {
    flex-direction: column;
    gap: 16px;
  }

  header img.avatar {
    width: 120px;
    height: 120px;
  }
}