/*
  Template Name: Persona Zone HubSpot Theme
  Description: Professional HubSpot theme aligned with Persona Zone brand identity
  Version: 2.0
  Author: Persona Zone Development Team
*/

/* ==========================================================================
   PERSONA ZONE CSS ARCHITECTURE
   Order: Tokens → Base → Components → Utilities
   ========================================================================== */

/* Design Tokens & Variables */
/**
 * Persona Zone Design Tokens
 * CSS Custom Properties generated from HubSpot theme settings
 * 
 * This file establishes the design system foundation with tokens for:
 * - Brand colors (primary purple, semantic colors)
 * - Typography (Montserrat headings, Open Sans body)
 * - Spacing scale and layout
 * - Border radius and shadows
 * - Component-specific tokens
 */

:root {
  /* ==========================================================================
     PERSONA ZONE BRAND COLORS
     ========================================================================== */
  
  /* Primary Brand Colors */
  --pz-color-primary: #7367F0;
  --pz-color-secondary: #081d43;
  
  /* Semantic Colors */
  --pz-color-success: #0ba077;
  --pz-color-warning: #6582ed;
  --pz-color-error: #ed7265;
  
  /* Text Colors */
  --pz-color-text-primary: #707070;
  --pz-color-text-muted: #b1b1b1;
  
  /* Surface Colors */
  --pz-color-background: #ffffff;
  --pz-color-surface: #f4f7fa;
  
  /* Derived Color Variations */
  --pz-color-primary-hover: #5f4fd8; /* Darker primary for hover states */
  --pz-color-primary-light: rgba(115, 103, 240, 0.1); /* Light primary for backgrounds */
  --pz-color-primary-border: rgba(115, 103, 240, 0.2); /* Subtle border color */
  
  /* ==========================================================================
     TYPOGRAPHY
     ========================================================================== */
  
  /* Font Families */
  --pz-font-heading: Montserrat, "Montserrat", sans-serif;
  --pz-font-body: Open Sans, "Open Sans", sans-serif;
  
  /* Font Sizes (Responsive Scale) */
  --pz-font-size-base: 16px;
  --pz-font-size-xs: 0.75rem;   /* 12px */
  --pz-font-size-sm: 0.875rem;  /* 14px */
  --pz-font-size-md: 1rem;      /* 16px - base */
  --pz-font-size-lg: 1.125rem;  /* 18px */
  --pz-font-size-xl: 1.25rem;   /* 20px */
  --pz-font-size-2xl: 1.5rem;   /* 24px */
  --pz-font-size-3xl: 1.875rem; /* 30px */
  --pz-font-size-4xl: 2.25rem;  /* 36px */
  --pz-font-size-5xl: 3rem;     /* 48px */
  
  /* Font Weights */
  --pz-font-weight-normal: 400;
  --pz-font-weight-medium: 500;
  --pz-font-weight-semibold: 600;
  --pz-font-weight-bold: 700;
  
  /* Line Heights */
  --pz-line-height-tight: 1.2;
  --pz-line-height-normal: 1.5;
  --pz-line-height-relaxed: 1.75;
  
  /* ==========================================================================
     SPACING & LAYOUT
     ========================================================================== */
  
  /* Container Widths */
  --pz-container-max: 1200px;
  --pz-container-sm: 640px;
  --pz-container-md: 768px;
  --pz-container-lg: 1024px;
  --pz-container-xl: 1280px;
  
  /* Spacing Scale */
  --pz-space-1: 0.25rem;   /* 4px */
  --pz-space-2: 0.5rem;    /* 8px */
  --pz-space-3: 0.75rem;   /* 12px */
  --pz-space-4: 1rem;      /* 16px */
  --pz-space-5: 1.25rem;   /* 20px */
  --pz-space-6: 1.5rem;    /* 24px */
  --pz-space-8: 2rem;      /* 32px */
  --pz-space-10: 2.5rem;   /* 40px */
  --pz-space-12: 3rem;     /* 48px */
  --pz-space-16: 4rem;     /* 64px */
  --pz-space-20: 5rem;     /* 80px */
  --pz-space-24: 6rem;     /* 96px */
  --pz-space-32: 8rem;     /* 128px */
  
  /* Section & Element Spacing (From theme settings) */
  --pz-section-spacing: 100px;
  --pz-element-spacing: 30px;
  
  /* ==========================================================================
     BORDERS & RADII
     ========================================================================== */
  
  /* Border Radius */
  --pz-radius-sm: 4px;
  --pz-radius-md: 8px;
  --pz-radius-lg: 30px;
  --pz-radius-full: 9999px;
  
  /* Border Widths */
  --pz-border-width-thin: 1px;
  --pz-border-width-normal: 2px;
  --pz-border-width-thick: 4px;
  
  /* ==========================================================================
     SHADOWS
     ========================================================================== */
  
  --pz-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --pz-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --pz-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --pz-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* ==========================================================================
     COMPONENT TOKENS
     ========================================================================== */
  
  /* Buttons */
  --pz-btn-padding-y: 0.75rem;
  --pz-btn-padding-x: 1.875rem; /* 30px - matching Sanjoob.Site */
  --pz-btn-padding-sm-y: 0.5rem;
  --pz-btn-padding-sm-x: 1rem;
  --pz-btn-padding-lg-y: 1rem;
  --pz-btn-padding-lg-x: 2.5rem;
  --pz-btn-border-radius: var(--pz-radius-lg);
  --pz-btn-font-weight: var(--pz-font-weight-semibold);
  
  /* Links */
  --pz-link-color: var(--pz-color-primary);
  --pz-link-hover-color: var(--pz-color-primary-hover);
  --pz-link-decoration: underline;
  
  /* Forms */
  --pz-form-input-bg: var(--pz-color-background);
  --pz-form-input-border: #d1d6dc;
  --pz-form-input-border-focus: var(--pz-color-primary);
  --pz-form-input-padding-y: 0.75rem;
  --pz-form-input-padding-x: 1rem;
  --pz-form-input-border-radius: var(--pz-radius-sm);
  
  /* Cards */
  --pz-card-bg: var(--pz-color-background);
  --pz-card-border: rgba(0, 0, 0, 0.1);
  --pz-card-border-radius: var(--pz-radius-md);
  --pz-card-padding: var(--pz-space-6);
  --pz-card-shadow: var(--pz-shadow-sm);
  --pz-card-shadow-hover: var(--pz-shadow-md);
  
  /* Header */
  --pz-header-bg: var(--pz-color-background);
  --pz-header-padding-y: var(--pz-space-4);
  --pz-header-shadow: var(--pz-shadow-sm);
  
  /* ==========================================================================
     BREAKPOINTS (for reference - use in media queries)
     ========================================================================== */
  
  /* These are not CSS variables but comments for reference */
  /* --breakpoint-sm: 640px; */
  /* --breakpoint-md: 768px; */
  /* --breakpoint-lg: 1024px; */
  /* --breakpoint-xl: 1280px; */
  /* --breakpoint-2xl: 1536px; */
}

