/* Injected on /blog/* HTML (see web.config outbound rule) */
.hj-blog-home {
  position: fixed;
  z-index: 2147483000;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #5867aa, #6b7bc4);
  box-shadow: 0 8px 22px rgba(88, 103, 170, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hj-blog-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88, 103, 170, 0.42);
  color: #fff;
}
.hj-blog-home::before {
  content: "←";
  font-weight: 800;
  opacity: 0.9;
}
@media (max-width: 520px) {
  .hj-blog-home {
    top: auto;
    bottom: 16px;
    right: 16px;
    font-size: 13px;
    padding: 9px 14px;
  }
}
