/* Styled horizontal rule used in content areas */
#content.site-content hr.wp-block-separator {
  border: none;
  height: 1px;
  max-width: 200px;
  background-color: rgba(153, 111, 237, 0.35);
  /* #996fed with softness */
}

/* =========================================================
   RESPONSIVE VISIBILITY HELPERS
   ========================================================= */

/* Desktop ≥ 1025px */
@media (min-width: 1025px) {
  .hide-desktop {
    display: none !important;
  }

  .show-desktop {
    display: block !important;
  }
}

/* Tablet 641px – 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }

  .show-tablet {
    display: block !important;
  }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }
}

