/* POST CARD BASE — WHITE VERSION */
.post-card {
  background: #ffffff; /* solid white */
  color: #111827;      /* dark text for readability */
  padding: 1.2rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
}

/* POST HEADER */
.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.post-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
}

.post-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.post-header span {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* TEXT POST */
.post-text {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* IMAGE POST */
.post-image {
  width: 100%;
  border-radius: 14px;
  margin: 0.8rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* LISTENING POST */
.listening-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.25);
  padding: 0.8rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.album-art {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

/* POST ACTIONS */
.post-actions {
  display: flex;
  gap: 1.2rem;
}

.post-actions button {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.8;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.post-actions button:hover {
  opacity: 1;
  transform: scale(1.15);
}
