.blog-home-button {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #d71920, #a80f18);
  color: #fff;
  box-shadow: 0 8px 24px rgba(80, 0, 5, 0.28);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.blog-home-button:hover {
  background: linear-gradient(135deg, #e3232a, #bd121d);
  box-shadow: 0 10px 28px rgba(80, 0, 5, 0.34);
  color: #fff;
  transform: translateY(-2px);
}

.blog-home-button:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.32);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .blog-home-button {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 0 0.95rem;
    font-size: 0.9rem;
  }
}