/* ==========================================================================
   DARK MODE SUPPORT (Future Enhancement)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  :root {
    /* Future: Add dark mode color overrides */
    /* --pz-color-background: #1a1a1a; */
    /* --pz-color-surface: #2a2a2a; */
  }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  :root {
    --pz-transition-duration: 0ms;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    --pz-transition-duration: 150ms;
    --pz-transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  :root {
    --pz-color-primary: #000;
    --pz-color-secondary: #666;
    --pz-shadow-sm: none;
    --pz-shadow-md: none;
    --pz-shadow-lg: none;
  }
}

/* CSS Reset, Normalization & Base Styles */
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}
/**
 * Persona Zone Base Styles
 * 
 * Foundational styles that apply globally:
 * - CSS Reset and normalization
 * - Typography scale and base styles
 * - Global element styles
 * - Container and layout foundations
 */

/* ==========================================================================
   CSS RESET & NORMALIZATION
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--pz-font-body);
  font-size: var(--pz-font-size-base);
  line-height: var(--pz-line-height-normal);
  color: var(--pz-color-text-primary);
  background-color: var(--pz-color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  padding: 0;
  font-weight: var(--pz-font-weight-normal);
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY SCALE
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pz-font-heading);
  font-weight: var(--pz-font-weight-semibold);
  line-height: var(--pz-line-height-tight);
  color: var(--pz-color-secondary);
  margin-bottom: var(--pz-space-4);
}

h1 {
  font-size: var(--pz-font-size-5xl);
  font-weight: var(--pz-font-weight-bold);
  margin-bottom: var(--pz-space-6);
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--pz-font-size-4xl);
  }
}

h2 {
  font-size: var(--pz-font-size-4xl);
  margin-bottom: var(--pz-space-5);
}

@media (max-width: 768px) {
  h2 {
    font-size: var(--pz-font-size-3xl);
  }
}

h3 {
  font-size: var(--pz-font-size-3xl);
}

h4 {
  font-size: var(--pz-font-size-2xl);
}

h5 {
  font-size: var(--pz-font-size-xl);
  font-weight: var(--pz-font-weight-medium);
}

h6 {
  font-size: var(--pz-font-size-lg);
  font-weight: var(--pz-font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Body Text */
p {
  font-size: var(--pz-font-size-md);
  line-height: var(--pz-line-height-normal);
  margin-bottom: var(--pz-space-4);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--pz-font-size-xl);
  font-weight: var(--pz-font-weight-normal);
  line-height: var(--pz-line-height-relaxed);
  color: var(--pz-color-text-muted);
}

.text-small {
  font-size: var(--pz-font-size-sm);
}

.text-xs {
  font-size: var(--pz-font-size-xs);
}

/* ==========================================================================
   LINKS
   ========================================================================== */

a {
  color: var(--pz-link-color);
  text-decoration: var(--pz-link-decoration);
  transition: color var(--pz-transition-duration) var(--pz-transition-timing);
}

a:hover,
a:focus {
  color: var(--pz-link-hover-color);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
  border-radius: var(--pz-radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  a {
    transition: none;
  }
}

/* ==========================================================================
   LISTS
   ========================================================================== */

ul, ol {
  margin-bottom: var(--pz-space-4);
  padding-left: var(--pz-space-6);
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: var(--pz-space-2);
}

li:last-child {
  margin-bottom: 0;
}

/* Unstyled Lists */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  margin-bottom: var(--pz-space-3);
}

/* Inline Lists */
.list-inline {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--pz-space-4);
}

.list-inline li {
  margin-bottom: 0;
}

/* ==========================================================================
   IMAGES & MEDIA
   ========================================================================== */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin-bottom: var(--pz-space-6);
}

figcaption {
  font-size: var(--pz-font-size-sm);
  color: var(--pz-color-text-muted);
  text-align: center;
  margin-top: var(--pz-space-2);
}

/* ==========================================================================
   CODE & PREFORMATTED TEXT
   ========================================================================== */

code, kbd, samp {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
  background-color: var(--pz-color-surface);
  color: var(--pz-color-secondary);
  padding: var(--pz-space-1) var(--pz-space-2);
  border-radius: var(--pz-radius-sm);
}

pre {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  background-color: var(--pz-color-surface);
  color: var(--pz-color-secondary);
  padding: var(--pz-space-4);
  border-radius: var(--pz-radius-md);
  overflow-x: auto;
  margin-bottom: var(--pz-space-6);
  border-left: 4px solid var(--pz-color-primary);
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ==========================================================================
   BLOCKQUOTES
   ========================================================================== */

blockquote {
  font-size: var(--pz-font-size-lg);
  font-style: italic;
  line-height: var(--pz-line-height-relaxed);
  margin: var(--pz-space-8) 0;
  padding: var(--pz-space-6) var(--pz-space-8);
  background-color: var(--pz-color-surface);
  border-left: 4px solid var(--pz-color-primary);
  border-radius: var(--pz-radius-md);
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote footer {
  font-size: var(--pz-font-size-sm);
  color: var(--pz-color-text-muted);
  font-style: normal;
  margin-top: var(--pz-space-3);
}

blockquote footer::before {
  content: "— ";
}

/* ==========================================================================
   HORIZONTAL RULES
   ========================================================================== */

hr {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: var(--pz-space-8) 0;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--pz-container-max);
  margin: 0 auto;
  padding: 0 var(--pz-space-4);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--pz-space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--pz-space-8);
  }
}

/* Container Sizes */
.container-sm {
  max-width: var(--pz-container-sm);
}

.container-md {
  max-width: var(--pz-container-md);
}

.container-lg {
  max-width: var(--pz-container-lg);
}

.container-xl {
  max-width: var(--pz-container-xl);
}

/* Full Width Container */
.container-fluid {
  width: 100%;
  padding: 0 var(--pz-space-4);
}

/* ==========================================================================
   SECTIONS & SPACING
   ========================================================================== */

