/* ==== PROFILE VIEW ==== */

.profile-header {
  padding: 1rem;
  border-bottom: 2px solid var(--pp-black);
}
.profile-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--pp-black);
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.profile-name {
  font-weight: 700;
  margin-top: 0.5rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 1rem;
}
.profile-grid-item {
  aspect-ratio: 4 / 5;
  background: var(--pp-gray);
  position: relative;
  overflow: hidden;
}
.profile-grid-item img,
.profile-grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
