/* Sicilian Goodness - Logo header stabile V48
   Mantiene il glow delicato ma rimuove qualsiasi variazione di scala/posizione. */
.siteHeader > .brand img {
  transform: none !important;
  transform-origin: 50% 50% !important;
  animation-name: sgLogoGlow !important;
  animation-duration: 3.2s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-delay: 0s !important;
  will-change: filter, opacity;
}

@keyframes sgLogoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(213,177,111,0));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(213,177,111,.72)) drop-shadow(0 0 18px rgba(182,138,69,.32));
    opacity: .96;
  }
}

@media (prefers-reduced-motion: reduce) {
  .siteHeader > .brand img {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
