/* assets/css/user_view.css */
.profile__header { display:flex; gap:16px; align-items:center; }
.profile__avatar img { border-radius:50%; object-fit:cover; width:128px; height:128px; border:1px solid #eee; }
.profile__meta h1 { margin:0 0 6px; }
.profile__row { color:#555; margin:4px 0; }

.gallery-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:12px;
}
.gallery-grid a { display:block; border:1px solid #eee; border-radius:12px; overflow:hidden; }
.gallery-grid img { display:block; width:100%; height:160px; object-fit:cover; }

.btn { display:inline-block; padding:8px 12px; border-radius:10px; text-decoration:none; background:#007aff; color:#fff; }
.btn.ghost { background:#f2f6ff; color:#0a49a7; }

h2, h3 { margin:0 0 8px; }
