/* =========================================================
   CUSTOM CSS VARIABLES
   These variables are used throughout the modern responsive
   enhancements in site-mobile.css
   ========================================================= */
:root {
  /* Spacing Scale */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;       /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Breakpoints (for reference) */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-2xl: 1400px;
}

@media screen and (min-width: 576px) {
  .home-section-1 {
    padding: 150px !important; /* override .columnBlockLayout */
  }
}

      .pp-link-btn {
        border-radius: 9999px;
        padding: .25rem .75rem;
        line-height: 1.2;
        font-weight: 600;
        text-decoration: none !important;
      }
      /* if your theme supports CSS vars this will pick them up; fallback to orange */
      .btn-outline-primary.pp-link-btn {
        border-color: var(--bs-warning, #407EC9);
        color: var(--bs-warning, #407EC9);
      }
      .btn-outline-primary.pp-link-btn:hover,
      .btn-outline-primary.pp-link-btn:focus {
        background: var(--bs-warning, #407EC9);
        color: #fff;
        border-color: var(--bs-warning, #407EC9);
      }

      /* Hide sho_modifiedbyportaluser on multistep/basic forms */
      td[data-name="sho_modifiedbyportaluser"]{
      display: none !important;
      }
