/* SBI Single Post Overrides
 * - Perubahan khusus halaman artikel
 */

/* === FIX: Author tooltip/label box appears on hover/focus (Foxiz ulightbox) ===
   Target: single post meta author lightbox
   Goal : prevent stray tooltip/label from rendering in the header area, without disabling main theme CSS.
*/
.single .single-meta .ulightbox-holder a.meta-author-url::before,
.single .single-meta .ulightbox-holder a.meta-author-url::after,
.single .single-meta .ulightbox-holder a.meta-author::before,
.single .single-meta .ulightbox-holder a.meta-author::after,
.single .single-meta .ulightbox a.author-avatar::before,
.single .single-meta .ulightbox a.author-avatar::after,
.single .single-meta a.meta-avatar::before,
.single .single-meta a.meta-avatar::after {
  content: none !important;
  display: none !important;
}

/* Hide any accidental text rendering inside avatar anchors (prevents small label-like box) */
.single .single-meta a.meta-avatar,
.single .single-meta .ulightbox a.author-avatar {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

/* Keep links accessible but avoid focus artifacts inside the popup header */
.single .single-meta .ulightbox a:focus {
  outline: none;
}