section {
  padding: var(--pz-section-spacing) 0;
}

.section-sm {
  padding: calc(var(--pz-section-spacing) * 0.5) 0;
}

.section-lg {
  padding: calc(var(--pz-section-spacing) * 1.5) 0;
}

/* ==========================================================================
   ACCESSIBILITY & FOCUS MANAGEMENT
   ========================================================================== */

/* Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--pz-color-secondary);
  color: var(--pz-color-background);
  padding: var(--pz-space-2) var(--pz-space-4);
  text-decoration: none;
  border-radius: var(--pz-radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Visible for better keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
  border-radius: var(--pz-radius-sm);
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  p, blockquote, ul, ol {
    orphans: 2;
    widows: 2;
  }

  blockquote, ul, ol {
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

/* Layout Objects */


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Persona Zone Components */
/**
 * Persona Zone Button Components
 * 
 * Button styles matching the Persona Zone brand:
 * - Primary purple buttons with rounded corners
 * - Secondary outline styles
 * - Size variations (small, medium, large)
 * - Icon button support
 * - Loading and disabled states
 * - Accessibility features
 */

/* ==========================================================================
   BASE BUTTON STYLES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pz-space-2);
  
  /* Typography */
  font-family: var(--pz-font-body);
  font-size: var(--pz-font-size-md);
  font-weight: var(--pz-btn-font-weight);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  
  /* Spacing & Layout */
  padding: var(--pz-btn-padding-y) var(--pz-btn-padding-x);
  border: var(--pz-border-width-normal) solid transparent;
  border-radius: var(--pz-btn-border-radius);
  
  /* Interaction */
  cursor: pointer;
  user-select: none;
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
  
  /* Accessibility */
  position: relative;
  vertical-align: middle;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* Button Focus States */
.btn:focus {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
  outline: none;
}

/* Disabled State */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   BUTTON VARIANTS
   ========================================================================== */

/* Primary Button - Main Persona Zone Purple */
.btn-primary {
  background-color: var(--pz-color-primary);
  border-color: var(--pz-color-primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--pz-color-primary-hover);
  border-color: var(--pz-color-primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--pz-shadow-sm);
}

/* Secondary Button - Outline Style */
.btn-secondary {
  background-color: transparent;
  border-color: var(--pz-color-secondary);
  color: var(--pz-color-secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--pz-color-secondary);
  border-color: var(--pz-color-secondary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--pz-shadow-sm);
}

/* Success Button */
.btn-success {
  background-color: var(--pz-color-success);
  border-color: var(--pz-color-success);
  color: #ffffff;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #0a8f6b;
  border-color: #0a8f6b;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

/* Warning Button */
.btn-warning {
  background-color: var(--pz-color-warning);
  border-color: var(--pz-color-warning);
  color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus {
  background-color: #5674d9;
  border-color: #5674d9;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

/* Error/Danger Button */
.btn-error,
.btn-danger {
  background-color: var(--pz-color-error);
  border-color: var(--pz-color-error);
  color: #ffffff;
}

.btn-error:hover,
.btn-error:focus,
.btn-danger:hover,
.btn-danger:focus {
  background-color: #e85d4f;
  border-color: #e85d4f;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

/* Ghost/Minimal Button */
.btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--pz-color-primary);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background-color: var(--pz-color-primary-light);
  border-color: var(--pz-color-primary-border);
  color: var(--pz-color-primary);
}

/* Light Button */
.btn-light {
  background-color: var(--pz-color-surface);
  border-color: var(--pz-color-surface);
  color: var(--pz-color-text-primary);
}

.btn-light:hover,
.btn-light:focus {
  background-color: #e8ebef;
  border-color: #e8ebef;
  color: var(--pz-color-text-primary);
  transform: translateY(-1px);
  box-shadow: var(--pz-shadow-md);
}

/* ==========================================================================
   BUTTON SIZES
   ========================================================================== */

/* Small Button */
.btn-sm {
  padding: var(--pz-btn-padding-sm-y) var(--pz-btn-padding-sm-x);
  font-size: var(--pz-font-size-sm);
  border-radius: var(--pz-radius-md);
}

/* Large Button */
.btn-lg {
  padding: var(--pz-btn-padding-lg-y) var(--pz-btn-padding-lg-x);
  font-size: var(--pz-font-size-lg);
  font-weight: var(--pz-font-weight-bold);
}

/* Extra Large Button */
.btn-xl {
  padding: 1.25rem 3rem;
  font-size: var(--pz-font-size-xl);
  font-weight: var(--pz-font-weight-bold);
}

/* ==========================================================================
   BUTTON SHAPES & STYLES
   ========================================================================== */

/* Block Button (Full Width) */
.btn-block {
  display: flex;
  width: 100%;
}

/* Rounded Button */
.btn-rounded {
  border-radius: var(--pz-radius-full);
}

/* Square Button */
.btn-square {
  aspect-ratio: 1;
  padding: var(--pz-btn-padding-y);
}

.btn-square.btn-sm {
  padding: var(--pz-btn-padding-sm-y);
}

.btn-square.btn-lg {
  padding: var(--pz-btn-padding-lg-y);
}

/* ==========================================================================
   ICON BUTTONS
   ========================================================================== */

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pz-space-2);
}

.btn-icon-only {
  padding: var(--pz-btn-padding-y);
  aspect-ratio: 1;
}

.btn-icon-only.btn-sm {
  padding: var(--pz-btn-padding-sm-y);
}

.btn-icon-only.btn-lg {
  padding: var(--pz-btn-padding-lg-y);
}

/* Icon positioning */
.btn .icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.btn .icon-left {
  margin-right: var(--pz-space-1);
  margin-left: calc(var(--pz-space-1) * -1);
}

.btn .icon-right {
  margin-left: var(--pz-space-1);
  margin-right: calc(var(--pz-space-1) * -1);
}

/* ==========================================================================
   LOADING STATE
   ========================================================================== */

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: btn-loading-spin 1s linear infinite;
}

