/* --- V2K Social • Right Side Action Stack Fix --- */

/* Parent container */
.post {
  position: relative;
}

/* Right-side vertical stack */
.post-actions {
  position: absolute;
  right: 4vw;              /* distance from right edge */
  top: 50%;                /* vertical center */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;

  /* Remove full-width bars */
  width: auto;
  min-width: 65px;
}

/* Buttons */
.post-actions button {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Move bottom user/caption left like TikTok */
.post-footer {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 70%;
  color: #fff;
  text-shadow: 0 2px 4px #000;
}

/* Creator name */
.post-footer .username {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Caption + views */
.post-footer .caption {
  font-size: 16px;
}
