/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Foundation - Carbon Design System Core */
/* ==========================================================================
   Carbon Design System v11 - Multiple Color Palettes
   Complete Carbon color system with theme variations
========================================================================== */

/* Base Carbon Color Palette (Default IBM) */
:root {
  /* Background Colors */
  --cds-background: #ffffff;
  --cds-background-hover: #f4f4f4;
  --cds-background-active: #c6c6c6;
  --cds-background-selected: #e0e0e0;
  --cds-background-inverse: #393939;
  --cds-background-brand: #0f62fe;
  
  /* Layer Colors */
  --cds-layer-01: #f4f4f4;
  --cds-layer-02: #ffffff;
  --cds-layer-03: #f4f4f4;
  --cds-layer-hover-01: #e8e8e8;
  --cds-layer-hover-02: #f4f4f4;
  --cds-layer-hover-03: #e8e8e8;
  --cds-layer-accent-01: #e0e0e0;
  --cds-layer-accent-02: #e0e0e0;
  --cds-layer-accent-03: #e0e0e0;
  
  /* Text Colors */
  --cds-text-primary: #161616;
  --cds-text-secondary: #525252;
  --cds-text-placeholder: #a8a8a8;
  --cds-text-helper: #6f6f6f;
  --cds-text-error: #da1e28;
  --cds-text-inverse: #ffffff;
  --cds-text-on-color: #ffffff;
  --cds-text-on-color-disabled: #c6c6c6;
  
  /* Link Colors */
  --cds-link-primary: #0f62fe;
  --cds-link-primary-hover: #0043ce;
  --cds-link-secondary: #0043ce;
  --cds-link-visited: #8a3ffc;
  --cds-link-inverse: #78a9ff;
  
  /* Border Colors */
  --cds-border-subtle-00: #e0e0e0;
  --cds-border-subtle-01: #c6c6c6;
  --cds-border-subtle-02: #e0e0e0;
  --cds-border-subtle-03: #c6c6c6;
  --cds-border-strong-01: #8d8d8d;
  --cds-border-strong-02: #8d8d8d;
  --cds-border-strong-03: #8d8d8d;
  --cds-border-inverse: #393939;
  --cds-border-interactive: #0f62fe;
  --cds-border-disabled: #c6c6c6;
  
  /* Support Colors */
  --cds-support-error: #da1e28;
  --cds-support-success: #24a148;
  --cds-support-warning: #f1c21b;
  --cds-support-info: #0043ce;
  --cds-support-error-inverse: #fa4d56;
  --cds-support-success-inverse: #42be65;
  --cds-support-warning-inverse: #f1c21b;
  --cds-support-info-inverse: #4589ff;
  
  /* Focus */
  --cds-focus: #0f62fe;
  --cds-focus-inset: #ffffff;
  --cds-focus-inverse: #ffffff;
  
  /* Interactive Colors */
  --cds-interactive: #0f62fe;
  --cds-highlight: #d0e2ff;
  --cds-toggle-off: #8d8d8d;
  --cds-overlay: rgba(22, 22, 22, 0.5);
  
  /* Skeleton Colors */
  --cds-skeleton-background: #e8e8e8;
  --cds-skeleton-element: #c6c6c6;
  
  /* Brand Colors for Customization */
  --carbon-brand-primary: #0f62fe;
  --carbon-brand-secondary: #393939;
  --carbon-brand-accent: #8a3ffc;
}

/* Dark Theme Palette */
[data-carbon-theme="dark"] {
  /* Background Colors */
  --cds-background: #161616;
  --cds-background-hover: #262626;
  --cds-background-active: #393939;
  --cds-background-selected: #393939;
  --cds-background-inverse: #f4f4f4;
  --cds-background-brand: #0f62fe;
  
  /* Layer Colors */
  --cds-layer-01: #262626;
  --cds-layer-02: #393939;
  --cds-layer-03: #525252;
  --cds-layer-hover-01: #353535;
  --cds-layer-hover-02: #4c4c4c;
  --cds-layer-hover-03: #636363;
  --cds-layer-accent-01: #393939;
  --cds-layer-accent-02: #525252;
  --cds-layer-accent-03: #6f6f6f;
  
  /* Text Colors */
  --cds-text-primary: #f4f4f4;
  --cds-text-secondary: #c6c6c6;
  --cds-text-placeholder: #6f6f6f;
  --cds-text-helper: #8d8d8d;
  --cds-text-error: #ff8389;
  --cds-text-inverse: #161616;
  --cds-text-on-color: #ffffff;
  --cds-text-on-color-disabled: #161616;
  
  /* Link Colors */
  --cds-link-primary: #78a9ff;
  --cds-link-primary-hover: #a6c8ff;
  --cds-link-secondary: #a6c8ff;
  --cds-link-visited: #be95ff;
  --cds-link-inverse: #0f62fe;
  
  /* Border Colors */
  --cds-border-subtle-00: #393939;
  --cds-border-subtle-01: #525252;
  --cds-border-subtle-02: #393939;
  --cds-border-subtle-03: #525252;
  --cds-border-strong-01: #8d8d8d;
  --cds-border-strong-02: #a8a8a8;
  --cds-border-strong-03: #c6c6c6;
  --cds-border-inverse: #f4f4f4;
  --cds-border-interactive: #4589ff;
  --cds-border-disabled: #525252;
  
  /* Support Colors */
  --cds-support-error: #ff8389;
  --cds-support-success: #42be65;
  --cds-support-warning: #f1c21b;
  --cds-support-info: #4589ff;
  --cds-support-error-inverse: #da1e28;
  --cds-support-success-inverse: #24a148;
  --cds-support-warning-inverse: #f1c21b;
  --cds-support-info-inverse: #0043ce;
  
  /* Focus */
  --cds-focus: #ffffff;
  --cds-focus-inset: #161616;
  --cds-focus-inverse: #0f62fe;
  
  /* Interactive Colors */
  --cds-interactive: #4589ff;
  --cds-highlight: #0043ce;
  --cds-toggle-off: #6f6f6f;
  --cds-overlay: rgba(0, 0, 0, 0.65);
  
  /* Skeleton Colors */
  --cds-skeleton-background: #353535;
  --cds-skeleton-element: #525252;
}

/* High Contrast Theme */
[data-carbon-theme="high-contrast"] {
  /* Background Colors */
  --cds-background: #ffffff;
  --cds-background-hover: #e8e8e8;
  --cds-background-active: #8d8d8d;
  --cds-background-selected: #d0e2ff;
  --cds-background-inverse: #000000;
  --cds-background-brand: #0043ce;
  
  /* Layer Colors */
  --cds-layer-01: #ffffff;
  --cds-layer-02: #ffffff;
  --cds-layer-03: #ffffff;
  --cds-layer-hover-01: #f4f4f4;
  --cds-layer-hover-02: #f4f4f4;
  --cds-layer-hover-03: #f4f4f4;
  --cds-layer-accent-01: #e8e8e8;
  --cds-layer-accent-02: #e8e8e8;
  --cds-layer-accent-03: #e8e8e8;
  
  /* Text Colors */
  --cds-text-primary: #000000;
  --cds-text-secondary: #000000;
  --cds-text-placeholder: #6f6f6f;
  --cds-text-helper: #525252;
  --cds-text-error: #750e13;
  --cds-text-inverse: #ffffff;
  --cds-text-on-color: #ffffff;
  --cds-text-on-color-disabled: #c6c6c6;
  
  /* Link Colors */
  --cds-link-primary: #0043ce;
  --cds-link-primary-hover: #002d9c;
  --cds-link-secondary: #002d9c;
  --cds-link-visited: #740937;
  --cds-link-inverse: #78a9ff;
  
  /* Border Colors */
  --cds-border-subtle-00: #8d8d8d;
  --cds-border-subtle-01: #8d8d8d;
  --cds-border-subtle-02: #8d8d8d;
  --cds-border-subtle-03: #8d8d8d;
  --cds-border-strong-01: #000000;
  --cds-border-strong-02: #000000;
  --cds-border-strong-03: #000000;
  --cds-border-inverse: #ffffff;
  --cds-border-interactive: #0043ce;
  --cds-border-disabled: #c6c6c6;
  
  /* Support Colors */
  --cds-support-error: #750e13;
  --cds-support-success: #044317;
  --cds-support-warning: #392400;
  --cds-support-info: #002d9c;
  --cds-support-error-inverse: #ff8389;
  --cds-support-success-inverse: #42be65;
  --cds-support-warning-inverse: #f1c21b;
  --cds-support-info-inverse: #4589ff;
  
  /* Focus */
  --cds-focus: #0043ce;
  --cds-focus-inset: #ffffff;
  --cds-focus-inverse: #ffffff;
  
  /* Interactive Colors */
  --cds-interactive: #0043ce;
  --cds-highlight: #a6c8ff;
  --cds-toggle-off: #525252;
  --cds-overlay: rgba(22, 22, 22, 0.75);
  
  /* Skeleton Colors */
  --cds-skeleton-background: #e8e8e8;
  --cds-skeleton-element: #8d8d8d;
}