@keyframes btn-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-loading::after {
    animation: none;
  }
  
  .btn-loading::after {
    content: "...";
    border: none;
    width: auto;
    height: auto;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ==========================================================================
   BUTTON GROUPS
   ========================================================================== */

.btn-group {
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
  border-radius: 0;
}

.btn-group > .btn:not(:last-child) {
  border-right: none;
}

.btn-group > .btn:first-child {
  border-radius: var(--pz-btn-border-radius) 0 0 var(--pz-btn-border-radius);
}

.btn-group > .btn:last-child {
  border-radius: 0 var(--pz-btn-border-radius) var(--pz-btn-border-radius) 0;
}

.btn-group > .btn:only-child {
  border-radius: var(--pz-btn-border-radius);
}

.btn-group > .btn:hover,
.btn-group > .btn:focus {
  z-index: 1;
}

/* Vertical Button Group */
.btn-group-vertical {
  flex-direction: column;
  align-items: stretch;
}

.btn-group-vertical > .btn {
  width: 100%;
  border-radius: 0;
  border-bottom: none;
}

.btn-group-vertical > .btn:first-child {
  border-radius: var(--pz-btn-border-radius) var(--pz-btn-border-radius) 0 0;
}

.btn-group-vertical > .btn:last-child {
  border-radius: 0 0 var(--pz-btn-border-radius) var(--pz-btn-border-radius);
  border-bottom: var(--pz-border-width-normal) solid;
}

.btn-group-vertical > .btn:only-child {
  border-radius: var(--pz-btn-border-radius);
  border-bottom: var(--pz-border-width-normal) solid;
}

/* ==========================================================================
   RESPONSIVE BEHAVIOR
   ========================================================================== */

@media (max-width: 640px) {
  .btn-responsive {
    width: 100%;
    display: flex;
  }
  
  .btn-group-responsive {
    flex-direction: column;
  }
  
  .btn-group-responsive > .btn {
    width: 100%;
    border-radius: var(--pz-btn-border-radius);
    border-right: var(--pz-border-width-normal) solid;
    margin-bottom: var(--pz-space-2);
  }
  
  .btn-group-responsive > .btn:last-child {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   HIGH CONTRAST MODE SUPPORT
   ========================================================================== */

@media (prefers-contrast: high) {
  .btn {
    border-width: var(--pz-border-width-thick);
  }
  
  .btn:focus {
    outline-width: 3px;
  }
}
/**
 * Persona Zone Form Components
 * 
 * Form styles that align with the Persona Zone brand:
 * - Clean input fields with focus states
 * - Validation styling (success, warning, error)
 * - Checkbox and radio button customization
 * - Form layout and spacing
 * - Accessibility features
 */

/* ==========================================================================
   FORM LAYOUT & STRUCTURE
   ========================================================================== */

form {
  margin-bottom: var(--pz-space-6);
}

.form-group {
  margin-bottom: var(--pz-space-5);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pz-space-4);
}

.form-col {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
  
  .form-col {
    min-width: auto;
  }
}

/* ==========================================================================
   LABELS
   ========================================================================== */

label {
  display: block;
  font-weight: var(--pz-font-weight-medium);
  color: var(--pz-color-text-primary);
  margin-bottom: var(--pz-space-2);
  font-size: var(--pz-font-size-sm);
}

.label-required::after {
  content: " *";
  color: var(--pz-color-error);
  font-weight: var(--pz-font-weight-bold);
}

.label-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--pz-space-2);
  margin-bottom: var(--pz-space-3);
  cursor: pointer;
}

.label-inline input {
  margin: 0;
}

/* ==========================================================================
   INPUT FIELDS
   ========================================================================== */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
textarea,
select {
  display: block;
  width: 100%;
  padding: var(--pz-form-input-padding-y) var(--pz-form-input-padding-x);
  
  /* Typography */
  font-family: var(--pz-font-body);
  font-size: var(--pz-font-size-md);
  font-weight: var(--pz-font-weight-normal);
  line-height: var(--pz-line-height-normal);
  color: var(--pz-color-text-primary);
  
  /* Appearance */
  background-color: var(--pz-form-input-bg);
  background-image: none;
  border: var(--pz-border-width-normal) solid var(--pz-form-input-border);
  border-radius: var(--pz-form-input-border-radius);
  
  /* Interaction */
  transition: border-color var(--pz-transition-duration) var(--pz-transition-timing),
              box-shadow var(--pz-transition-duration) var(--pz-transition-timing);
}

@media (prefers-reduced-motion: reduce) {
  .form-control,
  input, textarea, select {
    transition: none;
  }
}

/* Focus States */
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--pz-form-input-border-focus);
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.1);
}

/* Placeholder Styles */
.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--pz-color-text-muted);
  opacity: 1;
}

/* Disabled State */
.form-control:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  background-color: var(--pz-color-surface);
  color: var(--pz-color-text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Readonly State */
.form-control[readonly],
input[readonly],
textarea[readonly] {
  background-color: var(--pz-color-surface);
  cursor: default;
}

/* ==========================================================================
   INPUT SIZES
   ========================================================================== */

.form-control-sm,
.input-sm {
  padding: var(--pz-space-2) var(--pz-space-3);
  font-size: var(--pz-font-size-sm);
  border-radius: var(--pz-radius-sm);
}

.form-control-lg,
.input-lg {
  padding: var(--pz-space-4) var(--pz-space-5);
  font-size: var(--pz-font-size-lg);
  border-radius: var(--pz-radius-md);
}

/* ==========================================================================
   TEXTAREA
   ========================================================================== */

textarea {
  resize: vertical;
  min-height: 100px;
}

.textarea-no-resize {
  resize: none;
}

.textarea-auto-resize {
  resize: none;
  overflow: hidden;
}

/* ==========================================================================
   SELECT DROPDOWNS
   ========================================================================== */

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--pz-space-3) center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-right: var(--pz-space-8);
  cursor: pointer;
}

select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237367f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

select[multiple] {
  background-image: none;
  padding-right: var(--pz-form-input-padding-x);
}

/* ==========================================================================
   CHECKBOXES & RADIO BUTTONS
   ========================================================================== */

/* Hide default appearance */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: var(--pz-space-2);
  cursor: pointer;
}

/* Custom Checkbox */
.checkbox-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.checkbox-custom .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--pz-form-input-bg);
  border: var(--pz-border-width-normal) solid var(--pz-form-input-border);
  border-radius: var(--pz-radius-sm);
  margin-right: var(--pz-space-3);
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.checkbox-custom:hover .checkmark {
  border-color: var(--pz-color-primary);
}

.checkbox-custom input:checked + .checkmark {
  background-color: var(--pz-color-primary);
  border-color: var(--pz-color-primary);
}

.checkbox-custom input:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: var(--pz-font-size-sm);
  font-weight: var(--pz-font-weight-bold);
}

.checkbox-custom input:focus + .checkmark {
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.1);
}

