/* Blog loader base */
.blog-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  transition: opacity 0.35s ease;
}

.blog-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* Center box */
.blog-loader-box {
  text-align: center;
  width: 220px;
}

/* Reading progress line */
.reading-line {
  position: relative;
  width: 100%;
  height: 3px;
  background: #e5e7eb;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}

.reading-line::before {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: #111827;
  animation: readingMove 1.4s infinite ease-in-out;
  border-radius: 10px;
}

@keyframes readingMove {
  0% { left: -40%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Text */
.blog-loading-text {
  font-size: 14px;
  color: #374151;
  letter-spacing: 0.5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