/* Brand Customizable Palette - Can be overridden via theme settings */
[data-carbon-theme="custom-brand"] {
  /* Use base Carbon palette but allow brand color overrides */
  --cds-background-brand: var(--carbon-brand-primary, #0f62fe);
  --cds-link-primary: var(--carbon-brand-primary, #0f62fe);
  --cds-border-interactive: var(--carbon-brand-primary, #0f62fe);
  --cds-focus: var(--carbon-brand-primary, #0f62fe);
  --cds-interactive: var(--carbon-brand-primary, #0f62fe);
  
  /* Brand secondary color integration */
  --cds-background-inverse: var(--carbon-brand-secondary, #393939);
  --cds-text-inverse: #ffffff;
  
  /* Brand accent color */
  --cds-link-visited: var(--carbon-brand-accent, #8a3ffc);
}

/* Theme switching utility classes */
.carbon-theme-light {
  color-scheme: light;
}

.carbon-theme-dark {
  color-scheme: dark;
}

.carbon-theme-high-contrast {
  color-scheme: light;
}

.carbon-theme-custom-brand {
  color-scheme: light;
}
/* ==========================================================================
   Carbon Design System v11 - 16 Column Grid System
   Complete implementation of Carbon's responsive grid system
========================================================================== */

/* Carbon Grid Container */
.cds--grid {
  width: 100%;
  padding-left: var(--cds-spacing-05);
  padding-right: var(--cds-spacing-05);
  margin-left: auto;
  margin-right: auto;
}

/* Carbon Breakpoints:
   sm: 320px
   md: 672px  
   lg: 1056px
   xlg: 1312px
   max: 1584px
*/

/* Small breakpoint (320px+) */
@media (min-width: 20rem) {
  .cds--grid {
    padding-left: var(--cds-spacing-05);
    padding-right: var(--cds-spacing-05);
    max-width: none;
  }
}

/* Medium breakpoint (672px+) */
@media (min-width: 42rem) {
  .cds--grid {
    padding-left: var(--cds-spacing-05);
    padding-right: var(--cds-spacing-05);
    max-width: none;
  }
}

/* Large breakpoint (1056px+) */
@media (min-width: 66rem) {
  .cds--grid {
    padding-left: var(--cds-spacing-05);
    padding-right: var(--cds-spacing-05);
    max-width: none;
  }
}

/* Extra large breakpoint (1312px+) */
@media (min-width: 82rem) {
  .cds--grid {
    padding-left: var(--cds-spacing-05);
    padding-right: var(--cds-spacing-05);
    max-width: none;
  }
}

/* Max breakpoint (1584px+) */
@media (min-width: 99rem) {
  .cds--grid {
    padding-left: var(--cds-spacing-05);
    padding-right: var(--cds-spacing-05);
    max-width: 99rem;
  }
}

/* Carbon Row */
.cds--row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--cds-spacing-05));
  margin-right: calc(-1 * var(--cds-spacing-05));
}

/* Carbon Column Base */
.cds--col {
  min-height: 1px;
  padding-left: var(--cds-spacing-05);
  padding-right: var(--cds-spacing-05);
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* Small columns (4 columns max) */
.cds--col-sm-1 { flex: 0 0 25%; max-width: 25%; }
.cds--col-sm-2 { flex: 0 0 50%; max-width: 50%; }
.cds--col-sm-3 { flex: 0 0 75%; max-width: 75%; }
.cds--col-sm-4 { flex: 0 0 100%; max-width: 100%; }

/* Medium columns (8 columns max) */
@media (min-width: 42rem) {
  .cds--col-md-1 { flex: 0 0 12.5%; max-width: 12.5%; }
  .cds--col-md-2 { flex: 0 0 25%; max-width: 25%; }
  .cds--col-md-3 { flex: 0 0 37.5%; max-width: 37.5%; }
  .cds--col-md-4 { flex: 0 0 50%; max-width: 50%; }
  .cds--col-md-5 { flex: 0 0 62.5%; max-width: 62.5%; }
  .cds--col-md-6 { flex: 0 0 75%; max-width: 75%; }
  .cds--col-md-7 { flex: 0 0 87.5%; max-width: 87.5%; }
  .cds--col-md-8 { flex: 0 0 100%; max-width: 100%; }
}

/* Large columns (16 columns max) */
@media (min-width: 66rem) {
  .cds--col-lg-1 { flex: 0 0 6.25%; max-width: 6.25%; }
  .cds--col-lg-2 { flex: 0 0 12.5%; max-width: 12.5%; }
  .cds--col-lg-3 { flex: 0 0 18.75%; max-width: 18.75%; }
  .cds--col-lg-4 { flex: 0 0 25%; max-width: 25%; }
  .cds--col-lg-5 { flex: 0 0 31.25%; max-width: 31.25%; }
  .cds--col-lg-6 { flex: 0 0 37.5%; max-width: 37.5%; }
  .cds--col-lg-7 { flex: 0 0 43.75%; max-width: 43.75%; }
  .cds--col-lg-8 { flex: 0 0 50%; max-width: 50%; }
  .cds--col-lg-9 { flex: 0 0 56.25%; max-width: 56.25%; }
  .cds--col-lg-10 { flex: 0 0 62.5%; max-width: 62.5%; }
  .cds--col-lg-11 { flex: 0 0 68.75%; max-width: 68.75%; }
  .cds--col-lg-12 { flex: 0 0 75%; max-width: 75%; }
  .cds--col-lg-13 { flex: 0 0 81.25%; max-width: 81.25%; }
  .cds--col-lg-14 { flex: 0 0 87.5%; max-width: 87.5%; }
  .cds--col-lg-15 { flex: 0 0 93.75%; max-width: 93.75%; }
  .cds--col-lg-16 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra Large columns (16 columns max) */
@media (min-width: 82rem) {
  .cds--col-xlg-1 { flex: 0 0 6.25%; max-width: 6.25%; }
  .cds--col-xlg-2 { flex: 0 0 12.5%; max-width: 12.5%; }
  .cds--col-xlg-3 { flex: 0 0 18.75%; max-width: 18.75%; }
  .cds--col-xlg-4 { flex: 0 0 25%; max-width: 25%; }
  .cds--col-xlg-5 { flex: 0 0 31.25%; max-width: 31.25%; }
  .cds--col-xlg-6 { flex: 0 0 37.5%; max-width: 37.5%; }
  .cds--col-xlg-7 { flex: 0 0 43.75%; max-width: 43.75%; }
  .cds--col-xlg-8 { flex: 0 0 50%; max-width: 50%; }
  .cds--col-xlg-9 { flex: 0 0 56.25%; max-width: 56.25%; }
  .cds--col-xlg-10 { flex: 0 0 62.5%; max-width: 62.5%; }
  .cds--col-xlg-11 { flex: 0 0 68.75%; max-width: 68.75%; }
  .cds--col-xlg-12 { flex: 0 0 75%; max-width: 75%; }
  .cds--col-xlg-13 { flex: 0 0 81.25%; max-width: 81.25%; }
  .cds--col-xlg-14 { flex: 0 0 87.5%; max-width: 87.5%; }
  .cds--col-xlg-15 { flex: 0 0 93.75%; max-width: 93.75%; }
  .cds--col-xlg-16 { flex: 0 0 100%; max-width: 100%; }
}

/* Max columns (16 columns max) */
@media (min-width: 99rem) {
  .cds--col-max-1 { flex: 0 0 6.25%; max-width: 6.25%; }
  .cds--col-max-2 { flex: 0 0 12.5%; max-width: 12.5%; }
  .cds--col-max-3 { flex: 0 0 18.75%; max-width: 18.75%; }
  .cds--col-max-4 { flex: 0 0 25%; max-width: 25%; }
  .cds--col-max-5 { flex: 0 0 31.25%; max-width: 31.25%; }
  .cds--col-max-6 { flex: 0 0 37.5%; max-width: 37.5%; }
  .cds--col-max-7 { flex: 0 0 43.75%; max-width: 43.75%; }
  .cds--col-max-8 { flex: 0 0 50%; max-width: 50%; }
  .cds--col-max-9 { flex: 0 0 56.25%; max-width: 56.25%; }
  .cds--col-max-10 { flex: 0 0 62.5%; max-width: 62.5%; }
  .cds--col-max-11 { flex: 0 0 68.75%; max-width: 68.75%; }
  .cds--col-max-12 { flex: 0 0 75%; max-width: 75%; }
  .cds--col-max-13 { flex: 0 0 81.25%; max-width: 81.25%; }
  .cds--col-max-14 { flex: 0 0 87.5%; max-width: 87.5%; }
  .cds--col-max-15 { flex: 0 0 93.75%; max-width: 93.75%; }
  .cds--col-max-16 { flex: 0 0 100%; max-width: 100%; }
}

/* Grid Utilities */
.cds--no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.cds--no-gutter .cds--col {
  padding-left: 0;
  padding-right: 0;
}

.cds--grid--condensed {
  padding-left: var(--cds-spacing-03);
  padding-right: var(--cds-spacing-03);
}

.cds--grid--condensed .cds--row {
  margin-left: calc(-1 * var(--cds-spacing-03));
  margin-right: calc(-1 * var(--cds-spacing-03));
}

.cds--grid--condensed .cds--col {
  padding-left: var(--cds-spacing-03);
  padding-right: var(--cds-spacing-03);
}

/* Grid debugging (remove in production) */
.cds--grid--debug .cds--col {
  background-color: rgba(15, 98, 254, 0.1);
  border: 1px solid rgba(15, 98, 254, 0.3);
  min-height: 2rem;
}

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/* ==========================================================================
    Carbon Design System Reset CSS
    Carbon Design System base styles and CSS variables
========================================================================== */

/* Carbon Design System v11 CSS Variables */
:root {
  /* Carbon Colors - Official v11 */
  --cds-background: #ffffff;
  --cds-background-hover: #f4f4f4;
  --cds-background-active: #c6c6c6;
  --cds-background-selected: #e0e0e0;
  --cds-background-inverse: #393939;
  --cds-background-brand: #0f62fe;
  
  --cds-layer-01: #f4f4f4;
  --cds-layer-02: #ffffff;
  --cds-layer-03: #f4f4f4;
  --cds-layer-hover-01: #e8e8e8;
  --cds-layer-hover-02: #f4f4f4;
  --cds-layer-hover-03: #e8e8e8;
  
  --cds-text-primary: #161616;
  --cds-text-secondary: #525252;
  --cds-text-placeholder: #a8a8a8;
  --cds-text-helper: #6f6f6f;
  --cds-text-error: #da1e28;
  --cds-text-inverse: #ffffff;
  --cds-text-on-color: #ffffff;
  
  --cds-link-primary: #0f62fe;
  --cds-link-primary-hover: #0043ce;
  --cds-link-secondary: #0043ce;
  --cds-link-visited: #8a3ffc;
  
  --cds-border-subtle-01: #c6c6c6;
  --cds-border-strong-01: #8d8d8d;
  --cds-border-interactive: #0f62fe;
  --cds-focus: #0f62fe;
  
  /* Carbon Spacing */
  --cds-spacing-01: 0.125rem;   /* 2px */
  --cds-spacing-02: 0.25rem;    /* 4px */
  --cds-spacing-03: 0.5rem;     /* 8px */
  --cds-spacing-04: 0.75rem;    /* 12px */
  --cds-spacing-05: 1rem;       /* 16px */
  --cds-spacing-06: 1.5rem;     /* 24px */
  --cds-spacing-07: 2rem;       /* 32px */
  --cds-spacing-08: 2.5rem;     /* 40px */
  --cds-spacing-09: 3rem;       /* 48px */
  --cds-spacing-10: 4rem;       /* 64px */
  
  /* Carbon Typography */
  --cds-productive-heading-04-font-size: 1.75rem;
  --cds-productive-heading-04-font-weight: 400;
  --cds-productive-heading-04-line-height: 1.29;
  
  --cds-body-01-font-size: 0.875rem;
  --cds-body-01-font-weight: 400;
  --cds-body-01-line-height: 1.43;
  --cds-body-01-letter-spacing: 0.16px;
}

/* Carbon Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--cds-background);
  color: var(--cds-text-primary);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  line-height: var(--cds-body-01-line-height);
  letter-spacing: var(--cds-body-01-letter-spacing);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Carbon Design System Visual Overhaul */
.body-container-wrapper {
  background-color: var(--cds-background);
  min-height: 100vh;
}

.body-container {
  background-color: var(--cds-layer-01);
  margin: 0;
  padding: 0;
}

/* DND Section Styling */
.dnd-section {
  padding: var(--cds-spacing-09) 0;
}

.dnd-section:nth-child(even) {
  background-color: var(--cds-layer-02);
}

.dnd-section:nth-child(odd) {
  background-color: var(--cds-layer-01);
}

/* Carbon Grid System Base */
.cds--grid {
  width: 100%;
  padding-left: var(--cds-spacing-05);
  padding-right: var(--cds-spacing-05);
  margin-left: auto;
  margin-right: auto;
  max-width: 1584px;
}

.cds--row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.cds--col {
  min-height: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
/*! 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;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* 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;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

/* 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;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ==========================================================================
   Carbon Design System - Typography Components
   Carbon Design System v11 typography scale and classes
========================================================================== */

/* Carbon Typography Classes */

/* Productive Headings */
.cds--productive-heading-01 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: 0.16px;
}

.cds--productive-heading-02 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: 0;
}

.cds--productive-heading-03 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.cds--productive-heading-04 {
  font-size: var(--cds-productive-heading-04-font-size);
  font-weight: var(--cds-productive-heading-04-font-weight);
  line-height: var(--cds-productive-heading-04-line-height);
  letter-spacing: 0;
}

.cds--productive-heading-05 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.cds--productive-heading-06 {
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.199;
  letter-spacing: 0;
}

.cds--productive-heading-07 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.19;
  letter-spacing: 0;
}

/* Expressive Headings */
.cds--expressive-heading-01 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.16px;
}

.cds--expressive-heading-02 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.cds--expressive-heading-03 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--expressive-heading-04 {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--expressive-heading-05 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--expressive-heading-06 {
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.199;
  letter-spacing: 0;
  max-width: 65ch;
}

/* Body Text */
.cds--body-01 {
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  line-height: var(--cds-body-01-line-height);
  letter-spacing: var(--cds-body-01-letter-spacing);
}

.cds--body-02 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0;
}

.cds--body-compact-01 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: 0.16px;
}

.cds--body-compact-02 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0;
}

/* Labels */
.cds--label-01 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.32px;
}

