/* ─────────────────────────────────────────────────────────────
   PHASE 17 — Locked Post Public Preview Title
   Loaded globally via includes/css_general.blade.php.
   Styles ONLY the .pb-post-title element rendered in
   resources/views/includes/updates.blade.php (post cards on
   home feed, profile, post detail, explore, bookmarks, likes,
   purchases). No other selectors — safe everywhere.
   ───────────────────────────────────────────────────────────── */

.pb-post-title {
  font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
  margin-bottom: 0;
}

/* Dark mode (Playbooki 2.0): white title with a subtle green edge bar */
body .card-updates .pb-post-title {
  padding-left: 12px;
  border-left: 3px solid rgba(0, 200, 0, .75);
}

/* Links inside a title (Helper::linkText can produce them) inherit the title look */
.pb-post-title a {
  color: inherit !important;
  text-decoration: none;
}

@media (max-width: 600px) {
  .pb-post-title {
    font-size: 17px;
  }
}