/* Custom Radio Button */
.radio-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.radio-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.radio-custom .radiomark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--pz-form-input-bg);
  border: var(--pz-border-width-normal) solid var(--pz-form-input-border);
  border-radius: 50%;
  margin-right: var(--pz-space-3);
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.radio-custom:hover .radiomark {
  border-color: var(--pz-color-primary);
}

.radio-custom input:checked + .radiomark {
  background-color: var(--pz-color-primary);
  border-color: var(--pz-color-primary);
}

.radio-custom input:checked + .radiomark::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.radio-custom input:focus + .radiomark {
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.1);
}

/* ==========================================================================
   FORM VALIDATION STATES
   ========================================================================== */

/* Success State */
.form-group.has-success .form-control,
.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
  border-color: var(--pz-color-success);
}

.form-group.has-success .form-control:focus,
.form-group.has-success input:focus,
.form-group.has-success textarea:focus,
.form-group.has-success select:focus {
  border-color: var(--pz-color-success);
  box-shadow: 0 0 0 3px rgba(11, 160, 119, 0.1);
}

/* Warning State */
.form-group.has-warning .form-control,
.form-group.has-warning input,
.form-group.has-warning textarea,
.form-group.has-warning select {
  border-color: var(--pz-color-warning);
}

.form-group.has-warning .form-control:focus,
.form-group.has-warning input:focus,
.form-group.has-warning textarea:focus,
.form-group.has-warning select:focus {
  border-color: var(--pz-color-warning);
  box-shadow: 0 0 0 3px rgba(101, 130, 237, 0.1);
}

/* Error State */
.form-group.has-error .form-control,
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--pz-color-error);
}

.form-group.has-error .form-control:focus,
.form-group.has-error input:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
  border-color: var(--pz-color-error);
  box-shadow: 0 0 0 3px rgba(237, 114, 101, 0.1);
}

/* ==========================================================================
   HELP TEXT & FEEDBACK
   ========================================================================== */

.form-help,
.help-text {
  display: block;
  margin-top: var(--pz-space-1);
  font-size: var(--pz-font-size-sm);
  color: var(--pz-color-text-muted);
}

.form-feedback {
  display: block;
  margin-top: var(--pz-space-2);
  font-size: var(--pz-font-size-sm);
  font-weight: var(--pz-font-weight-medium);
}

.feedback-success {
  color: var(--pz-color-success);
}

.feedback-warning {
  color: var(--pz-color-warning);
}

.feedback-error {
  color: var(--pz-color-error);
}

/* ==========================================================================
   INPUT GROUPS & ADDONS
   ========================================================================== */

.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > input {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: var(--pz-form-input-padding-y) var(--pz-form-input-padding-x);
  font-size: var(--pz-font-size-md);
  font-weight: var(--pz-font-weight-normal);
  line-height: var(--pz-line-height-normal);
  color: var(--pz-color-text-muted);
  text-align: center;
  white-space: nowrap;
  background-color: var(--pz-color-surface);
  border: var(--pz-border-width-normal) solid var(--pz-form-input-border);
}

.input-group-prepend .input-group-text {
  border-right: 0;
  border-radius: var(--pz-form-input-border-radius) 0 0 var(--pz-form-input-border-radius);
}

.input-group-append .input-group-text {
  border-left: 0;
  border-radius: 0 var(--pz-form-input-border-radius) var(--pz-form-input-border-radius) 0;
}

.input-group-prepend + .form-control,
.input-group-prepend + input {
  border-left: 0;
  border-radius: 0 var(--pz-form-input-border-radius) var(--pz-form-input-border-radius) 0;
}

.form-control + .input-group-append,
input + .input-group-append {
  border-radius: var(--pz-form-input-border-radius) 0 0 var(--pz-form-input-border-radius);
}

/* ==========================================================================
   FORM LAYOUTS
   ========================================================================== */

/* Horizontal Forms */
.form-horizontal .form-group {
  display: flex;
  align-items: center;
  margin-bottom: var(--pz-space-4);
}

.form-horizontal label {
  flex: 0 0 30%;
  margin-bottom: 0;
  margin-right: var(--pz-space-4);
  text-align: right;
}

.form-horizontal .form-control,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select {
  flex: 1;
}

@media (max-width: 768px) {
  .form-horizontal .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-horizontal label {
    flex: none;
    margin-bottom: var(--pz-space-2);
    margin-right: 0;
    text-align: left;
  }
}

/* Inline Forms */
.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pz-space-4);
}

.form-inline .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: var(--pz-space-2);
}

.form-inline label {
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-inline .form-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .form-control,
  input, textarea, select {
    border-width: var(--pz-border-width-thick);
  }
  
  .checkbox-custom .checkmark,
  .radio-custom .radiomark {
    border-width: var(--pz-border-width-thick);
  }
}

/* Focus Management */
.form-control:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
}

/* Screen Reader Support */
.form-control[aria-invalid="true"],
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--pz-color-error);
}

/* Required Field Indicators */
input:required,
textarea:required,
select:required {
  box-shadow: inset 0 0 0 1px rgba(237, 114, 101, 0.1);
}
/**
 * Persona Zone Navigation Components
 * 
 * Navigation styles including:
 * - Main header navigation
 * - Mobile responsive menu
 * - Dropdown menus
 * - Breadcrumbs
 * - Pagination
 * - Tab navigation
 */

/* ==========================================================================
   MAIN HEADER NAVIGATION
   ========================================================================== */

.main-header {
  background-color: var(--pz-header-bg);
  box-shadow: var(--pz-header-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--pz-header-padding-y) 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--pz-color-secondary);
  font-weight: var(--pz-font-weight-bold);
  font-size: var(--pz-font-size-xl);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--pz-color-primary);
  text-decoration: none;
}

.navbar-brand img {
  height: 32px;
  width: auto;
  margin-right: var(--pz-space-2);
}

/* ==========================================================================
   NAVIGATION MENU
   ========================================================================== */

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--pz-space-6);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: var(--pz-space-2) var(--pz-space-3);
  color: var(--pz-color-text-primary);
  text-decoration: none;
  font-weight: var(--pz-font-weight-medium);
  font-size: var(--pz-font-size-md);
  border-radius: var(--pz-radius-sm);
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--pz-color-primary);
  background-color: var(--pz-color-primary-light);
  text-decoration: none;
}

.nav-link.active {
  color: var(--pz-color-primary);
  background-color: var(--pz-color-primary-light);
  font-weight: var(--pz-font-weight-semibold);
}

.nav-link:focus {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
}