.cds--label-02 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: 0.16px;
}

/* Helper Text */
.cds--helper-text-01 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.32px;
  color: var(--cds-text-helper);
}

.cds--helper-text-02 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: 0.16px;
  color: var(--cds-text-helper);
}

/* Legal Text */
.cds--legal-01 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.32px;
}

.cds--legal-02 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: 0.16px;
}

/* Code Text */
.cds--code-01 {
  font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.32px;
}

.cds--code-02 {
  font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.32px;
}

/* Quotation */
.cds--quotation-01 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--quotation-02 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 65ch;
}

/* Display */
.cds--display-01 {
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.19;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--display-02 {
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--display-03 {
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: 0;
  max-width: 65ch;
}

.cds--display-04 {
  font-size: 4.25rem;
  font-weight: 300;
  line-height: 1.19;
  letter-spacing: 0;
  max-width: 65ch;
}

/* Utility Classes */
.cds--type-mono {
  font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
}

.cds--type-sans {
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

.cds--type-serif {
  font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
}

.cds--type-light {
  font-weight: 300;
}

.cds--type-regular {
  font-weight: 400;
}

.cds--type-semibold {
  font-weight: 600;
}

/* Text Colors */
.cds--text-primary {
  color: var(--cds-text-primary);
}

.cds--text-secondary {
  color: var(--cds-text-secondary);
}

.cds--text-placeholder {
  color: var(--cds-text-placeholder);
}

.cds--text-helper {
  color: var(--cds-text-helper);
}

.cds--text-error {
  color: var(--cds-text-error);
}

.cds--text-inverse {
  color: var(--cds-text-inverse);
}

.cds--text-on-color {
  color: var(--cds-text-on-color);
}
/* ==========================================================================
   Carbon Design System - Button Components
   Carbon Design System v11 button implementations
========================================================================== */

/* Carbon Button Base */
.cds--btn {
  align-items: center;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 3rem;
  justify-content: center;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  margin: 0;
  max-width: 20rem;
  min-width: 0;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: calc(0.875rem - 1px) calc(4rem - 1px) calc(0.875rem - 1px) calc(1rem - 1px);
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  vertical-align: top;
  white-space: nowrap;
  width: auto;
}

.cds--btn:disabled,
.cds--btn:hover:disabled,
.cds--btn:focus:disabled,
.cds--btn.cds--btn--disabled,
.cds--btn.cds--btn--disabled:hover,
.cds--btn.cds--btn--disabled:focus {
  background-color: var(--cds-background-active);
  border-color: var(--cds-background-active);
  color: var(--cds-text-placeholder);
  cursor: not-allowed;
}

.cds--btn:focus,
.cds--btn:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Primary Button */
.cds--btn--primary {
  background-color: var(--cds-background-brand);
  border-color: var(--cds-background-brand);
  color: var(--cds-text-on-color);
}

.cds--btn--primary:hover {
  background-color: #0353e9;
  border-color: #0353e9;
}

.cds--btn--primary:active {
  background-color: #002d9c;
  border-color: #002d9c;
}

/* Secondary Button */
.cds--btn--secondary {
  background-color: transparent;
  border-color: var(--cds-background-brand);
  color: var(--cds-background-brand);
}

.cds--btn--secondary:hover {
  background-color: #0353e9;
  border-color: #0353e9;
  color: var(--cds-text-on-color);
}

.cds--btn--secondary:active {
  background-color: #002d9c;
  border-color: #002d9c;
  color: var(--cds-text-on-color);
}

/* Tertiary Button */
.cds--btn--tertiary {
  background-color: transparent;
  border-color: var(--cds-background-brand);
  color: var(--cds-background-brand);
  padding-left: calc(1rem - 1px);
  padding-right: calc(1rem - 1px);
}

.cds--btn--tertiary:hover {
  background-color: #0353e9;
  color: var(--cds-text-on-color);
}

.cds--btn--tertiary:active {
  background-color: #002d9c;
  color: var(--cds-text-on-color);
}

/* Ghost Button */
.cds--btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--cds-link-primary);
  padding-left: calc(1rem - 1px);
  padding-right: calc(1rem - 1px);
}

.cds--btn--ghost:hover {
  background-color: var(--cds-background-hover);
  color: var(--cds-link-primary-hover);
}

.cds--btn--ghost:active {
  background-color: var(--cds-background-active);
}

/* Danger Button */
.cds--btn--danger {
  background-color: var(--cds-text-error);
  border-color: var(--cds-text-error);
  color: var(--cds-text-on-color);
}

.cds--btn--danger:hover {
  background-color: #ba1b23;
  border-color: #ba1b23;
}

.cds--btn--danger:active {
  background-color: #750e13;
  border-color: #750e13;
}

/* Button Sizes */
.cds--btn--sm {
  height: 2rem;
  padding: calc(0.375rem - 1px) calc(1rem - 1px) calc(0.375rem - 1px) calc(1rem - 1px);
}

.cds--btn--lg {
  height: 4rem;
  padding: calc(1rem - 1px) calc(4rem - 1px) calc(1rem - 1px) calc(1rem - 1px);
}

.cds--btn--xl {
  height: 5rem;
  padding: calc(1rem - 1px) calc(4rem - 1px) calc(1rem - 1px) calc(1rem - 1px);
}

/* Button with Icon */
.cds--btn .cds--btn__icon {
  flex-shrink: 0;
  height: 1rem;
  margin-left: var(--cds-spacing-03);
  width: 1rem;
}

.cds--btn--icon-only {
  padding-left: calc(0.875rem - 1px);
  padding-right: calc(0.875rem - 1px);
}

.cds--btn--icon-only .cds--btn__icon {
  margin: 0;
}

/* Utility Classes */
.cds--btn--full-width {
  max-width: none;
  width: 100%;
}
/* ==========================================================================
   Carbon Design System - Form Components
   Carbon Design System v11 form elements and patterns
========================================================================== */

/* Form Group */
.cds--form-group {
  margin-bottom: var(--cds-spacing-05);
}

/* Text Input */
.cds--text-input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.cds--text-input {
  background-color: var(--cds-layer-01);
  border: none;
  border-bottom: 1px solid var(--cds-border-strong-01);
  color: var(--cds-text-primary);
  font-family: inherit;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 2.5rem;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0 var(--cds-spacing-05);
  transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9),
    outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 100%;
}

