/* Fixed hex sticker – right side */
.hexsticker-fixed {
  position: fixed;
  right: max(1rem, calc(50% - 560px));  /* clears the ~860px content + some margin */
  top: 5rem;
  width: 160px;
  z-index: 999;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.hexsticker-fixed:hover { opacity: 1; }

@media (max-width: 1200px) {
  .hexsticker-fixed { display: none; }
}