/* Navigation Icons */
.nav-link .icon {
  width: 1em;
  height: 1em;
  margin-right: var(--pz-space-2);
}

/* ==========================================================================
   DROPDOWN MENUS
   ========================================================================== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: var(--pz-space-2);
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
  transition: transform var(--pz-transition-duration) var(--pz-transition-timing);
}

.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 220px;
  padding: var(--pz-space-2) 0;
  margin: var(--pz-space-1) 0 0;
  background-color: var(--pz-color-background);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--pz-radius-md);
  box-shadow: var(--pz-shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--pz-space-2) var(--pz-space-4);
  clear: both;
  font-weight: var(--pz-font-weight-normal);
  color: var(--pz-color-text-primary);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--pz-color-primary);
  background-color: var(--pz-color-primary-light);
  text-decoration: none;
}

.dropdown-item.active {
  color: var(--pz-color-primary);
  background-color: var(--pz-color-primary-light);
  font-weight: var(--pz-font-weight-medium);
}

.dropdown-divider {
  height: 0;
  margin: var(--pz-space-2) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dropdown Alignment */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--pz-space-2);
  border-radius: var(--pz-radius-sm);
}

.navbar-toggle:hover,
.navbar-toggle:focus {
  background-color: var(--pz-color-primary-light);
}

.navbar-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--pz-color-text-primary);
  margin: 2px 0;
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1024px) {
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--pz-color-background);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--pz-shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--pz-space-4) var(--pz-space-4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--pz-transition-duration) var(--pz-transition-timing);
  }
  
  .navbar-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    justify-content: space-between;
    padding: var(--pz-space-3) var(--pz-space-4);
    border-radius: var(--pz-radius-md);
    margin-bottom: var(--pz-space-1);
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    margin: var(--pz-space-2) 0 0;
    box-shadow: none;
    border: 1px solid var(--pz-color-primary-border);
    background-color: var(--pz-color-surface);
  }
  
  .dropdown.show .dropdown-menu {
    transform: none;
  }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: var(--pz-space-3) 0;
  margin-bottom: var(--pz-space-4);
  list-style: none;
  background-color: transparent;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--pz-space-2);
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: var(--pz-space-2);
  color: var(--pz-color-text-muted);
  content: "/";
}

.breadcrumb-item a {
  color: var(--pz-color-primary);
  text-decoration: none;
  font-size: var(--pz-font-size-sm);
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: var(--pz-color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--pz-color-text-muted);
  font-size: var(--pz-font-size-sm);
}

/* ==========================================================================
   TAB NAVIGATION
   ========================================================================== */

.nav-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0 0 var(--pz-space-6) 0;
  padding: 0;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: var(--pz-radius-sm) var(--pz-radius-sm) 0 0;
  padding: var(--pz-space-3) var(--pz-space-4);
  color: var(--pz-color-text-primary);
  background-color: transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: rgba(0, 0, 0, 0.1);
  isolation: isolate;
}

.nav-tabs .nav-link.active {
  color: var(--pz-color-primary);
  background-color: var(--pz-color-background);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) var(--pz-color-background);
  font-weight: var(--pz-font-weight-medium);
}

/* Pills Navigation */
.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pz-space-2);
  list-style: none;
  margin: 0 0 var(--pz-space-6) 0;
  padding: 0;
}

.nav-pills .nav-link {
  border-radius: var(--pz-radius-lg);
  padding: var(--pz-space-2) var(--pz-space-4);
  color: var(--pz-color-text-primary);
  background-color: var(--pz-color-surface);
  font-weight: var(--pz-font-weight-medium);
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
  background-color: var(--pz-color-primary-light);
  color: var(--pz-color-primary);
}

.nav-pills .nav-link.active {
  background-color: var(--pz-color-primary);
  color: white;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pz-space-1);
  list-style: none;
  margin: var(--pz-space-8) 0;
  padding: 0;
}

.page-item {
  display: inline;
}

.page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pz-space-2) var(--pz-space-3);
  margin-left: -1px;
  line-height: 1.25;
  color: var(--pz-color-primary);
  text-decoration: none;
  background-color: var(--pz-color-background);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 40px;
  transition: all var(--pz-transition-duration) var(--pz-transition-timing);
}

.page-link:hover,
.page-link:focus {
  z-index: 2;
  color: var(--pz-color-primary-hover);
  text-decoration: none;
  background-color: var(--pz-color-primary-light);
  border-color: var(--pz-color-primary-border);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: var(--pz-radius-md);
  border-bottom-left-radius: var(--pz-radius-md);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--pz-radius-md);
  border-bottom-right-radius: var(--pz-radius-md);
}

.page-item.active .page-link {
  z-index: 3;
  color: white;
  background-color: var(--pz-color-primary);
  border-color: var(--pz-color-primary);
}