.cds--text-input:focus,
.cds--text-input:active {
  background-color: var(--cds-layer-01);
  border-bottom-color: var(--cds-focus);
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--text-input::placeholder {
  color: var(--cds-text-placeholder);
  font-weight: var(--cds-body-01-font-weight);
  opacity: 1;
}

.cds--text-input:disabled {
  background-color: transparent;
  border-bottom-color: transparent;
  color: var(--cds-text-placeholder);
  cursor: not-allowed;
}

/* Text Input - Light */
.cds--text-input--light {
  background-color: var(--cds-layer-02);
}

.cds--text-input--light:focus,
.cds--text-input--light:active {
  background-color: var(--cds-layer-02);
}

/* Text Input - Invalid */
.cds--text-input--invalid {
  border-bottom-color: var(--cds-text-error);
  box-shadow: inset 0 -2px 0 0 var(--cds-text-error);
}

.cds--text-input--invalid:focus,
.cds--text-input--invalid:active {
  border-bottom-color: var(--cds-text-error);
  outline: 2px solid var(--cds-text-error);
}

/* Label */
.cds--label {
  color: var(--cds-text-secondary);
  display: inline-block;
  font-size: var(--cds-label-01-font-size, 0.75rem);
  font-weight: var(--cds-label-01-font-weight, 400);
  line-height: var(--cds-label-01-line-height, 1.34);
  letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
  margin-bottom: var(--cds-spacing-03);
  vertical-align: baseline;
}

/* Helper Text */
.cds--form__helper-text {
  color: var(--cds-text-helper);
  font-size: var(--cds-helper-text-01-font-size, 0.75rem);
  line-height: var(--cds-helper-text-01-line-height, 1.34);
  margin-top: var(--cds-spacing-02);
}

/* Error Text */
.cds--form-requirement {
  color: var(--cds-text-error);
  font-size: var(--cds-helper-text-01-font-size, 0.75rem);
  line-height: var(--cds-helper-text-01-line-height, 1.34);
  margin-top: var(--cds-spacing-02);
}

/* Textarea */
.cds--text-area {
  background-color: var(--cds-layer-01);
  border: none;
  border-bottom: 1px solid var(--cds-border-strong-01);
  color: var(--cds-text-primary);
  font-family: inherit;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  min-height: 2.5rem;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: var(--cds-spacing-03) var(--cds-spacing-05);
  resize: vertical;
  transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9),
    outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 100%;
}

.cds--text-area:focus,
.cds--text-area:active {
  background-color: var(--cds-layer-01);
  border-bottom-color: var(--cds-focus);
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Select */
.cds--select {
  position: relative;
}

.cds--select-input {
  appearance: none;
  background-color: var(--cds-layer-01);
  border: none;
  border-bottom: 1px solid var(--cds-border-strong-01);
  border-radius: 0;
  color: var(--cds-text-primary);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 2.5rem;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0 var(--cds-spacing-09) 0 var(--cds-spacing-05);
  transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9),
    outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 100%;
}

.cds--select-input:focus,
.cds--select-input:active {
  background-color: var(--cds-layer-01);
  border-bottom-color: var(--cds-focus);
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Select Icon */
.cds--select__arrow {
  fill: var(--cds-text-primary);
  height: 1rem;
  pointer-events: none;
  position: absolute;
  right: var(--cds-spacing-05);
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
}

/* Checkbox */
.cds--checkbox-wrapper {
  display: flex;
  align-items: flex-start;
}

.cds--checkbox {
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--cds-border-strong-01);
  border-radius: 1px;
  cursor: pointer;
  height: 1.25rem;
  margin: 0;
  margin-right: var(--cds-spacing-03);
  outline: 2px solid transparent;
  outline-offset: -2px;
  position: relative;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 1.25rem;
}

.cds--checkbox:checked {
  background-color: var(--cds-background-brand);
  border-color: var(--cds-background-brand);
}

.cds--checkbox:checked::after {
  content: '';
  position: absolute;
  left: 0.3125rem;
  top: 0.125rem;
  width: 0.375rem;
  height: 0.75rem;
  border: solid var(--cds-text-on-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cds--checkbox:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: 2px;
}

.cds--checkbox:disabled {
  background-color: var(--cds-background-active);
  border-color: var(--cds-background-active);
  cursor: not-allowed;
}

/* Checkbox Label */
.cds--checkbox-label {
  color: var(--cds-text-primary);
  cursor: pointer;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  line-height: var(--cds-body-01-line-height);
  margin-bottom: 0;
  user-select: none;
}

/* Radio Button */
.cds--radio-button-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--cds-spacing-03);
}

.cds--radio-button {
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--cds-border-strong-01);
  border-radius: 50%;
  cursor: pointer;
  height: 1.25rem;
  margin: 0;
  margin-right: var(--cds-spacing-03);
  outline: 2px solid transparent;
  outline-offset: -2px;
  position: relative;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 1.25rem;
}

.cds--radio-button:checked {
  border-color: var(--cds-background-brand);
}

.cds--radio-button:checked::after {
  background-color: var(--cds-background-brand);
  border-radius: 50%;
  content: '';
  height: 0.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}

.cds--radio-button:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: 2px;
}

/* Radio Button Label */
.cds--radio-button-label {
  color: var(--cds-text-primary);
  cursor: pointer;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  line-height: var(--cds-body-01-line-height);
  margin-bottom: 0;
  user-select: none;
}

/* Field Set */
.cds--fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.cds--fieldset legend {
  color: var(--cds-text-primary);
  font-size: var(--cds-label-01-font-size, 0.75rem);
  font-weight: var(--cds-label-01-font-weight, 400);
  line-height: var(--cds-label-01-line-height, 1.34);
  margin-bottom: var(--cds-spacing-03);
}

/* Form Item */
.cds--form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--cds-spacing-05);
}

/* Fluid Form */
.cds--form--fluid .cds--text-input,
.cds--form--fluid .cds--text-area,
.cds--form--fluid .cds--select-input {
  background-color: var(--cds-layer-02);
}

.cds--form--fluid .cds--text-input:focus,
.cds--form--fluid .cds--text-area:focus,
.cds--form--fluid .cds--select-input:focus {
  background-color: var(--cds-layer-02);
}
/* ==========================================================================
   Carbon Design System - Tile Components
   Carbon Design System v11 tile implementations
========================================================================== */

