/* ===== BIO PAGE ===== */
.bio-page {
  padding: 24px 16px 40px;
  text-align: center;
}

/* PROFILE */
.bio-header {
  margin-bottom: 24px;
}

.bio-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #eaeaea;
}

.bio-header h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.bio-username {
  font-size: 13px;
  color: #777;
  margin: 4px 0;
}

.bio-desc {
  font-size: 14px;
  color: #444;
  margin-top: 6px;
}

/* LINKS */
.bio-links {
  display: grid;
  gap: 12px;
}

.bio-link {
  display: block;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: #111;
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: all .2s ease;
}

.bio-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* FOOTER */
.bio-footer {
  margin-top: 32px;
  font-size: 12px;
  color: #888;
}

.bio-footer strong {
  color: #1B5E46;
}