.page-item.disabled .page-link {
  color: var(--pz-color-text-muted);
  pointer-events: none;
  background-color: var(--pz-color-surface);
  border-color: rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

/* Pagination Sizes */
.pagination-lg .page-link {
  padding: var(--pz-space-3) var(--pz-space-4);
  font-size: var(--pz-font-size-lg);
  min-width: 48px;
}

.pagination-sm .page-link {
  padding: var(--pz-space-1) var(--pz-space-2);
  font-size: var(--pz-font-size-sm);
  min-width: 32px;
}

/* ==========================================================================
   RESPONSIVE BEHAVIOR
   ========================================================================== */

@media (max-width: 640px) {
  .nav-tabs,
  .nav-pills {
    flex-direction: column;
  }
  
  .nav-tabs .nav-link,
  .nav-pills .nav-link {
    text-align: center;
    margin-bottom: var(--pz-space-1);
  }
  
  .nav-tabs {
    border-bottom: none;
  }
  
  .nav-tabs .nav-link {
    border-radius: var(--pz-radius-md);
  }
  
  .pagination {
    gap: var(--pz-space-1);
  }
  
  .page-link {
    padding: var(--pz-space-2);
    min-width: 36px;
    font-size: var(--pz-font-size-sm);
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .dropdown-menu,
  .navbar-nav,
  .page-link {
    transition: none;
  }
  
  .dropdown-toggle::after {
    transition: none;
  }
}

/* Focus Management */
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.page-link:focus-visible {
  outline: 2px solid var(--pz-color-primary);
  outline-offset: 2px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .navbar {
    border-bottom: 2px solid var(--pz-color-text-primary);
  }
  
  .nav-link.active,
  .dropdown-item.active,
  .page-item.active .page-link {
    outline: 2px solid var(--pz-color-primary);
    outline-offset: -2px;
  }
}

/* Legacy Elements (for compatibility) */
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Legacy Components */
/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utility Classes */
/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/**
 * Persona Zone Utility Classes
 * 
 * Helper classes that can be applied directly to HTML elements
 * to achieve common design patterns without writing custom CSS.
 * 
 * Categories:
 * - Spacing utilities
 * - Typography utilities
 * - Color utilities
 * - Display utilities
 * - Flexbox utilities
 * - Border utilities
 * - Shadow utilities
 */

/* ==========================================================================
   SPACING UTILITIES
   ========================================================================== */

/* Margin Utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: var(--pz-space-1) !important; }
.m-2 { margin: var(--pz-space-2) !important; }
.m-3 { margin: var(--pz-space-3) !important; }
.m-4 { margin: var(--pz-space-4) !important; }
.m-5 { margin: var(--pz-space-5) !important; }
.m-6 { margin: var(--pz-space-6) !important; }
.m-8 { margin: var(--pz-space-8) !important; }
.m-auto { margin: auto !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--pz-space-1) !important; }
.mt-2 { margin-top: var(--pz-space-2) !important; }
.mt-3 { margin-top: var(--pz-space-3) !important; }
.mt-4 { margin-top: var(--pz-space-4) !important; }
.mt-5 { margin-top: var(--pz-space-5) !important; }
.mt-6 { margin-top: var(--pz-space-6) !important; }
.mt-8 { margin-top: var(--pz-space-8) !important; }
.mt-auto { margin-top: auto !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--pz-space-1) !important; }
.mb-2 { margin-bottom: var(--pz-space-2) !important; }
.mb-3 { margin-bottom: var(--pz-space-3) !important; }
.mb-4 { margin-bottom: var(--pz-space-4) !important; }
.mb-5 { margin-bottom: var(--pz-space-5) !important; }
.mb-6 { margin-bottom: var(--pz-space-6) !important; }
.mb-8 { margin-bottom: var(--pz-space-8) !important; }
.mb-auto { margin-bottom: auto !important; }

/* Margin Left & Right */
.ml-0, .ms-0 { margin-left: 0 !important; }
.ml-1, .ms-1 { margin-left: var(--pz-space-1) !important; }
.ml-2, .ms-2 { margin-left: var(--pz-space-2) !important; }
.ml-3, .ms-3 { margin-left: var(--pz-space-3) !important; }
.ml-4, .ms-4 { margin-left: var(--pz-space-4) !important; }
.ml-auto, .ms-auto { margin-left: auto !important; }

.mr-0, .me-0 { margin-right: 0 !important; }
.mr-1, .me-1 { margin-right: var(--pz-space-1) !important; }
.mr-2, .me-2 { margin-right: var(--pz-space-2) !important; }
.mr-3, .me-3 { margin-right: var(--pz-space-3) !important; }
.mr-4, .me-4 { margin-right: var(--pz-space-4) !important; }
.mr-auto, .me-auto { margin-right: auto !important; }

/* Padding Utilities */
.p-0 { padding: 0 !important; }
.p-1 { padding: var(--pz-space-1) !important; }
.p-2 { padding: var(--pz-space-2) !important; }
.p-3 { padding: var(--pz-space-3) !important; }
.p-4 { padding: var(--pz-space-4) !important; }
.p-5 { padding: var(--pz-space-5) !important; }
.p-6 { padding: var(--pz-space-6) !important; }
.p-8 { padding: var(--pz-space-8) !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--pz-space-1) !important; }
.pt-2 { padding-top: var(--pz-space-2) !important; }
.pt-3 { padding-top: var(--pz-space-3) !important; }
.pt-4 { padding-top: var(--pz-space-4) !important; }
.pt-5 { padding-top: var(--pz-space-5) !important; }
.pt-6 { padding-top: var(--pz-space-6) !important; }
.pt-8 { padding-top: var(--pz-space-8) !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--pz-space-1) !important; }
.pb-2 { padding-bottom: var(--pz-space-2) !important; }
.pb-3 { padding-bottom: var(--pz-space-3) !important; }
.pb-4 { padding-bottom: var(--pz-space-4) !important; }
.pb-5 { padding-bottom: var(--pz-space-5) !important; }
.pb-6 { padding-bottom: var(--pz-space-6) !important; }
.pb-8 { padding-bottom: var(--pz-space-8) !important; }

/* Padding Left & Right */
.pl-0, .ps-0 { padding-left: 0 !important; }
.pl-1, .ps-1 { padding-left: var(--pz-space-1) !important; }
.pl-2, .ps-2 { padding-left: var(--pz-space-2) !important; }
.pl-3, .ps-3 { padding-left: var(--pz-space-3) !important; }
.pl-4, .ps-4 { padding-left: var(--pz-space-4) !important; }

.pr-0, .pe-0 { padding-right: 0 !important; }
.pr-1, .pe-1 { padding-right: var(--pz-space-1) !important; }
.pr-2, .pe-2 { padding-right: var(--pz-space-2) !important; }
.pr-3, .pe-3 { padding-right: var(--pz-space-3) !important; }
.pr-4, .pe-4 { padding-right: var(--pz-space-4) !important; }

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

/* Font Sizes */
.text-xs { font-size: var(--pz-font-size-xs) !important; }
.text-sm { font-size: var(--pz-font-size-sm) !important; }
.text-base { font-size: var(--pz-font-size-md) !important; }
.text-lg { font-size: var(--pz-font-size-lg) !important; }
.text-xl { font-size: var(--pz-font-size-xl) !important; }
.text-2xl { font-size: var(--pz-font-size-2xl) !important; }
.text-3xl { font-size: var(--pz-font-size-3xl) !important; }

/* Font Weights */
.font-normal { font-weight: var(--pz-font-weight-normal) !important; }
.font-medium { font-weight: var(--pz-font-weight-medium) !important; }
.font-semibold { font-weight: var(--pz-font-weight-semibold) !important; }
.font-bold { font-weight: var(--pz-font-weight-bold) !important; }

/* Font Families */
.font-heading { font-family: var(--pz-font-heading) !important; }
.font-body { font-family: var(--pz-font-body) !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Text Transform */
.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }

/* Line Height */
.leading-tight { line-height: var(--pz-line-height-tight) !important; }
.leading-normal { line-height: var(--pz-line-height-normal) !important; }
.leading-relaxed { line-height: var(--pz-line-height-relaxed) !important; }