/* Base Tile */
.cds--tile {
  background-color: var(--cds-layer-01);
  border: 1px solid transparent;
  min-height: 4rem;
  min-width: 8rem;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: var(--cds-spacing-05);
  position: relative;
}

/* Clickable Tile */
.cds--tile--clickable {
  background-color: var(--cds-layer-01);
  color: var(--cds-text-primary);
  cursor: pointer;
  text-decoration: none;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--tile--clickable:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--tile--clickable:focus,
.cds--tile--clickable:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--tile--clickable:active {
  background-color: var(--cds-background-active);
}

/* Selectable Tile */
.cds--tile--selectable {
  cursor: pointer;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--tile--selectable:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--tile--selectable:focus,
.cds--tile--selectable:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--tile--selectable--selected {
  background-color: var(--cds-background-selected);
  border-color: var(--cds-background-brand);
  outline: 2px solid var(--cds-background-brand);
  outline-offset: -2px;
}

/* Tile Checkbox (for selectable tiles) */
.cds--tile__checkmark {
  border: 2px solid var(--cds-border-strong-01);
  border-radius: 1px;
  height: 1rem;
  position: absolute;
  right: var(--cds-spacing-05);
  top: var(--cds-spacing-05);
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 1rem;
}

.cds--tile--selectable--selected .cds--tile__checkmark {
  background-color: var(--cds-background-brand);
  border-color: var(--cds-background-brand);
}

.cds--tile--selectable--selected .cds--tile__checkmark::after {
  content: '';
  position: absolute;
  left: 0.1875rem;
  top: 0;
  width: 0.25rem;
  height: 0.5rem;
  border: solid var(--cds-text-on-color);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Expandable Tile */
.cds--tile--expandable {
  cursor: pointer;
  overflow: hidden;
  transition: all 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--tile--expandable:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--tile--expandable:focus,
.cds--tile--expandable:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--tile--expandable--expanded {
  overflow: visible;
}

/* Tile Above Fold Content */
.cds--tile-content__above-the-fold {
  display: block;
}

.cds--tile--expandable--expanded .cds--tile-content__above-the-fold {
  display: none;
}

/* Tile Below Fold Content */
.cds--tile-content__below-the-fold {
  display: none;
}

.cds--tile--expandable--expanded .cds--tile-content__below-the-fold {
  display: block;
  padding-bottom: var(--cds-spacing-05);
  padding-top: var(--cds-spacing-05);
}

/* Tile Chevron */
.cds--tile__chevron {
  fill: var(--cds-text-primary);
  height: 1rem;
  position: absolute;
  right: var(--cds-spacing-05);
  top: var(--cds-spacing-05);
  transform: rotate(0deg);
  transition: all 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 1rem;
}

.cds--tile--expandable--expanded .cds--tile__chevron {
  transform: rotate(180deg);
}

/* Read-only Tile */
.cds--tile--read-only {
  background-color: var(--cds-layer-01);
  cursor: default;
}

/* Light Variant */
.cds--tile--light {
  background-color: var(--cds-layer-02);
}

.cds--tile--clickable.cds--tile--light:hover {
  background-color: var(--cds-layer-hover-02);
}

.cds--tile--selectable.cds--tile--light:hover {
  background-color: var(--cds-layer-hover-02);
}

.cds--tile--expandable.cds--tile--light:hover {
  background-color: var(--cds-layer-hover-02);
}

/* Tile Group (for multiple selectable tiles) */
.cds--tile-group {
  display: flex;
  flex-direction: column;
}

.cds--tile-group .cds--tile {
  margin-bottom: var(--cds-spacing-03);
}

.cds--tile-group .cds--tile:last-child {
  margin-bottom: 0;
}

/* Radio Tile */
.cds--tile--radio {
  border: 2px solid var(--cds-border-subtle-01);
  cursor: pointer;
  position: relative;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--tile--radio:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--tile--radio:focus,
.cds--tile--radio:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--tile--radio--selected {
  background-color: var(--cds-background-selected);
  border-color: var(--cds-background-brand);
}

/* Radio Tile Input (hidden) */
.cds--tile-input {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* Tile Content Wrapper */
.cds--tile-content {
  display: block;
  width: 100%;
}

/* Card-like Tile Styling */
.cds--tile--card {
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--tile--card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Tile with Icon */
.cds--tile--with-icon {
  padding-left: 3.5rem;
  position: relative;
}

.cds--tile__icon {
  fill: var(--cds-text-secondary);
  height: 1.25rem;
  left: var(--cds-spacing-05);
  position: absolute;
  top: var(--cds-spacing-05);
  width: 1.25rem;
}
/* ==========================================================================
   Carbon Design System UI Shell
   Complete header/navigation implementation matching Carbon UI Shell
========================================================================== */

/* Carbon UI Shell Header */
.cds--header {
  background-color: var(--cds-background-inverse);
  border-bottom: 1px solid var(--cds-border-subtle-01);
  height: 3rem;
  position: relative;
  z-index: 6000;
}

.cds--header__name {
  color: var(--cds-text-inverse);
  font-size: var(--cds-body-01-font-size);
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 1.29;
  padding: 0 var(--cds-spacing-05);
  text-decoration: none;
  transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 3rem;
  border: 2px solid transparent;
}

.cds--header__name:hover {
  color: var(--cds-text-inverse);
}

.cds--header__name:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

/* Header Navigation */
.cds--header__nav {
  background-color: var(--cds-background-inverse);
  display: flex;
  height: 3rem;
  padding-left: var(--cds-spacing-05);
}

.cds--header__menu-bar {
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cds--header__menu-item {
  background-color: transparent;
  display: flex;
}

.cds--header__menu-item .cds--header__menu-title {
  align-items: center;
  background-color: transparent;
  border: 2px solid transparent;
  color: var(--cds-text-inverse);
  cursor: pointer;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  font-weight: 400;
  height: 3rem;
  letter-spacing: 0;
  line-height: 1.29;
  padding: 0 var(--cds-spacing-05);
  position: relative;
  text-decoration: none;
  transition: background-color 110ms, border-color 110ms, color 110ms;
  user-select: none;
  white-space: nowrap;
}

.cds--header__menu-item .cds--header__menu-title:hover {
  background-color: var(--cds-layer-hover-01);
  color: var(--cds-text-inverse);
}

.cds--header__menu-item .cds--header__menu-title:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

.cds--header__menu-item .cds--header__menu-title:active {
  background-color: var(--cds-layer-active-01);
}

/* Header Actions (right side) */
.cds--header__global {
  display: flex;
  height: 3rem;
  justify-content: flex-end;
  flex: 1;
}

/* Header Action Button */
.cds--header__action {
  align-items: center;
  background-color: transparent;
  border: 2px solid transparent;
  color: var(--cds-text-inverse);
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background-color 110ms, border-color 110ms;
  width: 3rem;
}

.cds--header__action:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--header__action:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

.cds--header__action:active {
  background-color: var(--cds-layer-active-01);
}

.cds--header__action svg {
  fill: var(--cds-text-inverse);
  height: 1.25rem;
  width: 1.25rem;
}

/* Search in Header */
.cds--header__search {
  align-items: center;
  background-color: transparent;
  border: 2px solid transparent;
  color: var(--cds-text-inverse);
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background-color 110ms, border-color 110ms;
  width: 3rem;
}

.cds--header__search:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--header__search:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

/* Mobile Menu Toggle */
.cds--header__menu-trigger {
  align-items: center;
  background-color: transparent;
  border: 2px solid transparent;
  color: var(--cds-text-inverse);
  cursor: pointer;
  display: none;
  height: 3rem;
  justify-content: center;
  padding: 0;
  transition: background-color 110ms, border-color 110ms;
  width: 3rem;
}

@media (max-width: 66rem) {
  .cds--header__menu-trigger {
    display: flex;
  }
  
  .cds--header__nav {
    display: none;
  }
}

.cds--header__menu-trigger:hover {
  background-color: var(--cds-layer-hover-01);
}

.cds--header__menu-trigger:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

.cds--header__menu-trigger svg {
  fill: var(--cds-text-inverse);
  height: 1.25rem;
  width: 1.25rem;
}

/* Side Navigation (for mobile) */
.cds--side-nav {
  background-color: var(--cds-background-inverse);
  height: 100vh;
  left: -16rem;
  position: fixed;
  top: 0;
  transition: left 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 16rem;
  z-index: 6001;
}

.cds--side-nav--expanded {
  left: 0;
}

.cds--side-nav__overlay {
  background-color: var(--cds-overlay);
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
  visibility: hidden;
  width: 100vw;
  z-index: 6000;
}

.cds--side-nav__overlay--show {
  opacity: 1;
  visibility: visible;
}

/* Apply UI Shell to Header */
.header {
  background-color: var(--cds-background-inverse);
  height: 3rem;
  position: relative;
  z-index: 6000;
}

.header .dnd-section {
  background-color: var(--cds-background-inverse);
  border-bottom: 1px solid var(--cds-border-subtle-01);
  padding: 0;
  height: 3rem;
}

.header__container {
  align-items: center;
  background-color: var(--cds-background-inverse);
  color: var(--cds-text-inverse);
  display: flex;
  height: 3rem;
  justify-content: space-between;
  padding: 0 var(--cds-spacing-05);
  position: relative;
}

/* Override all existing header styles with Carbon UI Shell */
.header__logo {
  align-items: center;
  color: var(--cds-text-inverse);
  display: flex;
  font-size: var(--cds-body-01-font-size);
  font-weight: 600;
  height: 3rem;
  letter-spacing: 0.1px;
  line-height: 1.29;
  margin-right: auto;
  max-width: none;
  overflow: visible;
  padding: 0;
  text-decoration: none;
  transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--cds-text-inverse);
}

.header__logo img {
  max-height: 2rem;
  max-width: none;
  width: auto;
}

/* Navigation Menu Carbon Styling */
.hs-menu-wrapper {
  display: flex;
  height: 3rem;
}

.hs-menu-wrapper ul {
  background-color: transparent;
  display: flex;
  height: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-menu-wrapper li {
  display: flex;
  height: 3rem;
}

.hs-menu-wrapper a {
  align-items: center;
  background-color: transparent;
  border: 2px solid transparent;
  color: var(--cds-text-inverse);
  cursor: pointer;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  font-weight: 400;
  height: 3rem;
  letter-spacing: 0;
  line-height: 1.29;
  padding: 0 var(--cds-spacing-05);
  position: relative;
  text-decoration: none;
  transition: background-color 110ms, border-color 110ms, color 110ms;
  user-select: none;
  white-space: nowrap;
}

.hs-menu-wrapper a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--cds-text-inverse);
}

.hs-menu-wrapper a:focus {
  border-color: var(--cds-focus-inverse);
  outline: none;
}

.hs-menu-wrapper a:active {
  background-color: rgba(255, 255, 255, 0.2);
}
/* ==========================================================================
   Carbon Design System Layout Components
   Section spacing, content areas, and layout utilities
========================================================================== */

/* Carbon Content Areas */
.carbon-content {
  background-color: var(--cds-background);
  min-height: calc(100vh - 3rem); /* Account for header height */
}

.carbon-section {
  padding: var(--cds-spacing-10) 0;
}

.carbon-section--sm {
  padding: var(--cds-spacing-08) 0;
}

.carbon-section--lg {
  padding: var(--cds-spacing-12) 0;
}

.carbon-section--xl {
  padding: var(--cds-spacing-13) 0;
}

/* Layer Backgrounds */
.carbon-section--layer-01 {
  background-color: var(--cds-layer-01);
}

.carbon-section--layer-02 {
  background-color: var(--cds-layer-02);
}

.carbon-section--layer-03 {
  background-color: var(--cds-layer-03);
}

.carbon-section--inverse {
  background-color: var(--cds-background-inverse);
  color: var(--cds-text-inverse);
}

.carbon-section--brand {
  background-color: var(--cds-background-brand);
  color: var(--cds-text-on-color);
}

/* Content Width Containers */
.carbon-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 99rem;
  padding-left: var(--cds-spacing-05);
  padding-right: var(--cds-spacing-05);
}

.carbon-container--narrow {
  max-width: 66rem;
}

.carbon-container--condensed {
  padding-left: var(--cds-spacing-03);
  padding-right: var(--cds-spacing-03);
}

/* Breadcrumb */
.cds--breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--cds-spacing-05);
}

.cds--breadcrumb-item {
  align-items: center;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  line-height: var(--cds-body-01-line-height);
}

.cds--breadcrumb-item::after {
  color: var(--cds-text-secondary);
  content: '/';
  margin: 0 var(--cds-spacing-03);
}

.cds--breadcrumb-item:last-child::after {
  content: none;
}

.cds--breadcrumb-item--current {
  color: var(--cds-text-primary);
  font-weight: 600;
}

.cds--breadcrumb__link {
  color: var(--cds-link-primary);
  text-decoration: none;
  transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--breadcrumb__link:hover {
  color: var(--cds-link-primary-hover);
  text-decoration: underline;
}

.cds--breadcrumb__link:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Content Switcher */
.cds--content-switcher {
  display: flex;
  height: 2.5rem;
  width: fit-content;
}

.cds--content-switcher-btn {
  align-items: center;
  background-color: var(--cds-layer-accent-01);
  border: 1px solid var(--cds-border-strong-01);
  color: var(--cds-text-secondary);
  cursor: pointer;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  height: 2.5rem;
  justify-content: center;
  line-height: var(--cds-body-01-line-height);
  margin: 0;
  outline: 2px solid transparent;
  outline-offset: -2px;
  overflow: hidden;
  padding: 0 var(--cds-spacing-05);
  position: relative;
  text-decoration: none;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  white-space: nowrap;
}

.cds--content-switcher-btn:first-of-type {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.cds--content-switcher-btn:last-of-type {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.cds--content-switcher-btn:not(:first-of-type) {
  border-left: none;
}

.cds--content-switcher-btn:hover {
  background-color: var(--cds-layer-hover-01);
  color: var(--cds-text-primary);
}

.cds--content-switcher-btn:focus,
.cds--content-switcher-btn:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--content-switcher-btn--selected {
  background-color: var(--cds-layer-selected);
  color: var(--cds-text-primary);
  z-index: 3;
}

.cds--content-switcher-btn--selected:hover {
  background-color: var(--cds-layer-selected-hover);
}

/* Tabs */
.cds--tabs {
  border-bottom: 1px solid var(--cds-border-subtle-01);
  color: var(--cds-text-primary);
  height: auto;
  min-height: 3rem;
  width: 100%;
}

.cds--tabs__nav {
  box-sizing: border-box;
  display: flex;
  height: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.cds--tabs__nav-item {
  background-color: transparent;
  cursor: pointer;
  height: 3rem;
  position: relative;
}

.cds--tabs__nav-link {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--cds-text-secondary);
  cursor: pointer;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  font-weight: 400;
  height: 3rem;
  line-height: var(--cds-body-01-line-height);
  margin: 0;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0 var(--cds-spacing-05);
  position: relative;
  text-decoration: none;
  transition: border-bottom-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
  white-space: nowrap;
  width: 100%;
}

.cds--tabs__nav-link:hover {
  border-bottom-color: var(--cds-border-interactive);
  color: var(--cds-text-primary);
}

.cds--tabs__nav-link:focus,
.cds--tabs__nav-link:active {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--tabs__nav-item--selected .cds--tabs__nav-link {
  border-bottom-color: var(--cds-border-interactive);
  color: var(--cds-text-primary);
}

/* Progress Indicator */
.cds--progress {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cds--progress-step {
  align-items: center;
  display: flex;
  position: relative;
}

.cds--progress-step:not(:last-child)::after {
  background-color: var(--cds-border-subtle-01);
  content: '';
  height: 1px;
  min-width: 3rem;
  position: relative;
}

.cds--progress-step--complete::after,
.cds--progress-step--current::after {
  background-color: var(--cds-interactive);
}

.cds--progress-step-button {
  align-items: center;
  background-color: transparent;
  border: none;
  color: var(--cds-text-secondary);
  cursor: pointer;
  display: flex;
  font-size: var(--cds-body-01-font-size);
  line-height: var(--cds-body-01-line-height);
  max-width: 9rem;
  min-height: 1.5rem;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0;
  position: relative;
  text-align: left;
  transition: outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9), color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
}

.cds--progress-step-button:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.cds--progress-step--current .cds--progress-step-button,
.cds--progress-step--complete .cds--progress-step-button {
  color: var(--cds-text-primary);
}

/* Spacing Utilities */
.carbon-mb-03 { margin-bottom: var(--cds-spacing-03); }
.carbon-mb-05 { margin-bottom: var(--cds-spacing-05); }
.carbon-mb-06 { margin-bottom: var(--cds-spacing-06); }
.carbon-mb-07 { margin-bottom: var(--cds-spacing-07); }
.carbon-mb-08 { margin-bottom: var(--cds-spacing-08); }
.carbon-mb-09 { margin-bottom: var(--cds-spacing-09); }
.carbon-mb-10 { margin-bottom: var(--cds-spacing-10); }

.carbon-mt-03 { margin-top: var(--cds-spacing-03); }
.carbon-mt-05 { margin-top: var(--cds-spacing-05); }
.carbon-mt-06 { margin-top: var(--cds-spacing-06); }
.carbon-mt-07 { margin-top: var(--cds-spacing-07); }
.carbon-mt-08 { margin-top: var(--cds-spacing-08); }
.carbon-mt-09 { margin-top: var(--cds-spacing-09); }
.carbon-mt-10 { margin-top: var(--cds-spacing-10); }

.carbon-pb-03 { padding-bottom: var(--cds-spacing-03); }
.carbon-pb-05 { padding-bottom: var(--cds-spacing-05); }
.carbon-pb-06 { padding-bottom: var(--cds-spacing-06); }
.carbon-pb-07 { padding-bottom: var(--cds-spacing-07); }
.carbon-pb-08 { padding-bottom: var(--cds-spacing-08); }
.carbon-pb-09 { padding-bottom: var(--cds-spacing-09); }
.carbon-pb-10 { padding-bottom: var(--cds-spacing-10); }

.carbon-pt-03 { padding-top: var(--cds-spacing-03); }
.carbon-pt-05 { padding-top: var(--cds-spacing-05); }
.carbon-pt-06 { padding-top: var(--cds-spacing-06); }
.carbon-pt-07 { padding-top: var(--cds-spacing-07); }
.carbon-pt-08 { padding-top: var(--cds-spacing-08); }
.carbon-pt-09 { padding-top: var(--cds-spacing-09); }
.carbon-pt-10 { padding-top: var(--cds-spacing-10); }
/* ==========================================================================
   Carbon Design System Header
   Complete header transformation to match Carbon UI Shell
========================================================================== */

/* Header DND sections */
.header .dnd-section {
  padding: 0;
  background-color: var(--cds-background-inverse);
  border-bottom: 1px solid var(--cds-border-subtle-01);
}

/* Header container - Carbon UI Shell styling */
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--cds-background-inverse);
  color: var(--cds-text-inverse);
  height: 3rem;
  padding: 0 var(--cds-spacing-05);
  max-width: 100%;
  margin: 0 auto;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* Header Logo - Carbon styling */
.header__logo {
  align-items: center;
  display: flex;
  height: 3rem;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
  padding: 0;
  color: var(--cds-text-inverse);
  text-decoration: none;
}

.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;
  }}

/* 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%;
}

/* ==========================================================================
   HubSpot Default Module Carbon Overrides
   Apply Carbon Design System styling to default HubSpot modules
========================================================================== */

/* Rich Text Module - Apply Carbon Typography */
.hs_cos_wrapper_type_rich_text h1 {
  font-size: var(--cds-productive-heading-05-font-size, 2rem);
  font-weight: var(--cds-productive-heading-05-font-weight, 400);
  line-height: var(--cds-productive-heading-05-line-height, 1.25);
  color: var(--cds-text-primary);
  margin-bottom: var(--cds-spacing-05);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

.hs_cos_wrapper_type_rich_text h2 {
  font-size: var(--cds-productive-heading-04-font-size);
  font-weight: var(--cds-productive-heading-04-font-weight);
  line-height: var(--cds-productive-heading-04-line-height);
  color: var(--cds-text-primary);
  margin-bottom: var(--cds-spacing-04);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

.hs_cos_wrapper_type_rich_text h3 {
  font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
  font-weight: var(--cds-productive-heading-03-font-weight, 400);
  line-height: var(--cds-productive-heading-03-line-height, 1.4);
  color: var(--cds-text-primary);
  margin-bottom: var(--cds-spacing-04);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

.hs_cos_wrapper_type_rich_text p {
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  line-height: var(--cds-body-01-line-height);
  letter-spacing: var(--cds-body-01-letter-spacing);
  color: var(--cds-text-primary);
  margin-bottom: var(--cds-spacing-05);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* Form Module - Apply Carbon Form Styling */
.hs-form .hs-form-field {
  margin-bottom: var(--cds-spacing-05);
}

.hs-form .hs-form-field > label {
  color: var(--cds-text-secondary);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.32px;
  margin-bottom: var(--cds-spacing-03);
  vertical-align: baseline;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

.hs-form .hs-input[type="text"],
.hs-form .hs-input[type="email"],
.hs-form .hs-input[type="tel"],
.hs-form .hs-input[type="number"],
.hs-form .hs-input[type="password"],
.hs-form textarea.hs-input {
  background-color: var(--cds-layer-01);
  border: none;
  border-bottom: 1px solid var(--cds-border-strong-01);
  color: var(--cds-text-primary);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 2.5rem;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0 var(--cds-spacing-05);
  transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9),
    outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 100%;
  border-radius: 0;
}

.hs-form textarea.hs-input {
  min-height: 2.5rem;
  height: auto;
  padding: var(--cds-spacing-03) var(--cds-spacing-05);
  resize: vertical;
}

.hs-form .hs-input[type="text"]:focus,
.hs-form .hs-input[type="email"]:focus,
.hs-form .hs-input[type="tel"]:focus,
.hs-form .hs-input[type="number"]:focus,
.hs-form .hs-input[type="password"]:focus,
.hs-form textarea.hs-input:focus {
  background-color: var(--cds-layer-01);
  border-bottom-color: var(--cds-focus);
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.hs-form .hs-input::placeholder {
  color: var(--cds-text-placeholder);
  font-weight: var(--cds-body-01-font-weight);
  opacity: 1;
}

.hs-form select.hs-input {
  appearance: none;
  background-color: var(--cds-layer-01);
  border: none;
  border-bottom: 1px solid var(--cds-border-strong-01);
  border-radius: 0;
  color: var(--cds-text-primary);
  cursor: pointer;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 2.5rem;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 0 var(--cds-spacing-09) 0 var(--cds-spacing-05);
  transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9),
    outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  width: 100%;
}

.hs-form select.hs-input:focus {
  background-color: var(--cds-layer-01);
  border-bottom-color: var(--cds-focus);
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Form Submit Button - Apply Carbon Button Styling */
.hs-form .hs-button[type="submit"],
.hs-form input[type="submit"].hs-button {
  align-items: center;
  background-color: var(--cds-background-brand);
  border: 1px solid var(--cds-background-brand);
  border-radius: 0;
  color: var(--cds-text-on-color);
  cursor: pointer;
  display: inline-flex;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 3rem;
  justify-content: center;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  margin: 0;
  max-width: 20rem;
  min-width: 0;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: calc(0.875rem - 1px) calc(4rem - 1px) calc(0.875rem - 1px) calc(1rem - 1px);
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  vertical-align: top;
  white-space: nowrap;
  width: auto;
}

.hs-form .hs-button[type="submit"]:hover,
.hs-form input[type="submit"].hs-button:hover {
  background-color: #0353e9;
  border-color: #0353e9;
}

.hs-form .hs-button[type="submit"]:focus,
.hs-form input[type="submit"].hs-button:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.hs-form .hs-button[type="submit"]:active,
.hs-form input[type="submit"].hs-button:active {
  background-color: #002d9c;
  border-color: #002d9c;
}

/* CTA Module - Apply Carbon Button Styling */
.hs_cos_wrapper_type_cta .hs-cta-wrapper a,
.hs_cos_wrapper_type_cta .cta_button {
  align-items: center;
  background-color: var(--cds-background-brand);
  border: 1px solid var(--cds-background-brand);
  border-radius: 0;
  color: var(--cds-text-on-color);
  cursor: pointer;
  display: inline-flex;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  height: 3rem;
  justify-content: center;
  letter-spacing: var(--cds-body-01-letter-spacing);
  line-height: var(--cds-body-01-line-height);
  margin: 0;
  max-width: 20rem;
  min-width: 0;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: calc(0.875rem - 1px) calc(4rem - 1px) calc(0.875rem - 1px) calc(1rem - 1px);
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  vertical-align: top;
  white-space: nowrap;
  width: auto;
}

.hs_cos_wrapper_type_cta .hs-cta-wrapper a:hover,
.hs_cos_wrapper_type_cta .cta_button:hover {
  background-color: #0353e9;
  border-color: #0353e9;
  text-decoration: none;
}

.hs_cos_wrapper_type_cta .hs-cta-wrapper a:focus,
.hs_cos_wrapper_type_cta .cta_button:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

.hs_cos_wrapper_type_cta .hs-cta-wrapper a:active,
.hs_cos_wrapper_type_cta .cta_button:active {
  background-color: #002d9c;
  border-color: #002d9c;
}

/* ==========================================================================
   Carbon Design System Page Layout
   Apply Carbon layering and spacing to all page sections
========================================================================== */

/* DND Section Carbon Transformation */
[class*="dnd-section"] {
  background-color: var(--cds-layer-01);
  margin: 0;
  padding: var(--cds-spacing-09) var(--cds-spacing-05);
  border: none;
}

[class*="dnd-section"]:nth-child(even) {
  background-color: var(--cds-layer-02);
}

[class*="dnd-section"]:first-child {
  background-color: var(--cds-background);
}

/* DND Column spacing */
[class*="dnd-column"] {
  padding: var(--cds-spacing-05);
}

/* DND Row spacing */
[class*="dnd-row"] {
  margin-bottom: var(--cds-spacing-06);
}

[class*="dnd-row"]:last-child {
  margin-bottom: 0;
}

/* Hero section specific styling */
.body-container--home [class*="dnd-section"]:first-child {
  background: linear-gradient(135deg, var(--cds-background-inverse) 0%, #0f62fe 100%);
  color: var(--cds-text-inverse);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.body-container--home [class*="dnd-section"]:first-child h1 {
  color: var(--cds-text-inverse);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.19;
  margin-bottom: var(--cds-spacing-07);
}

.body-container--home [class*="dnd-section"]:first-child p {
  color: var(--cds-text-inverse);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: var(--cds-spacing-07);
  opacity: 0.9;
}

/* Make form inputs visible on dark backgrounds */
.body-container--home [class*="dnd-section"]:first-child .hs-form .hs-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  color: var(--cds-text-inverse);
}

.body-container--home [class*="dnd-section"]:first-child .hs-form .hs-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.body-container--home [class*="dnd-section"]:first-child .hs-form .hs-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: var(--cds-focus);
}

/* Content sections styling */
.body-container--home [class*="dnd-section"]:not(:first-child) {
  padding: var(--cds-spacing-10) var(--cds-spacing-05);
}

/* Image styling */
.hs_cos_wrapper_type_linked_image img {
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

/* Navigation Menu - Carbon styling */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
  background-color: var(--cds-background-inverse);
}

.hs-menu-wrapper a {
  color: var(--cds-text-inverse);
  text-decoration: none;
  padding: var(--cds-spacing-04) var(--cds-spacing-05);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--cds-body-01-font-size);
  font-weight: var(--cds-body-01-font-weight);
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
  display: block;
}

.hs-menu-wrapper a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--cds-text-inverse);
}

.hs-menu-wrapper a:focus {
  outline: 2px solid var(--cds-focus);
  outline-offset: -2px;
}

/* Templates
Page-specific styling
*/

/* ==========================================================================
   Carbon Design System Homepage Template
   Complete Carbon layout implementation for home page
========================================================================== */

/* Carbon Home Page Container */
.carbon-home-page {
  background-color: var(--cds-background);
  color: var(--cds-text-primary);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
}

/* ==========================================================================
   Carbon Hero Section
========================================================================== */

.carbon-hero {
  background: linear-gradient(135deg, var(--cds-background-inverse) 0%, var(--cds-background-brand) 100%);
  color: var(--cds-text-inverse);
  padding: var(--cds-spacing-10) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.carbon-hero h1 {
  color: var(--cds-text-inverse);
  margin-bottom: var(--cds-spacing-07);
  max-width: 12ch;
}

.carbon-hero p {
  color: var(--cds-text-inverse);
  margin-bottom: var(--cds-spacing-08);
  opacity: 0.9;
  max-width: 65ch;
}

.carbon-hero__actions {
  display: flex;
  gap: var(--cds-spacing-05);
  flex-wrap: wrap;
  margin-bottom: var(--cds-spacing-07);
}

.carbon-hero__actions .cds--btn--secondary {
  background-color: transparent;
  border-color: var(--cds-text-inverse);
  color: var(--cds-text-inverse);
}

.carbon-hero__actions .cds--btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--cds-text-inverse);
  color: var(--cds-text-inverse);
}

/* Hero Form Styling */
.carbon-hero__form {
  background-color: var(--cds-layer-01);
  padding: var(--cds-spacing-07);
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carbon-hero__form h3 {
  color: var(--cds-text-primary);
  margin-bottom: var(--cds-spacing-06);
}

.carbon-hero__form .cds--form-item {
  margin-bottom: var(--cds-spacing-05);
}

.carbon-hero__form .cds--btn {
  margin-top: var(--cds-spacing-05);
  width: 100%;
}

/* ==========================================================================
   Carbon Content Sections
========================================================================== */

.carbon-content-section {
  background-color: var(--cds-layer-01);
  padding: var(--cds-spacing-10) 0;
}

.carbon-content-section--alt {
  background-color: var(--cds-layer-02);
}

.carbon-content-section h2 {
  margin-bottom: var(--cds-spacing-06);
}

.carbon-content-section p {
  margin-bottom: var(--cds-spacing-05);
  max-width: 65ch;
}

.carbon-content-section .cds--btn {
  margin-top: var(--cds-spacing-05);
}

.carbon-content__image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--cds-spacing-06);
}

/* Feature List Grid */
.carbon-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--cds-spacing-05);
  margin-top: var(--cds-spacing-07);
}

@media (min-width: 42rem) {
  .carbon-feature-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.carbon-feature-list .cds--tile {
  padding: var(--cds-spacing-06);
  margin-bottom: 0;
}

.carbon-feature-list .cds--tile h3 {
  margin-bottom: var(--cds-spacing-04);
}

.carbon-feature-list .cds--tile p {
  margin-bottom: 0;
}

/* ==========================================================================
   Carbon CTA Section
========================================================================== */

.carbon-cta-section {
  background: linear-gradient(135deg, var(--cds-background-brand) 0%, #0043ce 100%);
  padding: var(--cds-spacing-10) 0;
  text-align: center;
}

.carbon-cta {
  padding: var(--cds-spacing-08) var(--cds-spacing-06);
}

.carbon-cta h2 {
  color: var(--cds-text-on-color);
  margin-bottom: var(--cds-spacing-05);
}

.carbon-cta p {
  color: var(--cds-text-on-color);
  margin-bottom: var(--cds-spacing-07);
  opacity: 0.9;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.carbon-cta__actions {
  display: flex;
  gap: var(--cds-spacing-05);
  justify-content: center;
  flex-wrap: wrap;
}

.carbon-cta__actions .cds--btn--ghost {
  background-color: transparent;
  border-color: var(--cds-text-on-color);
  color: var(--cds-text-on-color);
}

.carbon-cta__actions .cds--btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--cds-text-on-color);
  color: var(--cds-text-on-color);
}

/* ==========================================================================
   Responsive Adjustments
========================================================================== */

@media (max-width: 41.99rem) {
  .carbon-hero {
    padding: var(--cds-spacing-08) 0;
    min-height: 50vh;
  }
  
  .carbon-hero__actions {
    flex-direction: column;
  }
  
  .carbon-hero__actions .cds--btn {
    width: 100%;
    max-width: none;
  }
  
  .carbon-hero__form {
    margin-top: var(--cds-spacing-07);
  }
  
  .carbon-content-section {
    padding: var(--cds-spacing-08) 0;
  }
  
  .carbon-cta__actions {
    flex-direction: column;
  }
  
  .carbon-cta__actions .cds--btn {
    width: 100%;
    max-width: none;
  }
}

/* ==========================================================================
   Theme Palette Specific Overrides
========================================================================== */

/* Dark theme adjustments */
[data-carbon-theme="dark"] .carbon-hero__form {
  background-color: var(--cds-layer-02);
}

[data-carbon-theme="dark"] .carbon-content__image {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* High contrast theme adjustments */
[data-carbon-theme="high-contrast"] .carbon-hero {
  background: var(--cds-background-inverse);
}

[data-carbon-theme="high-contrast"] .carbon-cta-section {
  background: var(--cds-background-brand);
}

/* Custom brand theme adjustments */
[data-carbon-theme="custom-brand"] .carbon-hero {
  background: linear-gradient(135deg, var(--carbon-brand-secondary) 0%, var(--carbon-brand-primary) 100%);
}

[data-carbon-theme="custom-brand"] .carbon-cta-section {
  background: linear-gradient(135deg, var(--carbon-brand-primary) 0%, var(--carbon-brand-accent) 100%);
}
/* ==========================================================================
   Carbon Showcase Template Styles
   Specific styles for the Carbon Design System showcase page
========================================================================== */

/* Showcase grid improvements */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--cds-spacing-05);
  margin-bottom: var(--cds-spacing-07);
}

/* Section spacing */
.showcase-section {
  margin-bottom: var(--cds-spacing-09);
}

/* Demo tiles in grid */
.demo-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--cds-spacing-05);
  margin-bottom: var(--cds-spacing-06);
}

