.template-page-nav {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.template-back-link,
.template-home-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #101828;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(12px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.template-back-link {
  border-radius: 999px;
}

.template-back-link::before {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.template-home-link {
  position: relative;
  justify-content: center;
  border-radius: 999px;
}

.template-back-link:hover,
.template-home-link:hover {
  background: #101828;
  color: #ffffff;
}

@media (max-width: 520px) {
  .template-page-nav {
    top: 14px;
    left: 14px;
    gap: 6px;
  }

  .template-back-link,
  .template-home-link {
    min-height: 38px;
    font-size: 0.82rem;
    padding: 0 12px;
  }
}
