/* /css/profile.css - minimal styling consistent with Blob theme */
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f5f7fb;
  color: #222;
}

.hl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: #1b2a4a;
  color: #fff;
}

.hl-nav a, .hl-nav span {
  color: #dfe7ff;
  text-decoration: none;
  margin-right: 0.75rem;
}

.hl-logo { font-weight: 700; margin-right: 1rem; }

.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}

.profile-sidebar { display:flex; flex-direction:column; gap:0.8rem; align-items:center; }

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #c7d2fe;
  background-size: cover;
  background-position: center;
}

.profile-meta { display:flex; gap:1rem; color:#6b7280; margin-top:0.5rem; }

.hl-btn {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.hl-btn.primary { background: #ffcf4a; color: #1b2a4a; }

.small { padding: 0.6rem; }

.file-list { list-style:none; padding:0; margin:0; width:100%; }
.file-list li { display:flex; justify-content:space-between; padding:0.35rem 0; border-bottom:1px solid #eef2ff; }

.profile-main { display:flex; flex-direction:column; gap:1rem; }

.about-card p { margin:0; color:#374151; }

.feed-list { display:flex; flex-direction:column; gap:0.6rem; }

.feed-item { padding:0.6rem; border-radius:8px; border:1px solid #e6eefc; background:#fbfdff; display:flex; justify-content:space-between; align-items:center; }

.feed-meta { color:#6b7280; font-size:0.9rem; }

.profile-actions { margin-top:0.6rem; }

.hl-footer { border-top:1px solid #e5e7f0; padding:0.8rem 1.25rem; color:#6b7280; display:flex; gap:0.75rem; }
@media (max-width:900px) {
  .profile-layout { grid-template-columns: 1fr; padding: 0.8rem; }
  .profile-sidebar { flex-direction:row; gap:0.6rem; align-items:flex-start; }
}