/* Spacing demonstration bars */
.spacing-demo {
  display: flex;
  align-items: center;
  margin-bottom: var(--cds-spacing-03);
}

.spacing-bar {
  background: var(--cds-background-brand);
  height: 1rem;
  margin-right: var(--cds-spacing-05);
}

/* Color swatch improvements */
.color-swatch {
  padding: var(--cds-spacing-05);
  border-radius: 0;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography showcase improvements */
.typography-showcase .cds--tile {
  padding: var(--cds-spacing-06);
}

.typography-showcase h3 {
  margin-top: var(--cds-spacing-06);
  margin-bottom: var(--cds-spacing-04);
  border-top: 1px solid var(--cds-border-subtle-01);
  padding-top: var(--cds-spacing-05);
}

.typography-showcase h3:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Button showcase improvements */
.button-showcase .cds--tile {
  padding: var(--cds-spacing-06);
}

.button-showcase .cds--btn {
  margin-right: var(--cds-spacing-04);
  margin-bottom: var(--cds-spacing-03);
}

.button-showcase h3 {
  margin-top: var(--cds-spacing-06);
  margin-bottom: var(--cds-spacing-04);
  border-top: 1px solid var(--cds-border-subtle-01);
  padding-top: var(--cds-spacing-05);
}

.button-showcase h3:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Form showcase improvements */
.form-showcase .cds--tile {
  padding: var(--cds-spacing-06);
}

/* Grid demo improvements */
.grid-demo .cds--tile {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--cds-layer-02);
  border: 1px solid var(--cds-border-subtle-01);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .demo-tile-grid {
    grid-template-columns: 1fr;
  }
  
  .button-showcase .cds--btn {
    margin-right: 0;
    margin-bottom: var(--cds-spacing-03);
    width: 100%;
    max-width: none;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* 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;
  }
}