/* ==========================================================================
   COLOR UTILITIES
   ========================================================================== */

/* Text Colors */
.text-primary { color: var(--pz-color-primary) !important; }
.text-secondary { color: var(--pz-color-secondary) !important; }
.text-success { color: var(--pz-color-success) !important; }
.text-warning { color: var(--pz-color-warning) !important; }
.text-error { color: var(--pz-color-error) !important; }
.text-muted { color: var(--pz-color-text-muted) !important; }
.text-body { color: var(--pz-color-text-primary) !important; }
.text-white { color: #ffffff !important; }
.text-black { color: #000000 !important; }

/* Background Colors */
.bg-primary { background-color: var(--pz-color-primary) !important; }
.bg-secondary { background-color: var(--pz-color-secondary) !important; }
.bg-success { background-color: var(--pz-color-success) !important; }
.bg-warning { background-color: var(--pz-color-warning) !important; }
.bg-error { background-color: var(--pz-color-error) !important; }
.bg-light { background-color: var(--pz-color-surface) !important; }
.bg-white { background-color: var(--pz-color-background) !important; }
.bg-transparent { background-color: transparent !important; }

/* Background Light Variants */
.bg-primary-light { background-color: var(--pz-color-primary-light) !important; }
.bg-success-light { background-color: rgba(11, 160, 119, 0.1) !important; }
.bg-warning-light { background-color: rgba(101, 130, 237, 0.1) !important; }
.bg-error-light { background-color: rgba(237, 114, 101, 0.1) !important; }

/* ==========================================================================
   DISPLAY UTILITIES
   ========================================================================== */

.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }

/* Responsive Display */
@media (max-width: 640px) {
  .d-sm-none { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
}

@media (max-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}

@media (max-width: 1024px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
}

/* ==========================================================================
   FLEXBOX UTILITIES
   ========================================================================== */

/* Flex Direction */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

/* Justify Content */
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-evenly { justify-content: space-evenly !important; }

/* Align Items */
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.items-baseline { align-items: baseline !important; }
.items-stretch { align-items: stretch !important; }

/* Align Self */
.self-start { align-self: flex-start !important; }
.self-end { align-self: flex-end !important; }
.self-center { align-self: center !important; }
.self-stretch { align-self: stretch !important; }

/* Flex Grow & Shrink */
.flex-1 { flex: 1 1 0% !important; }
.flex-auto { flex: 1 1 auto !important; }
.flex-initial { flex: 0 1 auto !important; }
.flex-none { flex: none !important; }

/* Gaps */
.gap-1 { gap: var(--pz-space-1) !important; }
.gap-2 { gap: var(--pz-space-2) !important; }
.gap-3 { gap: var(--pz-space-3) !important; }
.gap-4 { gap: var(--pz-space-4) !important; }
.gap-5 { gap: var(--pz-space-5) !important; }
.gap-6 { gap: var(--pz-space-6) !important; }
.gap-8 { gap: var(--pz-space-8) !important; }

/* ==========================================================================
   BORDER UTILITIES
   ========================================================================== */

/* Border Width */
.border-0 { border-width: 0 !important; }
.border { border-width: var(--pz-border-width-thin) !important; }
.border-2 { border-width: var(--pz-border-width-normal) !important; }
.border-4 { border-width: var(--pz-border-width-thick) !important; }

/* Border Sides */
.border-t { border-top-width: var(--pz-border-width-thin) !important; }
.border-r { border-right-width: var(--pz-border-width-thin) !important; }
.border-b { border-bottom-width: var(--pz-border-width-thin) !important; }
.border-l { border-left-width: var(--pz-border-width-thin) !important; }

/* Border Colors */
.border-primary { border-color: var(--pz-color-primary) !important; }
.border-secondary { border-color: var(--pz-color-secondary) !important; }
.border-success { border-color: var(--pz-color-success) !important; }
.border-warning { border-color: var(--pz-color-warning) !important; }
.border-error { border-color: var(--pz-color-error) !important; }
.border-light { border-color: rgba(0, 0, 0, 0.1) !important; }
.border-transparent { border-color: transparent !important; }

/* Border Radius */
.rounded-none { border-radius: 0 !important; }
.rounded-sm { border-radius: var(--pz-radius-sm) !important; }
.rounded { border-radius: var(--pz-radius-md) !important; }
.rounded-lg { border-radius: var(--pz-radius-lg) !important; }
.rounded-full { border-radius: var(--pz-radius-full) !important; }

/* ==========================================================================
   SHADOW UTILITIES
   ========================================================================== */

.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: var(--pz-shadow-sm) !important; }
.shadow { box-shadow: var(--pz-shadow-md) !important; }
.shadow-lg { box-shadow: var(--pz-shadow-lg) !important; }
.shadow-xl { box-shadow: var(--pz-shadow-xl) !important; }

/* ==========================================================================
   POSITION UTILITIES
   ========================================================================== */

.static { position: static !important; }
.fixed { position: fixed !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.sticky { position: sticky !important; }

/* ==========================================================================
   WIDTH & HEIGHT UTILITIES
   ========================================================================== */

.w-auto { width: auto !important; }
.w-full { width: 100% !important; }
.w-screen { width: 100vw !important; }
.w-fit { width: fit-content !important; }

.h-auto { height: auto !important; }
.h-full { height: 100% !important; }
.h-screen { height: 100vh !important; }
.h-fit { height: fit-content !important; }

/* ==========================================================================
   OVERFLOW UTILITIES
   ========================================================================== */

.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll { overflow: scroll !important; }

.overflow-x-auto { overflow-x: auto !important; }
.overflow-x-hidden { overflow-x: hidden !important; }
.overflow-x-scroll { overflow-x: scroll !important; }

.overflow-y-auto { overflow-y: auto !important; }
.overflow-y-hidden { overflow-y: hidden !important; }
.overflow-y-scroll { overflow-y: scroll !important; }

/* ==========================================================================
   Z-INDEX UTILITIES
   ========================================================================== */

.z-0 { z-index: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }

/* ==========================================================================
   INTERACTION UTILITIES
   ========================================================================== */

.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }

.cursor-auto { cursor: auto !important; }
.cursor-default { cursor: default !important; }
.cursor-pointer { cursor: pointer !important; }
.cursor-wait { cursor: wait !important; }
.cursor-text { cursor: text !important; }
.cursor-move { cursor: move !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

.select-none { user-select: none !important; }
.select-text { user-select: text !important; }
.select-all { user-select: all !important; }
.select-auto { user-select: auto !important; }