/* --------------------------------------------------
   PROFILE + WALL FEED
-------------------------------------------------- */
.profile-flex {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .profile-flex {
    grid-template-columns: 1fr;
  }
}

.profile-top {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}




.profile-name {
  font-size: 1.6rem;
  font-weight: 600;
}

.profile-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.status {
  margin-top: 0.7rem;
  padding: 0.6rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.profile-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* WALL FEED */
.wall-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.wall-post {
  display: flex;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.wall-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.1);
}

.wall-body {
  flex: 1;
}

.wall-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.wall-text {
  font-size: 0.9rem;
  line-height: 1.45;
}