/**
 * CoreV2 — Scroll reveal (hafif, blur yok)
 * Pending state only after JS arms the system → no FOUC if JS fails.
 */
/* Fail-open: içerik hiçbir zaman JS/IntersectionObserver bekleyerek gizlenmez. */
html.cv2-reveal-on [data-cv2-reveal-pending]{
  opacity:1;
  transform:none;
}
html.cv2-reveal-on [data-cv2-reveal-pending][data-cv2-reveal="text"]{
  transform:none;
}
html.cv2-reveal-on [data-cv2-reveal-done]{
  opacity:1;
  transform:none;
}
/* Yazı içeriği asla gizli kalmasın */
html.cv2-reveal-on .kbd-article,
html.cv2-reveal-on .kbd-article-body,
html.cv2-reveal-on .ys-content-card,
html.cv2-reveal-on .ys-content-body,
html.cv2-reveal-on .ys-main-content{
  opacity:1!important;
  transform:none!important;
}
@media (prefers-reduced-motion:reduce){
  html.cv2-reveal-on [data-cv2-reveal-pending],
  html.cv2-reveal-on [data-cv2-reveal-done]{
    opacity:1!important;
    transform:none!important;
  }
}
@media print{
  html.cv2-reveal-on [data-cv2-reveal-pending]{
    opacity:1!important;
    transform:none!important;
  }
}
