/* ==========================================================
   Logo Accent System
   Core v17+
   ----------------------------------------------------------
   Purpose:
   Generic commemorative accent displayed alongside the
   DJs Mobiles logo.

   The SVG asset may change throughout the year without
   requiring HTML modifications.

   Examples:
   - America 250
   - Site Anniversary
   - Full Moon
   - Seasonal Events

   Core owns the positioning.
   Assets define the appearance.
   ========================================================== */

.site-logo-wrap {
  position: relative;
  display: inline-block;
}

.site-logo {
  display: block;
}

.site-logo-accent {
  display: none; 
  position: absolute;
  inset: -10px -30px -10px -30px; /* extra room top/bottom/right/left */
  width: calc(100% + 60px);
  height: calc(100% + 20px);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
