/* ==========================================================================
   RS SECTION STYLE EXTENSION (.rs-posi-*, .rs-highlight)

   Ported 2026-09-11 from the Blunor theme's section-style extension
   (RS_Exten_Sec_Style_Setting, extensions/section-style.php). Applies to
   any Section/Container via the "RS Section Style" panel - see
   class-aidem-rs-section-style-extension.php's header docblock.

   var(--transition) replaced with its hardcoded fallback (all 0.3s ease
   0s) per the established pattern.

   Bug fix: the original only ever defined a CSS rule for .rs-posi-unset -
   the "Relative" position option (.rs-posi-relative) had no matching rule
   anywhere in the source and silently did nothing. The .rs-posi-relative
   rule below is new, added to make that option actually work.
   ========================================================================== */

.rs-highlight {
  transition: all 0.3s ease 0s !important;
}

.rs-posi-relative {
  position: relative !important;
}

.rs-posi-unset,
.rs-posi-unset.elementor-element-edit-mode .elementor-widget-navigation-menu {
  position: unset !important;
}
