/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Abstracts Index - One Import to Rule Them All!
 *
 * Just use: @use 'abstracts' as *;
 * And you get EVERYTHING!
 */
/**
 * SCSS Functions
 * 
 * Pure functions for calculations, data access, and utility generation.
 * Modern SCSS using @use patterns and proper error handling.
 */
/**
 * Abstracts Index - One Import to Rule Them All!
 *
 * Just use: @use 'abstracts' as *;
 * And you get EVERYTHING!
 */
/**
 * SCSS Mixins
 *
 * Reusable mixins for common patterns and utility generation.
 * Uses simple variable names for easy access.
 */
/**
 * String Replace Function for CSS Class Names
 * @param {string} $string - The string to search in
 * @param {string} $search - The substring to search for
 * @param {string} $replace - The replacement string
 * @return {string} The string with replacements made
 */
/**
 * Media Query Mixin
 * @param {string} $breakpoint - Breakpoint name from $theme-breakpoints map or fitWidth
 * @param {string} $direction - 'min' (default) for min-width or 'max' for max-width
 * @example @include mq(md) { ... }                 // min-width (default)
 * @example @include mq(md, min) { ... }            // min-width (explicit)
 * @example @include mq(md, max) { ... }            // max-width (subtracts 0.0625rem)
 */
/**
 * Line Height Crop - Removes excess spacing above text
 * @param {number} $line-height - The line-height value to crop for
 * @example @include lhCrop(1.2);
 */
/**
 * Generate CSS Custom Properties Only
 * @description Generates :root with all CSS custom properties first
 */
/**
 * Generate Utility Classes Only
 * @description Generates all utility classes without CSS custom properties
 */
/**
 * CSS Utilities from Theme Widths - Generate utility classes from theme.json width configuration
 * @description Uses theme.json custom.width.config.util_data for configuration
 *
 * PATTERN FOR ORBITAL UTILITIES:
 * 1. Check scss_vars flag before generating SCSS variables/maps/functions
 * 2. Check css_props flag before generating CSS custom properties
 * 3. Check utilities flag before generating any utility classes
 * 4. Check responsive flag before generating responsive variants
 * 5. Use: @if variable-exists(theme-{utility}-{flag}) and $theme-{utility}-{flag} == true
 */
/**
 * CSS Utilities from Theme Heights - Generate utility classes from theme.json height configuration
 * @description Uses theme.json custom.height.config.util_data for configuration
 */
/**
 * CSS Utilities from Theme Box Shadows - Generate utility classes from theme.json boxShadow configuration
 * @description Uses theme.json custom.boxShadow.config.util_data for configuration
 */
/**
 * CSS Utilities from Theme Aspect Ratios - Generate utility classes from theme.json aspectRatio configuration
 * @description Generates .has-*-aspect-ratio classes with optimized @supports fallbacks
 */
/**
 * Base column styles
 * Provides consistent padding and box-sizing for all columns
 */
/**
 * Column width styles
 * Sets flex-basis and max-width for consistent column sizing
 *
 * @param {String} $width - The width value (usually a CSS custom property)
 */
/**
 * Base column flex properties
 * Provides the foundation flex behavior for columns
 *
 * @param {Boolean} $is-responsive - Whether this is for responsive variants
 */
/**
 * Generate base column class
 * Creates the fundamental .row__col class with proper base styles
 *
 * @param {String} $prefix - Optional prefix for responsive variants (e.g., '.md\:')
 * @param {Map} $col-widths - Column widths map to use
 */
/**
 * Generate width-based column classes
 * Creates classes like .row__col--1, .row__col--half, etc.
 *
 * @param {String} $prefix - Optional prefix for responsive variants
 * @param {Map} $col-widths - Column widths map to use
 */
/**
 * Generate offset column classes
 * Creates classes like .row__col--offset-1, .row__col--offset-half, etc.
 *
 * @param {String} $prefix - Optional prefix for responsive variants
 * @param {Map} $col-widths - Column widths map to use
 * @param {List} $excluded-keys - Keys to exclude from offset generation
 */
/**
 * Generate all column classes for a given context
 * Combines base, width, and offset column generation
 *
 * @param {String} $prefix - Optional prefix for responsive variants
 * @param {Map} $col-widths - Column widths map to use
 * @param {List} $excluded-offset-keys - Keys to exclude from offset generation
 */
/**
 * Flex grid item for responsive layout
 *
 * Creates a flexible grid item with responsive behavior using CSS custom properties.
 * Follows mobile-first design principles.
 *
 * @param {Number} $base-cols - Column width for base/mobile layout (1-12)
 * @param {String} $breakpoint - Breakpoint name to change at ('sm', 'md', 'lg', 'xl')
 * @param {Number} $break-cols - Column width at breakpoint and above (1-12)
 *
 * @example
 *   // Full width on mobile, half width from tablet up
 *   @include flex-grid-item(12, 'sm', 6);
 *
 *   // Half width on mobile, third width from desktop up
 *   @include flex-grid-item(6, 'lg', 4);
 */
/**
 * Aspect Ratio Mixin
 *
 * Creates aspect ratio with modern property and fallback support.
 * Accepts multiple separator formats but always outputs standard "/" format.
 *
 * @param {String|Number} $ratio - Aspect ratio in various formats
 *
 * Supported formats (quoted strings recommended):
 *   @include aspect('16/9');  // String format (recommended)
 *   @include aspect('16:9');  // Colon separator
 *   @include aspect('16-9');  // Dash separator
 *   @include aspect(1.777);   // Decimal ratio
 *
 * @example
 *   .hero {
 *     @include aspect('16/9');
 *   }
 *
 *   // Always outputs consistent format:
 *   .hero {
 *     aspect-ratio: 16/9;
 *   }
 *   @supports not (aspect-ratio: auto) {
 *     .hero {
 *       padding-top: calc(1 / (16/9) * 100%);
 *       height: 0;
 *       position: relative;
 *       overflow: hidden;
 *     }
 *     .hero > * {
 *       position: absolute;
 *       top: 0;
 *       left: 0;
 *       width: 100%;
 *       height: 100%;
 *     }
 *   }
 */
/**
 * SCSS Placeholders
 *
 * Placeholder selectors for shared styles.
 * Currently empty - all placeholders have been removed as they were unused.
 * Add new placeholders here when needed with @extend functionality.
 */
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-before-form-content .nf-form-fields-required, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-hidden .nf-field .field-wrap .nf-field-label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

:root {
  --font-weight-light: 300;
  --font-weight-regular: 500;
  --font-weight-bold: 600;
  --gutter: var(--wp--preset--spacing--4);
  --gutter-comp: calc(var(--gutter) * -0.5);
  --gutter-half: calc(var(--gutter) * 0.5);
  --gutter-page: var(--gutter);
  --gutter-page-negative: calc(var(--gutter) * -1);
  --height-0: 0;
  --height-1: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  --height-2: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  --height-3: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  --height-4: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  --height-5: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  --height-6: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  --height-7: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  --height-8: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  --height-9: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  --height-10: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  --height-25: 25%;
  --height-50: 50%;
  --height-75: 75%;
  --height-auto: auto;
  --height-full: 100%;
  --height-screen: 100vh;
  --layout-normal: 1300px;
  --letter-spacing-0: -0.1em;
  --letter-spacing-1: -0.05em;
  --letter-spacing-2: -0.025em;
  --letter-spacing-3: 0;
  --letter-spacing-4: 0.025em;
  --letter-spacing-5: 0.05em;
  --letter-spacing-6: 0.1em;
  --line-height-0: 1;
  --line-height-1: 1.15;
  --line-height-2: 1.25;
  --line-height-3: 1.4;
  --line-height-4: 1.6;
  --line-height-5: 2;
  --width-0: 0;
  --width-1: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  --width-2: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  --width-3: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  --width-4: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  --width-5: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  --width-6: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  --width-7: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  --width-8: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  --width-9: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  --width-10: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  --width-50: 50%;
  --width-auto: auto;
  --width-full: 100%;
  --width-screen: 100vw;
  --width-one-fifth: 20%;
  --width-two-fifths: 40%;
  --width-three-fifths: 60%;
  --width-four-fifths: 80%;
  --width-one-half: 50%;
  --width-one-quarter: 25%;
  --width-three-quarters: 75%;
  --width-one-sixth: 16.666667%;
  --width-two-sixths: 33.333333%;
  --width-three-sixths: 50%;
  --width-four-sixths: 66.666667%;
  --width-five-sixths: 83.333333%;
  --width-one-third: 33.333333%;
  --width-two-thirds: 66.666667%;
  --width-one-twelfth: 8.333333%;
  --width-two-twelfths: 16.666667%;
  --width-three-twelfths: 25%;
  --width-four-twelfths: 33.333333%;
  --width-five-twelfths: 41.666667%;
  --width-six-twelfths: 50%;
  --width-seven-twelfths: 58.333333%;
  --width-eight-twelfths: 66.666667%;
  --width-nine-twelfths: 75%;
  --width-ten-twelfths: 83.333333%;
  --width-eleven-twelfths: 91.666667%;
}

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

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * 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
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 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
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          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;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

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

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 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;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * 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, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  width: 100%;
  letter-spacing: var(--letter-spacing-3);
  line-height: var(--line-height-2);
  font-weight: var(--font-weight-regular);
  font-family: var(--wp--preset--font-family--1);
}

h1 {
  font-size: var(--wp--preset--font-size--xxxl);
}

h2 {
  font-size: var(--wp--preset--font-size--xxl);
}

h3 {
  font-size: var(--wp--preset--font-size--xl);
}

h4 {
  font-size: var(--wp--preset--font-size--lg);
}

h5 {
  font-size: var(--wp--preset--font-size--md);
}

h6 {
  font-size: var(--wp--preset--font-size--normal);
}

/*--------------------------------------------------------------
# Paragraph
--------------------------------------------------------------*/
p {
  width: var(--width-full);
  max-width: var(--layout-normal);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-3);
  letter-spacing: var(--letter-spacing-3);
  margin: 0;
}
p a {
  text-decoration: none;
  color: var(--wp--preset--color--pri-0);
}
p a:hover {
  color: var(--wp--preset--color--pri-0);
}

strong {
  font-weight: var(--font-weight-bold);
}

.wp-block-list {
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-3);
  letter-spacing: var(--letter-spacing-3);
  margin: 0 auto var(--wp--preset--spacing--2);
  padding: 0 0 0 var(--wp--preset--spacing--3);
  width: 100%;
}
.wp-block-list li a {
  text-decoration: none;
  color: var(--wp--preset--color--pri-0);
}
.wp-block-list li a:hover {
  color: var(--wp--preset--color--pri-0);
}
.wp-block-list li + li {
  margin-top: var(--gutter-half);
}
.wp-block-list.is-style-list-check-marks {
  margin: 0;
  padding: 0;
}
.wp-block-list.is-style-list-check-marks li {
  padding-left: var(--wp--preset--spacing--4);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-3);
  list-style: none;
  position: relative;
}
.wp-block-list.is-style-list-check-marks li::before {
  display: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f00c";
}
.wp-block-list.is-style-list-check-marks li strong {
  font-weight: var(--font-weight-regular);
}
.wp-block-list.is-style-list-check-marks li > svg {
  display: inline-block;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  font-size: var(--wp--preset--font-size--md);
  color: var(--wp--preset--color--pri-0);
}
.wp-block-list.wp-block-list--split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: var(--gutter-comp);
  margin-right: var(--gutter-comp);
}
.alignfull .wp-block-list.wp-block-list--split {
  max-width: calc(1300px + var(--gutter));
  margin-left: auto;
  margin-right: auto;
}
.wp-block-list.wp-block-list--split li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  padding-left: var(--gutter-half);
  padding-right: var(--gutter-half);
}
@media (min-width: 50.6875rem) {
  .wp-block-list.wp-block-list--split li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 50%;
  }
}
.wp-block-list.wp-block-list--split.is-style-list-check-marks li {
  padding-left: calc(clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem) + var(--gutter-half));
}
.wp-block-list.wp-block-list--split.is-style-list-check-marks svg {
  left: var(--gutter-half);
}

.block-wrapper ol {
  margin: 0;
  padding: 0 0 0 var(--wp--preset--spacing--3);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--line-height-3);
  letter-spacing: var(--letter-spacing-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--gutter) * 0.75) var(--gutter);
}
.block-wrapper ol li::marker {
  color: var(--wp--preset--color--acc-4);
  font-weight: var(--font-weight-bold);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
html,
body {
  background: var(--wp--preset--color--acc-0);
}

body {
  color: var(--wp--preset--color--acc-1);
  font-family: var(--wp--preset--font-family--1);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-3);
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.logger-dev.logger-dev--active:before {
  content: "";
  position: fixed;
  top: 0;
  left: var(--wp--preset--spacing--6);
  bottom: 0;
  width: 1px;
  background: red;
  z-index: 999999;
}
@media (min-width: 50.6875rem) {
  body.logger-dev.logger-dev--active:before {
    left: calc(50vw - (var(--wp--style--global--content-size) + var(--gutter-half)) / 2);
  }
}
body.logger-dev.logger-dev--active:after {
  content: "";
  position: fixed;
  top: 0;
  right: var(--wp--preset--spacing--6);
  bottom: 0;
  width: 1px;
  background: red;
  z-index: 999999;
}
@media (min-width: 50.6875rem) {
  body.logger-dev.logger-dev--active:after {
    right: calc(50vw - (var(--wp--style--global--content-size) + var(--gutter-half)) / 2);
  }
}

img {
  display: block;
}

a {
  color: currentColor;
  text-decoration: underline;
  -webkit-transition: all var(--wp--preset--spacing--1) ease;
  transition: all var(--wp--preset--spacing--1) ease;
}
a:hover {
  color: var(--wp--preset--color--pri-2);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Grid System
 *
 * A clean, maintainable grid system built with modern SCSS patterns.
 * Features responsive columns, offsets, and flexible layouts using CSS custom properties.
 */
/**
 * Grid system configuration
 * Define the core structure and constraints for the grid
 */
/**
 * Column width mappings using theme functions
 * Maps semantic names to theme function values for consistent sizing
 */
/**
 * Keys that should be excluded from offset generation
 * These don't make logical sense as offset values
 */
/**
 * Main row container
 * Provides the foundation flexbox layout for the grid system
 */
.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  width: var(--width-full);
}
.row:not(.alignwide):not(.alignfull):not(.row--gapless) {
  max-width: calc(1300px + var(--gutter));
}
.row .row--gapless .row__col {
  padding-left: 0;
  padding-right: 0;
}
.row .row {
  margin-left: var(--gutter-comp);
  margin-right: var(--gutter-comp);
  width: calc(var(--width-full) + var(--gutter));
}
.block\:group > .row, .footer__content > .row {
  margin-left: var(--gutter-comp);
  margin-right: var(--gutter-comp);
  width: calc(var(--width-full) + var(--gutter));
}

/**
 * Generate base (mobile-first) column classes
 * These classes work without media queries and provide the foundation
 */
.row__col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: var(--gutter-half);
  padding-left: var(--gutter-half);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: var(--width-0);
      flex-basis: var(--width-0);
  max-width: var(--width-full);
}

.row__col--half {
  -ms-flex-preferred-size: var(--width-one-half);
      flex-basis: var(--width-one-half);
  max-width: var(--width-one-half);
}

.row__col--full {
  -ms-flex-preferred-size: var(--width-full);
      flex-basis: var(--width-full);
  max-width: var(--width-full);
}

.row__col--1 {
  -ms-flex-preferred-size: var(--width-one-twelfth);
      flex-basis: var(--width-one-twelfth);
  max-width: var(--width-one-twelfth);
}

.row__col--2 {
  -ms-flex-preferred-size: var(--width-two-twelfths);
      flex-basis: var(--width-two-twelfths);
  max-width: var(--width-two-twelfths);
}

.row__col--3 {
  -ms-flex-preferred-size: var(--width-three-twelfths);
      flex-basis: var(--width-three-twelfths);
  max-width: var(--width-three-twelfths);
}

.row__col--4 {
  -ms-flex-preferred-size: var(--width-four-twelfths);
      flex-basis: var(--width-four-twelfths);
  max-width: var(--width-four-twelfths);
}

.row__col--5 {
  -ms-flex-preferred-size: var(--width-five-twelfths);
      flex-basis: var(--width-five-twelfths);
  max-width: var(--width-five-twelfths);
}

.row__col--6 {
  -ms-flex-preferred-size: var(--width-six-twelfths);
      flex-basis: var(--width-six-twelfths);
  max-width: var(--width-six-twelfths);
}

.row__col--7 {
  -ms-flex-preferred-size: var(--width-seven-twelfths);
      flex-basis: var(--width-seven-twelfths);
  max-width: var(--width-seven-twelfths);
}

.row__col--8 {
  -ms-flex-preferred-size: var(--width-eight-twelfths);
      flex-basis: var(--width-eight-twelfths);
  max-width: var(--width-eight-twelfths);
}

.row__col--9 {
  -ms-flex-preferred-size: var(--width-nine-twelfths);
      flex-basis: var(--width-nine-twelfths);
  max-width: var(--width-nine-twelfths);
}

.row__col--10 {
  -ms-flex-preferred-size: var(--width-ten-twelfths);
      flex-basis: var(--width-ten-twelfths);
  max-width: var(--width-ten-twelfths);
}

.row__col--11 {
  -ms-flex-preferred-size: var(--width-eleven-twelfths);
      flex-basis: var(--width-eleven-twelfths);
  max-width: var(--width-eleven-twelfths);
}

.row__col--12 {
  -ms-flex-preferred-size: var(--width-full);
      flex-basis: var(--width-full);
  max-width: var(--width-full);
}

.row__col--1-fifth {
  -ms-flex-preferred-size: var(--width-one-fifth);
      flex-basis: var(--width-one-fifth);
  max-width: var(--width-one-fifth);
}

.row__col--2-fifth {
  -ms-flex-preferred-size: var(--width-two-fifths);
      flex-basis: var(--width-two-fifths);
  max-width: var(--width-two-fifths);
}

.row__col--3-fifth {
  -ms-flex-preferred-size: var(--width-three-fifths);
      flex-basis: var(--width-three-fifths);
  max-width: var(--width-three-fifths);
}

.row__col--4-fifth {
  -ms-flex-preferred-size: var(--width-four-fifths);
      flex-basis: var(--width-four-fifths);
  max-width: var(--width-four-fifths);
}

.row__col--5-fifth {
  -ms-flex-preferred-size: var(--width-full);
      flex-basis: var(--width-full);
  max-width: var(--width-full);
}

.row__col--offset-0 {
  margin-left: var(--width-0);
}

.row__col--offset-1 {
  margin-left: var(--width-one-twelfth);
}

.row__col--offset-2 {
  margin-left: var(--width-two-twelfths);
}

.row__col--offset-3 {
  margin-left: var(--width-three-twelfths);
}

.row__col--offset-4 {
  margin-left: var(--width-four-twelfths);
}

.row__col--offset-5 {
  margin-left: var(--width-five-twelfths);
}

.row__col--offset-6 {
  margin-left: var(--width-six-twelfths);
}

.row__col--offset-7 {
  margin-left: var(--width-seven-twelfths);
}

.row__col--offset-8 {
  margin-left: var(--width-eight-twelfths);
}

.row__col--offset-9 {
  margin-left: var(--width-nine-twelfths);
}

.row__col--offset-10 {
  margin-left: var(--width-ten-twelfths);
}

.row__col--offset-11 {
  margin-left: var(--width-eleven-twelfths);
}

.row__col--offset-1-fifth {
  margin-left: var(--width-one-fifth);
}

.row__col--offset-2-fifth {
  margin-left: var(--width-two-fifths);
}

.row__col--offset-3-fifth {
  margin-left: var(--width-three-fifths);
}

.row__col--offset-4-fifth {
  margin-left: var(--width-four-fifths);
}

/**
 * Generate responsive column classes
 * Creates breakpoint-prefixed classes for responsive design
 */
@media (min-width: 50.6875rem) {
  .sm\:row__col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: var(--width-0);
        flex-basis: var(--width-0);
    max-width: var(--width-full);
  }
  .sm\:row__col--half {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-half);
        flex-basis: var(--width-one-half);
    max-width: var(--width-one-half);
  }
  .sm\:row__col--full {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .sm\:row__col--1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-twelfth);
        flex-basis: var(--width-one-twelfth);
    max-width: var(--width-one-twelfth);
  }
  .sm\:row__col--2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-twelfths);
        flex-basis: var(--width-two-twelfths);
    max-width: var(--width-two-twelfths);
  }
  .sm\:row__col--3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-twelfths);
        flex-basis: var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
  .sm\:row__col--4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-twelfths);
        flex-basis: var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
  .sm\:row__col--5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-five-twelfths);
        flex-basis: var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
  }
  .sm\:row__col--6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-six-twelfths);
        flex-basis: var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
  .sm\:row__col--7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-seven-twelfths);
        flex-basis: var(--width-seven-twelfths);
    max-width: var(--width-seven-twelfths);
  }
  .sm\:row__col--8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eight-twelfths);
        flex-basis: var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
  .sm\:row__col--9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-nine-twelfths);
        flex-basis: var(--width-nine-twelfths);
    max-width: var(--width-nine-twelfths);
  }
  .sm\:row__col--10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-ten-twelfths);
        flex-basis: var(--width-ten-twelfths);
    max-width: var(--width-ten-twelfths);
  }
  .sm\:row__col--11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eleven-twelfths);
        flex-basis: var(--width-eleven-twelfths);
    max-width: var(--width-eleven-twelfths);
  }
  .sm\:row__col--12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .sm\:row__col--1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-fifth);
        flex-basis: var(--width-one-fifth);
    max-width: var(--width-one-fifth);
  }
  .sm\:row__col--2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-fifths);
        flex-basis: var(--width-two-fifths);
    max-width: var(--width-two-fifths);
  }
  .sm\:row__col--3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-fifths);
        flex-basis: var(--width-three-fifths);
    max-width: var(--width-three-fifths);
  }
  .sm\:row__col--4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-fifths);
        flex-basis: var(--width-four-fifths);
    max-width: var(--width-four-fifths);
  }
  .sm\:row__col--5-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .sm\:row__col--offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-0);
  }
  .sm\:row__col--offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-twelfth);
  }
  .sm\:row__col--offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-twelfths);
  }
  .sm\:row__col--offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-twelfths);
  }
  .sm\:row__col--offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-twelfths);
  }
  .sm\:row__col--offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-five-twelfths);
  }
  .sm\:row__col--offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-six-twelfths);
  }
  .sm\:row__col--offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-seven-twelfths);
  }
  .sm\:row__col--offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eight-twelfths);
  }
  .sm\:row__col--offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-nine-twelfths);
  }
  .sm\:row__col--offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-ten-twelfths);
  }
  .sm\:row__col--offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eleven-twelfths);
  }
  .sm\:row__col--offset-1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-fifth);
  }
  .sm\:row__col--offset-2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-fifths);
  }
  .sm\:row__col--offset-3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-fifths);
  }
  .sm\:row__col--offset-4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-fifths);
  }
}
@media (min-width: 67.5625rem) {
  .md\:row__col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: var(--width-0);
        flex-basis: var(--width-0);
    max-width: var(--width-full);
  }
  .md\:row__col--half {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-half);
        flex-basis: var(--width-one-half);
    max-width: var(--width-one-half);
  }
  .md\:row__col--full {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .md\:row__col--1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-twelfth);
        flex-basis: var(--width-one-twelfth);
    max-width: var(--width-one-twelfth);
  }
  .md\:row__col--2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-twelfths);
        flex-basis: var(--width-two-twelfths);
    max-width: var(--width-two-twelfths);
  }
  .md\:row__col--3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-twelfths);
        flex-basis: var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
  .md\:row__col--4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-twelfths);
        flex-basis: var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
  .md\:row__col--5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-five-twelfths);
        flex-basis: var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
  }
  .md\:row__col--6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-six-twelfths);
        flex-basis: var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
  .md\:row__col--7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-seven-twelfths);
        flex-basis: var(--width-seven-twelfths);
    max-width: var(--width-seven-twelfths);
  }
  .md\:row__col--8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eight-twelfths);
        flex-basis: var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
  .md\:row__col--9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-nine-twelfths);
        flex-basis: var(--width-nine-twelfths);
    max-width: var(--width-nine-twelfths);
  }
  .md\:row__col--10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-ten-twelfths);
        flex-basis: var(--width-ten-twelfths);
    max-width: var(--width-ten-twelfths);
  }
  .md\:row__col--11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eleven-twelfths);
        flex-basis: var(--width-eleven-twelfths);
    max-width: var(--width-eleven-twelfths);
  }
  .md\:row__col--12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .md\:row__col--1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-fifth);
        flex-basis: var(--width-one-fifth);
    max-width: var(--width-one-fifth);
  }
  .md\:row__col--2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-fifths);
        flex-basis: var(--width-two-fifths);
    max-width: var(--width-two-fifths);
  }
  .md\:row__col--3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-fifths);
        flex-basis: var(--width-three-fifths);
    max-width: var(--width-three-fifths);
  }
  .md\:row__col--4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-fifths);
        flex-basis: var(--width-four-fifths);
    max-width: var(--width-four-fifths);
  }
  .md\:row__col--5-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .md\:row__col--offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-0);
  }
  .md\:row__col--offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-twelfth);
  }
  .md\:row__col--offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-twelfths);
  }
  .md\:row__col--offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-twelfths);
  }
  .md\:row__col--offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-twelfths);
  }
  .md\:row__col--offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-five-twelfths);
  }
  .md\:row__col--offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-six-twelfths);
  }
  .md\:row__col--offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-seven-twelfths);
  }
  .md\:row__col--offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eight-twelfths);
  }
  .md\:row__col--offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-nine-twelfths);
  }
  .md\:row__col--offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-ten-twelfths);
  }
  .md\:row__col--offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eleven-twelfths);
  }
  .md\:row__col--offset-1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-fifth);
  }
  .md\:row__col--offset-2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-fifths);
  }
  .md\:row__col--offset-3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-fifths);
  }
  .md\:row__col--offset-4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-fifths);
  }
}
@media (min-width: 85rem) {
  .lg\:row__col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: var(--width-0);
        flex-basis: var(--width-0);
    max-width: var(--width-full);
  }
  .lg\:row__col--half {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-half);
        flex-basis: var(--width-one-half);
    max-width: var(--width-one-half);
  }
  .lg\:row__col--full {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .lg\:row__col--1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-twelfth);
        flex-basis: var(--width-one-twelfth);
    max-width: var(--width-one-twelfth);
  }
  .lg\:row__col--2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-twelfths);
        flex-basis: var(--width-two-twelfths);
    max-width: var(--width-two-twelfths);
  }
  .lg\:row__col--3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-twelfths);
        flex-basis: var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
  .lg\:row__col--4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-twelfths);
        flex-basis: var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
  .lg\:row__col--5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-five-twelfths);
        flex-basis: var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
  }
  .lg\:row__col--6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-six-twelfths);
        flex-basis: var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
  .lg\:row__col--7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-seven-twelfths);
        flex-basis: var(--width-seven-twelfths);
    max-width: var(--width-seven-twelfths);
  }
  .lg\:row__col--8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eight-twelfths);
        flex-basis: var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
  .lg\:row__col--9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-nine-twelfths);
        flex-basis: var(--width-nine-twelfths);
    max-width: var(--width-nine-twelfths);
  }
  .lg\:row__col--10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-ten-twelfths);
        flex-basis: var(--width-ten-twelfths);
    max-width: var(--width-ten-twelfths);
  }
  .lg\:row__col--11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eleven-twelfths);
        flex-basis: var(--width-eleven-twelfths);
    max-width: var(--width-eleven-twelfths);
  }
  .lg\:row__col--12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .lg\:row__col--1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-fifth);
        flex-basis: var(--width-one-fifth);
    max-width: var(--width-one-fifth);
  }
  .lg\:row__col--2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-fifths);
        flex-basis: var(--width-two-fifths);
    max-width: var(--width-two-fifths);
  }
  .lg\:row__col--3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-fifths);
        flex-basis: var(--width-three-fifths);
    max-width: var(--width-three-fifths);
  }
  .lg\:row__col--4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-fifths);
        flex-basis: var(--width-four-fifths);
    max-width: var(--width-four-fifths);
  }
  .lg\:row__col--5-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .lg\:row__col--offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-0);
  }
  .lg\:row__col--offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-twelfth);
  }
  .lg\:row__col--offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-twelfths);
  }
  .lg\:row__col--offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-twelfths);
  }
  .lg\:row__col--offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-twelfths);
  }
  .lg\:row__col--offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-five-twelfths);
  }
  .lg\:row__col--offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-six-twelfths);
  }
  .lg\:row__col--offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-seven-twelfths);
  }
  .lg\:row__col--offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eight-twelfths);
  }
  .lg\:row__col--offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-nine-twelfths);
  }
  .lg\:row__col--offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-ten-twelfths);
  }
  .lg\:row__col--offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eleven-twelfths);
  }
  .lg\:row__col--offset-1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-fifth);
  }
  .lg\:row__col--offset-2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-fifths);
  }
  .lg\:row__col--offset-3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-fifths);
  }
  .lg\:row__col--offset-4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-fifths);
  }
}
@media (min-width: 100rem) {
  .xl\:row__col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: var(--width-0);
        flex-basis: var(--width-0);
    max-width: var(--width-full);
  }
  .xl\:row__col--half {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-half);
        flex-basis: var(--width-one-half);
    max-width: var(--width-one-half);
  }
  .xl\:row__col--full {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .xl\:row__col--1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-twelfth);
        flex-basis: var(--width-one-twelfth);
    max-width: var(--width-one-twelfth);
  }
  .xl\:row__col--2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-twelfths);
        flex-basis: var(--width-two-twelfths);
    max-width: var(--width-two-twelfths);
  }
  .xl\:row__col--3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-twelfths);
        flex-basis: var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
  .xl\:row__col--4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-twelfths);
        flex-basis: var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
  .xl\:row__col--5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-five-twelfths);
        flex-basis: var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
  }
  .xl\:row__col--6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-six-twelfths);
        flex-basis: var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
  .xl\:row__col--7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-seven-twelfths);
        flex-basis: var(--width-seven-twelfths);
    max-width: var(--width-seven-twelfths);
  }
  .xl\:row__col--8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eight-twelfths);
        flex-basis: var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
  .xl\:row__col--9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-nine-twelfths);
        flex-basis: var(--width-nine-twelfths);
    max-width: var(--width-nine-twelfths);
  }
  .xl\:row__col--10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-ten-twelfths);
        flex-basis: var(--width-ten-twelfths);
    max-width: var(--width-ten-twelfths);
  }
  .xl\:row__col--11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-eleven-twelfths);
        flex-basis: var(--width-eleven-twelfths);
    max-width: var(--width-eleven-twelfths);
  }
  .xl\:row__col--12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .xl\:row__col--1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-one-fifth);
        flex-basis: var(--width-one-fifth);
    max-width: var(--width-one-fifth);
  }
  .xl\:row__col--2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-two-fifths);
        flex-basis: var(--width-two-fifths);
    max-width: var(--width-two-fifths);
  }
  .xl\:row__col--3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-three-fifths);
        flex-basis: var(--width-three-fifths);
    max-width: var(--width-three-fifths);
  }
  .xl\:row__col--4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-four-fifths);
        flex-basis: var(--width-four-fifths);
    max-width: var(--width-four-fifths);
  }
  .xl\:row__col--5-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-preferred-size: var(--width-full);
        flex-basis: var(--width-full);
    max-width: var(--width-full);
  }
  .xl\:row__col--offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-0);
  }
  .xl\:row__col--offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-twelfth);
  }
  .xl\:row__col--offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-twelfths);
  }
  .xl\:row__col--offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-twelfths);
  }
  .xl\:row__col--offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-twelfths);
  }
  .xl\:row__col--offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-five-twelfths);
  }
  .xl\:row__col--offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-six-twelfths);
  }
  .xl\:row__col--offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-seven-twelfths);
  }
  .xl\:row__col--offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eight-twelfths);
  }
  .xl\:row__col--offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-nine-twelfths);
  }
  .xl\:row__col--offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-ten-twelfths);
  }
  .xl\:row__col--offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-eleven-twelfths);
  }
  .xl\:row__col--offset-1-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-one-fifth);
  }
  .xl\:row__col--offset-2-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-two-fifths);
  }
  .xl\:row__col--offset-3-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-three-fifths);
  }
  .xl\:row__col--offset-4-fifth {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: var(--gutter-half);
    padding-left: var(--gutter-half);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: var(--width-four-fifths);
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Content Layout & WordPress Alignment System
 *
 * Handles the main content container and WordPress alignment classes.
 * Provides consistent page-level gutters and content width constraints.
 */
/**
 * Main page content container
 * Provides consistent page-level gutters and constrains normal content width
 */
.site-content {
  overflow: hidden;
  padding-inline: var(--gutter-page);
}

.site-content > *:not(.alignwide, .alignfull, .row, .block\:button),
.row__col > *:not(.alignwide, .alignfull, .row, .block\:button),
.block\:inline-popups__content > *:not(.alignwide, .alignfull, .row, .block\:button) {
  max-width: var(--layout-normal);
  margin-inline: auto;
}
.site-content > *:not(.xyz):where(:not(.alignfull, .orb-spacer, .wp-block-separator, .block\:spacer)),
.row__col > *:not(.xyz):where(:not(.alignfull, .orb-spacer, .wp-block-separator, .block\:spacer)),
.block\:inline-popups__content > *:not(.xyz):where(:not(.alignfull, .orb-spacer, .wp-block-separator, .block\:spacer)) {
  margin-block: var(--wp--preset--spacing--3);
}
.site-content > *.block\:spacer + *, .site-content > *.wp-block-separator + *,
.row__col > *.block\:spacer + *,
.row__col > *.wp-block-separator + *,
.block\:inline-popups__content > *.block\:spacer + *,
.block\:inline-popups__content > *.wp-block-separator + * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.site-content > *:has(+ .block\:spacer, + .wp-block-separator),
.row__col > *:has(+ .block\:spacer, + .wp-block-separator),
.block\:inline-popups__content > *:has(+ .block\:spacer, + .wp-block-separator) {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.site-content > *.block\:spacer + *, .site-content > *.wp-block-separator + *,
.row__col > *.block\:spacer + *,
.row__col > *.wp-block-separator + *,
.block\:inline-popups__content > *.block\:spacer + *,
.block\:inline-popups__content > *.wp-block-separator + * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.site-content > *:is(p):has(+ .wp-block-list),
.row__col > *:is(p):has(+ .wp-block-list),
.block\:inline-popups__content > *:is(p):has(+ .wp-block-list) {
  -webkit-margin-after: var(--wp--preset--spacing--3);
          margin-block-end: var(--wp--preset--spacing--3);
}
.site-content > *:is(p) + .wp-block-list,
.row__col > *:is(p) + .wp-block-list,
.block\:inline-popups__content > *:is(p) + .wp-block-list {
  -webkit-margin-before: var(--wp--preset--spacing--3);
          margin-block-start: var(--wp--preset--spacing--3);
}
.site-content > *:first-child,
.row__col > *:first-child,
.block\:inline-popups__content > *:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.site-content > *:last-child,
.row__col > *:last-child,
.block\:inline-popups__content > *:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/**
 * WordPress "Wide" alignment class
 * Allows content to extend beyond normal width constraints
 * Used for elements that need more breathing room
 */
.alignwide, .site-content > .alignwide, .alignwide.footer, .alignwide.header {
  max-width: var(--layout-wide);
}

/**
 * WordPress "Full" alignment class
 * Breaks content out of all width constraints to fill viewport
 * Compensates for page gutters with negative margins
 */
.alignfull, .site-content > .alignfull, .alignfull.footer, .alignfull.header {
  max-width: none;
  width: auto;
  margin-left: calc(-1 * var(--gutter-page));
  margin-right: calc(-1 * var(--gutter-page));
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
}
.alignfull .alignfull, .site-content > .alignfull .alignfull, .alignfull.footer .alignfull, .alignfull.header .alignfull {
  margin-left: calc(-1 * var(--gutter-page));
  margin-right: calc(-1 * var(--gutter-page));
}

/**
 * WordPress "Left" alignment class
 * Floats content to the left with margin for text wrapping
 * Commonly used for images within content
 */
.alignleft {
  float: left;
  margin-right: var(--wp--preset--spacing--3);
  margin-bottom: var(--wp--preset--spacing--3);
}

/**
 * WordPress "Right" alignment class
 * Floats content to the right with margin for text wrapping
 * Commonly used for images within content
 */
.alignright {
  float: right;
  margin-left: var(--wp--preset--spacing--3);
  margin-bottom: var(--wp--preset--spacing--3);
}

/**
 * WordPress "Center" alignment class
 * Centers content horizontally within its container
 * Works for both block and inline-block elements
 */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/**
 * Text Alignment Classes
 * Control text alignment within blocks
 * Used by WordPress block editor text alignment controls
 */
/**
 * Left Text Alignment
 * Aligns text to the left (default for LTR languages)
 */
.has-text-align-left {
  text-align: left;
}

/**
 * Center Text Alignment
 * Centers text within the block
 */
.has-text-align-center {
  text-align: center;
}

/**
 * Right Text Alignment
 * Aligns text to the right
 */
.has-text-align-right {
  text-align: right;
}

/**
 * Justify Text Alignment
 * Justifies text (aligns to both left and right margins)
 */
.has-text-align-justify {
  text-align: justify;
}

/**
 * Block Layout Types
 * WordPress uses these classes to define different layout behaviors for container blocks
 */
/**
 * Flexbox Layout
 * Applied to container blocks (Group, Columns, Buttons) using flex layout
 * Provides foundation for justification and alignment controls
 */
.is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--wp--preset--spacing--3);
}

/**
 * Grid Layout
 * Applied to container blocks using CSS Grid layout
 * Provides more complex layout control than flexbox
 */
.is-layout-grid {
  display: grid;
  gap: var(--wp--preset--spacing--3);
}

/**
 * Flow Layout
 * Default WordPress block layout using normal document flow
 * Blocks stack vertically with standard spacing
 */
.is-layout-flow > * + * {
  margin-top: var(--wp--preset--spacing--4);
}

/**
 * Constrained Layout
 * Layout with max-width constraints and centered alignment
 * Similar to flow but with width limitations
 */
.is-layout-constrained {
  max-width: var(--layout-normal);
  margin-left: auto;
  margin-right: auto;
}
.is-layout-constrained > * + * {
  margin-top: var(--wp--preset--spacing--4);
}

/**
 * Content Justification Classes
 * Control horizontal alignment of inner blocks within container blocks
 * Used by Group, Columns, Buttons blocks with flex layout
 */
/**
 * Left Justification
 * Aligns inner blocks to the left (start) of the container
 */
.is-content-justification-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/**
 * Center Justification
 * Centers inner blocks horizontally within the container
 */
.is-content-justification-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/**
 * Right Justification
 * Aligns inner blocks to the right (end) of the container
 */
.is-content-justification-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/**
 * Space Between Justification
 * Distributes inner blocks with equal space between them
 * First and last blocks touch the container edges
 */
.is-content-justification-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/**
 * Vertical Alignment Classes
 * Control vertical alignment of inner blocks within container blocks
 * Used in combination with layout classes for precise positioning
 */
/**
 * Top Vertical Alignment
 * Aligns inner blocks to the top of the container
 */
.is-vertically-aligned-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/**
 * Center Vertical Alignment
 * Centers inner blocks vertically within the container
 */
.is-vertically-aligned-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/**
 * Bottom Vertical Alignment
 * Aligns inner blocks to the bottom of the container
 */
.is-vertically-aligned-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/**
 * Position Classes
 * Control both horizontal and vertical positioning of inner blocks
 * Used by Cover block and other overlay/positioning contexts
 * Works with both Flexbox and CSS Grid layouts
 */
/**
 * Top Row Positions
 * Align content to the top with different horizontal alignments
 */
.is-position-top-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.is-position-top-left.block\:group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.is-position-top-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.is-position-top-center.block\:group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-position-top-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.is-position-top-right.block\:group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/**
 * Center Row Positions
 * Align content to the center vertically with different horizontal alignments
 */
.is-position-center-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-position-center-left.block\:group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.is-position-center-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-position-center-center.block\:group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-position-center-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-position-center-right.block\:group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/**
 * Bottom Row Positions
 * Align content to the bottom with different horizontal alignments
 */
.is-position-bottom-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.is-position-bottom-left.block\:group {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.is-position-bottom-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.is-position-bottom-center.block\:group {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-position-bottom-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.is-position-bottom-right.block\:group {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.archive-posts-container {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--gutter);
}
.archive-posts-container > .row__col {
  display: contents !important;
}
.archive-posts-container a {
  text-decoration: none;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.site-header {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 var(--gutter-page);
  z-index: 100;
  background: var(--wp--preset--color--acc-0);
}
@media (min-width: 50.6875rem) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
.site-header > svg {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  pointer-events: none;
}
.site-header .site-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--wp--preset--spacing--1);
  padding-top: var(--wp--preset--spacing--4);
  padding-bottom: var(--wp--preset--spacing--3);
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--layout-normal);
  width: 100%;
}
@media (min-width: 50.6875rem) {
  .site-header .site-header__content {
    gap: initial;
    padding-top: var(--wp--preset--spacing--4);
    padding-bottom: calc(clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem) * 1.5);
  }
  .site-header .site-header__content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: var(--wp--preset--color--acc-2);
    margin-left: calc(50% - 50vw);
    z-index: 0;
  }
}
.site-header .site-header__logo svg {
  display: block;
  height: var(--wp--preset--spacing--4);
  width: auto;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: height 0.5s cubic-bezier(0.61, 1, 0.88, 1);
  transition: height 0.5s cubic-bezier(0.61, 1, 0.88, 1);
  z-index: 1;
  position: relative;
}
@media (min-width: 50.6875rem) {
  .site-header .site-header__logo svg {
    height: var(--wp--preset--spacing--5);
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.site-footer {
  display: block;
  margin: 0;
  padding: 0 var(--gutter-page);
  z-index: 100;
  background: var(--wp--preset--color--acc-4);
  color: var(--wp--preset--color--acc-3);
  padding: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem) var(--gutter-page);
}
@media (min-width: 50.6875rem) {
  .site-footer {
    padding: var(--wp--preset--spacing--4) var(--gutter-page) var(--wp--preset--spacing--6);
  }
}
.site-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: var(--layout-normal);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--5);
  width: 100%;
}
@media (min-width: 50.6875rem) {
  .site-footer__main {
    gap: var(--wp--preset--spacing--4);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.site-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--wp--preset--spacing--5);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 50.6875rem) {
  .site-footer__left {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    text-align: left;
    gap: var(--wp--preset--spacing--4);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 var(--width-five-twelfths);
            flex: 1 1 var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
  }
}

.site-footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--2);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: clr("base-white");
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 50.6875rem) {
  .site-footer__right {
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 var(--width-four-twelfths);
            flex: 1 1 var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
}

.site-footer .site-footer__logo {
  display: contents;
}
.site-footer .site-footer__logo svg {
  display: block;
  height: var(--wp--preset--spacing--5);
  width: auto;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: height 0.5s cubic-bezier(0.61, 1, 0.88, 1);
  transition: height 0.5s cubic-bezier(0.61, 1, 0.88, 1);
  z-index: 1;
  position: relative;
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__logo svg {
    height: var(--wp--preset--spacing--5);
  }
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__logo {
    display: initial;
  }
}
.site-footer .site-footer__address {
  font-style: normal;
}
.site-footer p {
  font-size: var(--wp--preset--font-size--sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-3);
  color: var(--wp--preset--color--acc-3);
  margin-bottom: 0;
}
@media (min-width: 50.6875rem) {
  .site-footer p {
    font-size: var(--wp--preset--font-size--normal);
  }
}
.site-footer .site-footer__sub {
  margin-bottom: var(--wp--preset--spacing--4);
}
.site-footer .site-footer__sub h4 {
  font-size: var(--wp--preset--font-size--xxl);
  font-weight: var(--font-weight-bold);
  color: var(--wp--preset--color--pri-2);
  margin-bottom: var(--wp--preset--spacing--2);
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__sub h4 {
    margin-bottom: var(--wp--preset--spacing--1);
  }
}
.site-footer .site-footer__sub p {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--acc-1);
  margin-bottom: var(--wp--preset--spacing--3);
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__sub p {
    font-size: var(--wp--preset--font-size--md);
  }
}
.site-footer .site-footer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--3);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e3e3e3;
  padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--2) var(--wp--preset--spacing--2);
  border-radius: calc(var(--wp--preset--spacing--6) / 2 + var(--wp--preset--spacing--2));
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__cta {
    gap: var(--wp--preset--spacing--4);
    border-radius: 0;
    background: initial;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.site-footer .site-footer__cta h4 {
  font-size: var(--wp--preset--font-size--xxl);
  font-weight: var(--font-weight-bold);
  color: var(--wp--preset--color--pri-2);
  margin-bottom: var(--wp--preset--spacing--1);
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__cta h4 {
    font-weight: var(--font-weight-regular);
    font-size: var(--wp--preset--font-size--xxxxl);
  }
}
.site-footer .site-footer__cta a {
  border: none;
  border-radius: calc(var(--wp--preset--spacing--6) / 2);
  padding: calc(var(--wp--preset--spacing--3) * 0.75) var(--wp--preset--spacing--4);
  width: 100%;
  height: var(--wp--preset--spacing--6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-4);
  line-height: 1;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (min-width: 50.6875rem) {
  .site-footer .site-footer__cta a {
    height: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (hover: hover) and (pointer: fine) {
  .site-footer .site-footer__cta a:hover {
    background: var(--wp--preset--color--pri-2);
  }
}

.site-content-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.site-content-end .site-content-end__shape {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}
.site-content-end .site-content-end__shape .site-content-end__shape--top {
  fill: var(--wp--preset--color--acc-0);
}
.site-content-end .site-content-end__shape .site-content-end__shape--bot {
  fill: var(--wp--preset--color--acc-4);
}

.sub-form {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--wp--preset--spacing--1);
  padding: var(--wp--preset--spacing--1);
  border-radius: var(--wp--preset--spacing--5);
  background: #fff;
  clear: left;
  line-height: 1;
}
.sub-form form {
  display: contents;
}
.sub-form .sub-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sub-form .sub-form__field label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sub-form .sub-form__field input {
  border: none;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  line-height: 1;
}
.sub-form .sub-form__field--email {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: calc(var(--wp--preset--spacing--5) - var(--wp--preset--spacing--1));
}
.sub-form .sub-form__field--email input {
  border-radius: calc(var(--wp--preset--spacing--5) - var(--wp--preset--spacing--1));
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
}
.sub-form .sub-form__field--hidden {
  position: absolute;
  left: -5000px;
}
.sub-form .sub-form__action {
  border: none;
  border-radius: calc(var(--wp--preset--spacing--5) - var(--wp--preset--spacing--1));
  padding: 0 var(--wp--preset--spacing--3);
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-4);
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sub-form .sub-form__action:hover {
    background: var(--wp--preset--color--pri-2);
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Header Navigation - Consolidated
 *
 * Complete navigation system with responsive dropdowns, mobile toggle,
 * and accessibility features. All navigation functionality consolidated
 * in a single file for simplified maintenance.
 *
 * Features:
 * - Mobile-first responsive design
 * - Accessible keyboard navigation
 * - Smooth dropdown animations
 * - Dynamic content templates
 * - Icon rotation effects
 */
:root {
  --nav-mobile-breakpoint: 810px;
}

.main-nav {
  background: none;
  color: var(--wp--preset--color--acc-1);
  z-index: 1;
  display: contents;
}
@media (min-width: 50.6875rem) {
  .main-nav {
    display: initial;
  }
}
.main-nav__toggle {
  position: relative;
  width: var(--wp--preset--spacing--4);
  height: var(--wp--preset--spacing--4);
  padding: 0;
  margin: 0 0 0 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.main-nav__toggle::before, .main-nav__toggle::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--wp--preset--color--pri-2);
  border-radius: 2px;
  left: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.main-nav__toggle::before {
  top: calc(50% - 8px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 8px 0 var(--wp--preset--color--pri-2);
          box-shadow: 0 8px 0 var(--wp--preset--color--pri-2);
}
.main-nav__toggle::after {
  top: calc(50% + 8px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-nav__toggle[aria-expanded=true]::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.main-nav__toggle[aria-expanded=true]::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.main-nav__toggle:focus-visible {
  outline: 2px solid var(--wp--preset--color--pri-2);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .main-nav__toggle::before, .main-nav__toggle::after {
    -webkit-transition: none;
    transition: none;
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__toggle {
    display: none;
  }
}
.main-nav__toggle-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.main-nav__toggle-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--2);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
@media (min-width: 50.6875rem) {
  .main-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-height: 100vh;
    overflow: visible;
    gap: var(--gutter);
  }
}
.main-nav__list--open {
  max-height: 150vh;
  overflow: visible;
  margin-top: var(--gutter);
}
@media (min-width: 50.6875rem) {
  .main-nav__list--open {
    max-height: initial;
    overflow: initial;
    margin-top: initial;
  }
}
.main-nav__item {
  width: 100%;
}
@media (min-width: 50.6875rem) {
  .main-nav__item {
    width: initial;
  }
}
.main-nav__item--current .main-nav__link {
  color: var(--wp--preset--color--pri-1);
}
.main-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--wp--preset--spacing--2) 0;
  color: var(--wp--preset--color--acc-1);
  text-decoration: none;
  font-weight: 500;
  outline: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-transform: lowercase;
}
@media (min-width: 50.6875rem) {
  .main-nav__link:focus {
    color: var(--wp--preset--color--pri-1);
  }
}
.main-nav__link-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.main-nav__link--dropdown .main-nav__link-icon {
  display: inline-block;
  margin-left: 0.5em;
  width: 1em;
  height: 1em;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.main-nav__link--dropdown .main-nav__link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.main-nav__link--dropdown .main-nav__link-icon svg path {
  stroke-width: 2;
  stroke: var(--wp--preset--color--pri-0);
}
.main-nav__item--has-dropdown.main-nav__item--open > .main-nav__link--dropdown .main-nav__link-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 50.6875rem) {
  .main-nav__item--has-dropdown:focus-within > .main-nav__link--dropdown .main-nav__link-icon, .main-nav__item--has-dropdown:hover > .main-nav__link--dropdown .main-nav__link-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.main-nav__item--has-dropdown > .main-nav__link[aria-expanded=true] {
  color: var(--wp--preset--color--pri-1);
}
@media (min-width: 50.6875rem) {
  .main-nav__item--has-dropdown.main-nav__item--open .main-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__item--has-dropdown:focus-within .main-nav__dropdown, .main-nav__item--has-dropdown:hover .main-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.main-nav__dropdown {
  color: var(--wp--preset--color--acc-1);
  z-index: 100;
  padding: 0;
  height: 0;
  overflow: hidden;
  position: relative;
  margin-left: calc(var(--gutter-page) * -1);
  margin-right: calc(var(--gutter-page) * -1);
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(20px) scale(0.98);
            transform: translateY(20px) scale(0.98);
    -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: initial;
    margin-right: initial;
    padding-left: initial;
    padding-right: initial;
  }
}
@media (max-width: 50.625rem) {
  .main-nav__dropdown > svg.shape-btm {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100vw;
  }
  .main-nav__dropdown > svg.shape-btm path {
    fill: var(--wp--preset--color--acc-0);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown > svg.shape-btm {
    display: none !important;
  }
}
@media (max-width: 50.625rem) {
  .main-nav__dropdown > svg.shape-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100vw;
  }
  .main-nav__dropdown > svg.shape-top path {
    fill: var(--wp--preset--color--acc-0);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown > svg.shape-top {
    display: initial;
    width: 100vw;
  }
  .main-nav__dropdown > svg.shape-top path {
    fill: var(--wp--preset--color--pri-2);
  }
}
.main-nav__dropdown-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: calc(1300px + var(--gutter));
  padding: var(--wp--preset--spacing--5) 0 var(--wp--preset--spacing--5);
  position: relative;
}
@media (max-width: 50.625rem) {
  .main-nav__dropdown-inner {
    gap: var(--wp--preset--spacing--5);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown-inner {
    padding: var(--wp--preset--spacing--7) 0 var(--wp--preset--spacing--5);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.main-nav__dropdown-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  background: var(--wp--preset--color--pri-2);
}
@media (max-width: 50.625rem) {
  .main-nav__dropdown-dynamic {
    width: 100vw;
    overflow-x: scroll;
    margin: 0 calc(var(--gutter-page) * -1);
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
  }
  .main-nav__dropdown-dynamic::-webkit-scrollbar {
    display: none; /* Older Safari and Chromium */
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown-dynamic {
    padding-left: var(--gutter-half);
    padding-right: var(--gutter-half);
  }
}
.main-nav__dropdown-dynamic ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 var(--gutter-comp);
  width: calc(100% + var(--gutter));
}
@media (max-width: 50.625rem) {
  .main-nav__dropdown-dynamic ul {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: var(--gutter);
    margin: 0 var(--gutter-page);
  }
}
.main-nav__dropdown-dynamic ul li {
  padding-left: 0;
  padding-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60vw;
          flex: 1 0 60vw;
  max-width: 60vw;
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown-dynamic ul li {
    padding-left: var(--gutter-half);
    padding-right: var(--gutter-half);
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-six-twelfths);
            flex: 1 0 var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
}
.main-nav__dropdown-dynamic ul li a {
  display: contents;
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown-menu {
    padding-left: var(--gutter-half);
    padding-right: var(--gutter-half);
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-five-twelfths);
            flex: 1 0 var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
    margin-left: var(--width-one-twelfth);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown[data-template=split] .main-nav__dropdown-dynamic {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-six-twelfths);
            flex: 1 0 var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown[data-template=dynamic] .main-nav__dropdown-dynamic {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__dropdown[data-template=dynamic] .main-nav__dropdown-dynamic ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-three-twelfths);
            flex: 1 0 var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
}
.main-nav__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: calc(clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem) * 1.5) 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 50.6875rem) {
  .main-nav__submenu {
    margin-left: calc(var(--gutter-comp) * 2);
    margin-right: calc(var(--gutter-comp) * 2);
  }
}
.main-nav__submenu-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
}
@media (max-width: 50.625rem) {
  .main-nav__submenu-item:nth-child(n+2) {
    padding-top: calc(clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem) * 1.5);
  }
  .main-nav__submenu-item:nth-child(n+2):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--wp--preset--spacing--5);
    height: 2px;
    border-radius: 4px;
    background: var(--wp--preset--color--pri-3);
  }
}
@media (min-width: 50.6875rem) {
  .main-nav__submenu-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 50%;
    padding: 0 var(--gutter);
  }
  .main-nav__submenu-item:nth-child(n+3) {
    padding-top: calc(clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem) * 1.5);
  }
  .main-nav__submenu-item:nth-child(n+3):before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--gutter);
    width: var(--wp--preset--spacing--5);
    height: 2px;
    border-radius: 4px;
    background: var(--wp--preset--color--pri-3);
  }
}
.main-nav__submenu-item--current .main-nav__submenu-link {
  color: var(--wp--preset--color--pri-1);
  font-weight: var(--font-weight-bold);
}
@media (min-width: 50.6875rem) {
  .main-nav__submenu-item--current .main-nav__submenu-link:focus, .main-nav__submenu-item--current .main-nav__submenu-link:hover {
    color: var(--wp--preset--color--pri-1);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.main-nav__submenu-link {
  color: var(--wp--preset--color--acc-0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-light);
}
@media (min-width: 50.6875rem) {
  .main-nav__submenu-link {
    font-weight: var(--font-weight-regular);
    font-size: var(--wp--preset--font-size--md);
  }
}
.main-nav__submenu-link:hover, .main-nav__submenu-link:focus {
  color: var(--wp--preset--color--acc-1);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.main-nav__tease {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 5px;
  background-color: white;
  padding: var(--gutter);
  color: var(--wp--preset--color--acc-0);
  gap: var(--wp--preset--spacing--1);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  aspect-ratio: 6/4;
  position: relative;
  overflow: hidden;
}
@supports not (aspect-ratio: auto) {
  .main-nav__tease {
    padding-top: calc(1 / (6/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .main-nav__tease > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.main-nav__tease:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.main-nav__tease:hover .main-nav__tease-thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.main-nav__tease-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 0;
  margin: 0;
}
.main-nav__tease-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.main-nav__tease-thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 2;
}
.main-nav__tease-content {
  position: relative;
  z-index: 3;
  color: white;
}
.main-nav__tease h4 {
  font-size: var(--wp--preset--font-size--normal);
  margin-bottom: 0;
  font-weight: var(--font-weight-regular);
  opacity: 0.9;
  color: inherit;
}
.main-nav__tease h3 {
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
  line-height: 1.2;
  color: inherit;
}
.main-nav__tease a {
  color: inherit;
  text-decoration: none;
}
.main-nav__tease a:hover {
  color: inherit;
}
.main-nav__tease:not(:has(.main-nav__tease-thumb)) .main-nav__tease-content {
  color: var(--wp--preset--color--acc-0);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.menu--notices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 var(--wp--preset--spacing--2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 50.6875rem) {
  .menu--notices {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.menu--notices li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-3);
}
@media (min-width: 50.6875rem) {
  .menu--notices li {
    font-size: var(--wp--preset--font-size--normal);
  }
}
.menu--notices li:after {
  content: ".";
  color: var(--wp--preset--color--acc-3);
}
.menu--notices li a {
  text-decoration: none;
  color: var(--wp--preset--color--acc-3);
}
.menu--notices li a:hover {
  color: var(--wp--preset--color--pri-1);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:accordion {
  position: relative;
  width: 100%;
  background: var(--wp--preset--color--acc-0);
  border-radius: 14px;
}
.block\:accordion > .block\:accordion__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter);
  font-size: var(--wp--preset--font-size--md);
  font-family: var(--wp--preset--font-family--1);
  font-weight: var(--font-weight-bold);
  color: var(--wp--preset--color--acc-2);
  padding: var(--wp--preset--spacing--3) 0;
  list-style: none;
  cursor: pointer;
}
.block\:accordion > .block\:accordion__title::-webkit-details-marker {
  display: none;
}
.block\:accordion .block\:accordion__icon {
  max-width: var(--wp--preset--spacing--3);
  -webkit-transition: 0.35s -webkit-transform ease-out;
  transition: 0.35s -webkit-transform ease-out;
  transition: 0.35s transform ease-out;
  transition: 0.35s transform ease-out, 0.35s -webkit-transform ease-out;
}
.block\:accordion div {
  overflow: hidden;
}
.block\:accordion .block\:accordion__content {
  padding-left: calc(var(--wp--preset--spacing--3) + var(--gutter));
}
.block\:accordion .block\:accordion__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--2);
  padding: 0;
  list-style: none;
  line-height: var(--line-height-2);
}
.block\:accordion[open] .block\:accordion__icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:breadcrumbs {
  display: none;
}
@media (min-width: 50.6875rem) {
  .block\:breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--wp--preset--spacing--2);
    width: var(--layout-normal);
    z-index: 10;
  }
}
.block\:breadcrumbs--active .block\:breadcrumbs__trail {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  opacity: 1;
}
.block\:breadcrumbs--active .block\:breadcrumbs__trigger {
  color: var(--wp--preset--color--pri-0);
  opacity: 1;
}
.block\:breadcrumbs--active .block\:breadcrumbs__trigger:hover {
  color: var(--wp--preset--color--pri-1);
}
.block\:breadcrumbs__trail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--wp--preset--spacing--1);
  margin: 0;
  font-size: var(--wp--preset--font-size--sm);
  color: #999999;
  width: 100%;
  position: relative;
  font-weight: var(--font-weight-light);
  z-index: 0;
  line-height: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.block\:breadcrumbs__trail > * {
  z-index: 1;
}
.block\:breadcrumbs__trail a {
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.block\:breadcrumbs__trail a:hover {
  color: var(--wp--preset--color--pri-0);
  font-weight: var(--font-weight-bold);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.block\:breadcrumbs__trail > span:last-child, .block\:breadcrumbs__trail.current-item {
  color: var(--wp--preset--color--acc-2);
  font-weight: var(--font-weight-regular);
}

/* ----------------------------------------------
 * Generated by Animista on 2025-6-19 17:18:44
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flip-in-hor-top
 * ----------------------------------------
 */
@-webkit-keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:button:not(.is-style-btn-pill) {
  position: relative;
  z-index: 1;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  font-size: var(--wp--preset--font-size--lg);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  -webkit-appearance: none;
  background: none;
  padding: var(--wp--preset--spacing--2) calc(var(--wp--preset--spacing--3) * 2.5) var(--wp--preset--spacing--2);
  color: var(--wp--preset--color--acc-0);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: auto) {
  .block\:button:not(.is-style-btn-pill) {
    padding-top: calc(1 / (16/9) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:button:not(.is-style-btn-pill) > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:button:not(.is-style-btn-pill):before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='225' height='126' viewBox='0 0 225 126' fill='none'%3E%3Cpath d='M34.4196 0C47.5721 1.52928 53.2738 3.40612 61.809 7.15981C91.0173 19.9849 121.555 21.6532 152.792 20.68C168.708 20.1934 184.974 19.8806 200.54 22.5569C223.802 26.5539 231.637 46.3302 218.974 66.1413C215.022 72.328 209.915 78.2018 204.178 82.7201C178.258 102.983 149.574 118.102 117.008 124.775C101.721 127.903 87.2745 125.192 74.8215 114.87C56.3521 99.5422 38.897 92.869 19.5181 68.8523C11.5426 59.1901 9.23391 56.201 5.35112 49.1455C-8.43103 24.1904 5.52602 1.21647 34.4196 0Z' fill='%238383FF'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.block\:button:not(.is-style-btn-pill):hover, .block\:button:not(.is-style-btn-pill):focus {
  color: var(--wp--preset--color--acc-0);
}
.block\:button:not(.is-style-btn-pill):hover:before, .block\:button:not(.is-style-btn-pill):focus:before {
  -webkit-animation: vibrate-2 0.75s linear infinite both;
          animation: vibrate-2 0.75s linear infinite both;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='225' height='126' viewBox='0 0 225 126' fill='none'%3E%3Cpath d='M34.4196 0C47.5721 1.52928 53.2738 3.40612 61.809 7.15981C91.0173 19.9849 121.555 21.6532 152.792 20.68C168.708 20.1934 184.974 19.8806 200.54 22.5569C223.802 26.5539 231.637 46.3302 218.974 66.1413C215.022 72.328 209.915 78.2018 204.178 82.7201C178.258 102.983 149.574 118.102 117.008 124.775C101.721 127.903 87.2745 125.192 74.8215 114.87C56.3521 99.5422 38.897 92.869 19.5181 68.8523C11.5426 59.1901 9.23391 56.201 5.35112 49.1455C-8.43103 24.1904 5.52602 1.21647 34.4196 0Z' fill='%2315B1B5'/%3E%3C/svg%3E");
}
.block\:button:not(.is-style-btn-pill):disabled, .block\:button:not(.is-style-btn-pill)[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.block\:button:not(.is-style-btn-pill):disabled:hover:after, .block\:button:not(.is-style-btn-pill)[disabled]:hover:after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.block\:button.is-style-btn-pill {
  border: none;
  border-radius: calc(var(--wp--preset--spacing--6) / 2);
  padding: calc(var(--wp--preset--spacing--2) * 1.5) var(--wp--preset--spacing--4);
  width: 100%;
  height: var(--wp--preset--spacing--6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-4);
  line-height: 1;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (min-width: 50.6875rem) {
  .block\:button.is-style-btn-pill {
    height: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (hover: hover) and (pointer: fine) {
  .block\:button.is-style-btn-pill:hover {
    background: var(--wp--preset--color--pri-2);
  }
}

@-webkit-keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0) rotate(-3deg);
            transform: translate(0) rotate(-3deg);
  }
  20% {
    -webkit-transform: translate(2px, -2px) rotate(-3deg);
            transform: translate(2px, -2px) rotate(-3deg);
  }
  40% {
    -webkit-transform: translate(2px, 2px) rotate(-3deg);
            transform: translate(2px, 2px) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate(-2px, 2px) rotate(-3deg);
            transform: translate(-2px, 2px) rotate(-3deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotate(-3deg);
            transform: translate(-2px, -2px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translate(0) rotate(-3deg);
            transform: translate(0) rotate(-3deg);
  }
}

@keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0) rotate(-3deg);
            transform: translate(0) rotate(-3deg);
  }
  20% {
    -webkit-transform: translate(2px, -2px) rotate(-3deg);
            transform: translate(2px, -2px) rotate(-3deg);
  }
  40% {
    -webkit-transform: translate(2px, 2px) rotate(-3deg);
            transform: translate(2px, 2px) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate(-2px, 2px) rotate(-3deg);
            transform: translate(-2px, 2px) rotate(-3deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotate(-3deg);
            transform: translate(-2px, -2px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translate(0) rotate(-3deg);
            transform: translate(0) rotate(-3deg);
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:carousel {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: var(--wp--preset--spacing--5);
}
.block\:carousel * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.block\:carousel__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
      touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
}
.block\:carousel__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block\:carousel__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.block\:carousel__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.block\:carousel__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block\:carousel__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block\:carousel--rtl {
  direction: rtl;
}
.block\:carousel__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--gutter);
}
.block\:carousel__arrow {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin: 0;
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--pri-1);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.block\:carousel__arrow:hover {
  cursor: pointer;
  color: var(--wp--preset--color--pri-2);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:carousel__slide article {
  position: relative;
  display: block;
  width: var(--width-full);
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  aspect-ratio: 3/4;
}
@supports not (aspect-ratio: auto) {
  .block\:carousel__slide article {
    padding-top: calc(1 / (3/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:carousel__slide article > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:carousel__slide article figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--width-full);
  height: var(--height-full);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}
.block\:carousel__slide article figure:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--wp--preset--color--acc-3);
  mix-blend-mode: multiply;
  z-index: 1;
}
.block\:carousel__slide article figure img {
  position: absolute;
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.block\:carousel__slide article figure figcaption {
  display: grid;
  text-align: center;
  position: relative;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  padding: var(--gutter);
  text-shadow: 0px 0px 0px rgb(0, 0, 0);
  color: var(--wp--preset--color--acc-0);
  font-weight: var(--font-weight-bold);
  font-size: var(--wp--preset--font-size--xl);
  line-height: var(--line-height-2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.block\:carousel__slide article figure figcaption * {
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.block\:carousel__slide article figure figcaption .tease__middle {
  grid-row: 3;
  justify-self: center;
  align-self: center;
}
.block\:carousel__slide article figure figcaption .tease__lower {
  grid-row: 4;
  justify-self: center;
  align-self: end;
}
.block\:carousel__slide article .tease__hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--wp--preset--color--pri-1);
  z-index: 11;
  padding: var(--wp--preset--spacing--5) var(--wp--preset--spacing--5);
  display: grid;
  text-align: left;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.block\:carousel__slide article .tease__hover div {
  grid-row: 1;
  justify-self: start;
  align-self: center;
}
.block\:carousel__slide article .tease__hover h3 {
  color: var(--wp--preset--color--pri-3);
  font-weight: var(--font-weight-regular);
  font-size: var(--wp--preset--font-size--xl);
  line-height: var(--line-height-2);
  margin-bottom: var(--wp--preset--spacing--4);
}
.block\:carousel__slide article .tease__hover p {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-2);
}
.block\:carousel__slide article .tease__hover button {
  grid-row: 5;
  justify-self: start;
  align-self: end;
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  border-radius: 32px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: var(--wp--preset--font-size--md);
  padding: calc(var(--wp--preset--spacing--2) * 1.5) var(--wp--preset--spacing--4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 1500ms 250ms;
  transition: 1500ms 250ms;
}
.block\:carousel__slide article .tease__hover button:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.block\:carousel__slide article .tease__hover button:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 100%;
  left: 30px;
  top: 0;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.block\:carousel__slide article .tease__hover button:hover {
  background: var(--wp--preset--color--pri-3);
}
.block\:carousel__slide article .tease__hover button:hover:before {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.block\:carousel__slide article .tease__hover button:hover:after {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.block\:carousel__slide article:hover figure figcaption * {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.block\:carousel__slide article:hover .tease__hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
  transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  color: var(--wp--preset--color--acc-0);
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
@media (min-width: 50.6875rem) {
  .block\:cover {
    padding-top: var(--wp--preset--spacing--8);
    padding-bottom: var(--wp--preset--spacing--6);
  }
}
.block\:cover > svg {
  position: absolute;
  bottom: -2px;
  z-index: 10;
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.block\:cover--image {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 60vh;
}
.block\:cover--short {
  min-height: initial !important;
}
.block\:cover > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(.block\:cover__track):not(.block\:cover__arrow):not(svg) {
  max-width: var(--layout-normal);
  margin-left: auto;
  margin-right: auto;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block\:group--gapless {
  gap: 0;
}
.block\:group--g-half {
  gap: var(--gutter-half);
}
.block\:group--g-full {
  gap: var(--gutter);
}
.block\:group.is-style-card--wwd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block\:group.is-style-card--wwd > .wp-block-image {
  position: relative;
  max-width: calc(var(--wp--preset--spacing--8) * 2);
  aspect-ratio: 5/4;
  padding: 0;
  margin: 0;
  margin-bottom: var(--wp--preset--spacing--2);
}
.block\:group.is-style-card--wwd > .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.block\:group.is-style-card--wwd > .wp-block-list {
  margin-top: var(--wp--preset--spacing--1);
}
.block\:group.is-style-card--wwd > .wp-block-list.is-style-list-check-marks > li > svg {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.block\:group.is-style-card--wwd > .block\:button {
  margin-top: var(--wp--preset--spacing--2);
}
.block\:group > *:not(.alignwide, .alignfull, .block\:button) {
  width: 100%;
  max-width: var(--layout-normal);
  margin-inline: auto;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:highlight {
  position: relative;
  background: var(--wp--preset--color--acc-0);
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--width-full);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: var(--wp--preset--shadow--sm);
          box-shadow: var(--wp--preset--shadow--sm);
}
.block\:highlight__thumb {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 var(--width-full);
          flex: 1 1 var(--width-full);
  max-width: var(--width-full);
}
@media (max-width: 50.625rem) {
  .block\:highlight__thumb {
    aspect-ratio: 7/5;
  }
}
@media (min-width: 50.6875rem) {
  .block\:highlight__thumb {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 var(--width-seven-twelfths);
            flex: 1 1 var(--width-seven-twelfths);
    max-width: var(--width-seven-twelfths);
  }
}
.block\:highlight__thumb img {
  display: block;
  width: var(--width-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 10s ease-out;
  transition: all 10s ease-out;
}
@media (min-width: 50.6875rem) {
  .block\:highlight__thumb img {
    position: absolute;
    top: 0;
    right: 0;
    height: var(--height-full);
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
}
.block\:highlight__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--wp--preset--spacing--4);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 var(--width-full);
          flex: 1 1 var(--width-full);
  max-width: var(--width-full);
  gap: var(--gutter-half);
}
@media (min-width: 50.6875rem) {
  .block\:highlight__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 var(--width-five-twelfths);
            flex: 1 1 var(--width-five-twelfths);
    max-width: var(--width-five-twelfths);
    padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  }
}
.block\:highlight__content p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 50.6875rem) {
  .block\:highlight--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:img-sep {
  position: relative;
}
.block\:img-sep.alignfull {
  padding-left: 0;
  padding-right: 0;
}
.block\:img-sep__over {
  position: relative;
  width: var(--width-full);
  max-width: var(--layout-normal);
  background: var(--wp--preset--color--pri-2);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  line-height: var(--line-height-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gutter-half);
}
@media (max-width: 50.625rem) {
  .block\:img-sep__over {
    padding: var(--wp--preset--spacing--7) var(--gutter-page) var(--wp--preset--spacing--6);
    margin-top: calc(var(--wp--preset--spacing--4) * -1);
    z-index: 0;
    border-radius: 0% 0% 100% 100%/0% 0% 13% 8%;
  }
}
@media (min-width: 50.6875rem) {
  .block\:img-sep__over {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--10);
    -webkit-box-shadow: var(--wp--preset--shadow--md);
            box-shadow: var(--wp--preset--shadow--md);
  }
}
.block\:img-sep__over p {
  font-weight: var(--font-weight-light);
}
.block\:img-sep__over p a {
  color: currentColor;
  text-decoration: underline;
}
.block\:img-sep img {
  display: block;
  width: var(--width-screen);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 800'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23000' d='M634.31 1C778.64 1 842.7 12.18 1000 52.76v744.3c-22.38-13.26-109.62-51.22-230.33-51.22-130.17 0-259.18 52.16-403.98 52.16C221.37 798 157.3 786.82 0 746.24V1.94C22.38 15.2 109.62 53.17 230.33 53.17 360.5 53.16 489.51 1 634.31 1Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h1000v800H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 800'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23000' d='M634.31 1C778.64 1 842.7 12.18 1000 52.76v744.3c-22.38-13.26-109.62-51.22-230.33-51.22-130.17 0-259.18 52.16-403.98 52.16C221.37 798 157.3 786.82 0 746.24V1.94C22.38 15.2 109.62 53.17 230.33 53.17 360.5 53.16 489.51 1 634.31 1Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h1000v800H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  position: relative;
  aspect-ratio: 5/4;
}
@supports not (aspect-ratio: auto) {
  .block\:img-sep img {
    padding-top: calc(1 / (5/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:img-sep img > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 50.625rem) {
  .block\:img-sep img {
    z-index: 1;
  }
}
@media (min-width: 50.6875rem) {
  .block\:img-sep img {
    aspect-ratio: 2/1;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1920 960'%3E%3Cpath fill='%23000' stroke='%23000' d='M1217.88 1.5c276.94 0 399.92 13.19 701.62 61.07v893.21c-44.08-15.89-211.1-60.28-441.74-60.28-125 0-249.43 15.4-377.34 30.81-127.92 15.4-259.32 30.8-398.3 30.8-276.94 0-399.92-13.18-701.62-61.06V2.83c44.08 15.89 211.1 60.29 441.74 60.29 125 0 249.43-15.41 377.34-30.82C947.5 16.9 1078.9 1.5 1217.88 1.5Z'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1920 960'%3E%3Cpath fill='%23000' stroke='%23000' d='M1217.88 1.5c276.94 0 399.92 13.19 701.62 61.07v893.21c-44.08-15.89-211.1-60.28-441.74-60.28-125 0-249.43 15.4-377.34 30.81-127.92 15.4-259.32 30.8-398.3 30.8-276.94 0-399.92-13.18-701.62-61.06V2.83c44.08 15.89 211.1 60.29 441.74 60.29 125 0 249.43-15.41 377.34-30.82C947.5 16.9 1078.9 1.5 1217.88 1.5Z'/%3E%3C/svg%3E");
  }
  @supports not (aspect-ratio: auto) {
    .block\:img-sep img {
      padding-top: calc(1 / (2/1) * 100%);
      height: 0;
      position: relative;
      overflow: hidden;
    }
    .block\:img-sep img > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:inline-popups {
  overflow: hidden;
  max-width: var(--layout-normal);
}
.block\:inline-popups:has(.block\:inline-popups__trigger--active) .block\:inline-popups__card:not(.block\:inline-popups__trigger--active) {
  opacity: 0.5;
}
.block\:inline-popups:has(.block\:inline-popups__trigger--active) .block\:inline-popups__card:not(.block\:inline-popups__trigger--active):hover {
  opacity: 0.85;
}
.block\:inline-popups__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 50.625rem) {
  .block\:inline-popups__grid {
    gap: var(--wp--preset--spacing--4);
  }
}
@media (min-width: 50.6875rem) {
  .block\:inline-popups__grid {
    margin-left: var(--gutter-comp);
    margin-right: var(--gutter-comp);
  }
}
.block\:inline-popups .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.block\:inline-popups .block\:inline-popups__card {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  padding: 0;
  outline: none;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 50.6875rem) {
  .block\:inline-popups .block\:inline-popups__card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-one-third);
            flex: 1 0 var(--width-one-third);
    max-width: var(--width-one-third);
    padding: var(--gutter-half);
  }
  .block\:inline-popups .block\:inline-popups__card:nth-child(n+4) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-three-twelfths);
            flex: 1 0 var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
}
.block\:inline-popups .block\:inline-popups__card:focus .block\:inline-popups__caption:before {
  width: 100%;
}
.block\:inline-popups .block\:inline-popups__card[aria-expanded=true] .block\:inline-popups__figure:before, .block\:inline-popups .block\:inline-popups__card.block\:inline-popups__trigger--active .block\:inline-popups__figure:before {
  opacity: 0.5;
}
.block\:inline-popups .block\:inline-popups__card[aria-expanded=true] .block\:inline-popups__figure:after, .block\:inline-popups .block\:inline-popups__card.block\:inline-popups__trigger--active .block\:inline-popups__figure:after {
  opacity: 1;
  height: var(--gutter);
}
.block\:inline-popups .block\:inline-popups__card[aria-expanded=true] .block\:inline-popups__figure .block\:inline-popups__caption:before, .block\:inline-popups .block\:inline-popups__card.block\:inline-popups__trigger--active .block\:inline-popups__figure .block\:inline-popups__caption:before {
  width: 100%;
}
.block\:inline-popups .block\:inline-popups__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}
@media (max-width: 50.625rem) {
  .block\:inline-popups .block\:inline-popups__figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--wp--preset--spacing--4);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 50.6875rem) {
  .block\:inline-popups .block\:inline-popups__figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.block\:inline-popups .block\:inline-popups__figure:hover:before {
  opacity: 0.5;
}
.block\:inline-popups .block\:inline-popups__figure:hover .block\:inline-popups__caption:before {
  width: 100%;
}
.block\:inline-popups .block\:inline-popups__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: var(--wp--preset--shadow--md);
          box-shadow: var(--wp--preset--shadow--md);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
}
@media (max-width: 50.625rem) {
  .block\:inline-popups .block\:inline-popups__image {
    width: var(--wp--preset--spacing--8);
    height: var(--wp--preset--spacing--8);
    aspect-ratio: 1/1;
    border-radius: 100%;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.block\:inline-popups .block\:inline-popups__caption {
  position: relative;
  margin: 0;
  z-index: 2;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 50.6875rem) {
  .block\:inline-popups .block\:inline-popups__caption {
    padding: var(--wp--preset--spacing--4) 0;
  }
}
.block\:inline-popups .block\:inline-popups__caption:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--wp--preset--color--pri-3);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 8px;
}
.block\:inline-popups .block\:inline-popups__title {
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--acc-1);
  margin-bottom: calc(var(--wp--preset--spacing--1) / 2);
  margin-top: 0;
}
@media (max-width: 50.625rem) {
  .block\:inline-popups .block\:inline-popups__title {
    font-size: var(--wp--preset--font-size--xl);
  }
}
.block\:inline-popups .block\:inline-popups__subtitle {
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--pri-2);
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 50.625rem) {
  .block\:inline-popups .block\:inline-popups__subtitle {
    font-size: var(--wp--preset--font-size--lg);
  }
}
.block\:inline-popups .block\:inline-popups__details {
  display: none !important;
}
.block\:inline-popups .block\:inline-popups__expander {
  padding-left: var(--gutter-half);
  padding-right: var(--gutter-half);
}
@media (max-width: 50.625rem) {
  .block\:inline-popups .block\:inline-popups__expander {
    padding: 0 !important;
  }
}
.block\:inline-popups .block\:inline-popups__expander .block\:inline-popups__content {
  height: 100%;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block\:inline-popups .block\:inline-popups__expander .block\:inline-popups__content > *:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.block\:inline-popups .block\:inline-popups__expander .block\:inline-popups__content > *:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.block\:inline-popups .block\:inline-popups__expander .block\:inline-popups__content p {
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:link-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gutter);
}
@media (max-width: 50.625rem) {
  .block\:link-gallery {
    aspect-ratio: initial !important;
  }
}
@media (min-width: 50.6875rem) {
  .block\:link-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
}

.block\:link-gallery__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: -webkit-box-flex 0.5s ease;
  transition: -webkit-box-flex 0.5s ease;
  transition: flex 0.5s ease;
  transition: flex 0.5s ease, -webkit-box-flex 0.5s ease, -ms-flex 0.5s ease;
}
@media (max-width: 50.625rem) {
  .block\:link-gallery__item {
    aspect-ratio: 7/5;
  }
}
.block\:link-gallery__item .block\:link-gallery__link {
  position: relative;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  padding: var(--gutter);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.block\:link-gallery__item .block\:link-gallery__link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: -webkit-gradient(linear, left top, left bottom, from(#a7a7a7), to(#414141));
  background: linear-gradient(180deg, #a7a7a7 0%, #414141 100%);
  mix-blend-mode: multiply;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.block\:link-gallery__item .block\:link-gallery__link .block\:link-gallery__title {
  grid-row: 3;
  align-self: center;
  justify-self: center;
  z-index: 1;
  color: var(--wp--preset--color--acc-0);
  font-weight: var(--font-weight-bold);
  font-size: var(--wp--preset--font-size--lg);
  line-height: var(--line-height-2);
  text-shadow: 0 0 0 rgb(0, 0, 0);
}
.block\:link-gallery__item .block\:link-gallery__link .block\:link-gallery__icon {
  grid-row: 4;
  align-self: end;
  justify-self: center;
  z-index: 1;
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--xl);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.block\:link-gallery__item:hover, .block\:link-gallery__item.block\:link-gallery__item--active {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
@media (min-width: 50.6875rem) {
  .block\:link-gallery__item:hover, .block\:link-gallery__item.block\:link-gallery__item--active {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}
.block\:link-gallery__item:hover .block\:link-gallery__link::before, .block\:link-gallery__item.block\:link-gallery__item--active .block\:link-gallery__link::before {
  opacity: 0.7;
}
.block\:link-gallery__item:hover .block\:link-gallery__icon, .block\:link-gallery__item.block\:link-gallery__item--active .block\:link-gallery__icon {
  color: var(--wp--preset--color--pri-3);
  -webkit-animation: slide-right 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate both;
          animation: slide-right 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(var(--wp--preset--spacing--2));
            transform: translateX(var(--wp--preset--spacing--2));
  }
}

@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(var(--wp--preset--spacing--2));
            transform: translateX(var(--wp--preset--spacing--2));
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:link-grid {
  background: var(--wp--preset--color--acc-4);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 50.625rem) {
  .block\:link-grid {
    background-image: none !important;
  }
}
.block\:link-grid.alignfull {
  padding: 0;
}
.block\:link-grid a {
  text-decoration: none;
}
.block\:link-grid > img {
  display: none;
}
@media (min-width: 50.6875rem) {
  .block\:link-grid > img {
    display: initial;
    position: absolute;
    width: calc(var(--width-full) - var(--wp--preset--spacing--1) / 2);
    height: calc(var(--height-full) - var(--wp--preset--spacing--1) / 2);
    top: calc(var(--wp--preset--spacing--1) / 4);
    left: calc(var(--wp--preset--spacing--1) / 4);
    opacity: 0;
    -webkit-animation: move 40s ease infinite;
            animation: move 40s ease infinite;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    z-index: 0;
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
  }
}
@media (min-width: 50.6875rem) {
  .block\:link-grid.block\:link-grid--2-cols .block\:link-grid__item {
    -ms-flex-preferred-size: var(--width-six-twelfths);
        flex-basis: var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
}
@media (min-width: 50.6875rem) {
  .block\:link-grid.block\:link-grid--3-cols .block\:link-grid__item {
    -ms-flex-preferred-size: var(--width-four-twelfths);
        flex-basis: var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
}
@media (min-width: 50.6875rem) {
  .block\:link-grid.block\:link-grid--4-cols .block\:link-grid__item {
    -ms-flex-preferred-size: var(--width-three-twelfths);
        flex-basis: var(--width-three-twelfths);
    max-width: var(--width-three-twelfths);
  }
}
@media (min-width: 50.6875rem) {
  .block\:link-grid.block\:link-grid--5-cols .block\:link-grid__item {
    -ms-flex-preferred-size: var(--width-one-fifth);
        flex-basis: var(--width-one-fifth);
    max-width: var(--width-one-fifth);
  }
}

.block\:link-grid__item {
  position: relative;
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--lg);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: var(--width-six-twelfths);
      flex-basis: var(--width-six-twelfths);
  max-width: var(--width-six-twelfths);
}
.block\:link-grid__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--wp--preset--color--acc-1);
  opacity: 0.8;
  z-index: 0;
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
  pointer-events: none;
}
@media (min-width: 50.6875rem) {
  .block\:link-grid__item::after {
    top: calc(var(--wp--preset--spacing--1) / 4);
    right: calc(var(--wp--preset--spacing--1) / 4);
    bottom: calc(var(--wp--preset--spacing--1) / 4);
    left: calc(var(--wp--preset--spacing--1) / 4);
  }
}
.block\:link-grid__item img {
  display: none;
}
@media (max-width: 50.625rem) {
  .block\:link-grid__item img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.block\:link-grid__item span {
  display: block;
  text-align: center;
  position: relative;
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--4);
  text-shadow: 0px 0px 0px rgb(0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 1;
  color: var(--wp--preset--color--acc-0);
}
.block\:link-grid__item span:before {
  content: "";
  background: none;
  height: var(--height-full);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
  -webkit-transition: none;
  transition: none;
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: auto) {
  .block\:link-grid__item span:before {
    padding-top: calc(1 / (1/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:link-grid__item span:before > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:link-grid__item:hover::after {
  opacity: 0;
}
.block\:link-grid__item:hover + img {
  opacity: 1;
}
.block\:link-grid__item:hover span::before {
  -webkit-transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: var(--width-full);
  background: var(--wp--preset--color--pri-3);
  border-radius: 999rem;
  z-index: -1;
}

.animate-link {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
  -webkit-animation-name: link-fade-in;
          animation-name: link-fade-in;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.animate-link.animate-link--in {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes link-fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes link-fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:query-posts .row {
  margin: 0;
  margin-left: var(--gutter-comp);
  margin-right: var(--gutter-comp);
  width: initial;
  row-gap: var(--gutter);
  padding: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block\:query-posts .row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block\:query-posts a {
  text-decoration: none;
  display: contents;
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:quick-sort .block\:quick-sort__row {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  width: var(--width-full);
  max-width: var(--layout-normal);
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--gutter);
}
@media (min-width: 50.6875rem) {
  .block\:quick-sort .block\:quick-sort__row--2-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 50.6875rem) {
  .block\:quick-sort .block\:quick-sort__row--3-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 50.6875rem) {
  .block\:quick-sort .block\:quick-sort__row--4-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 50.6875rem) {
  .block\:quick-sort .block\:quick-sort__row--5-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.block\:quick-sort .block\:quick-sort__item > a {
  text-decoration: none;
  display: contents;
}
.block\:quick-sort .block\:quick-sort__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--wp--preset--color--acc-4);
  margin-bottom: var(--wp--preset--spacing--4);
  border-radius: 8px;
  padding: var(--wp--preset--spacing--4) var(--gutter) var(--wp--preset--spacing--3);
}
.block\:quick-sort .block\:quick-sort__controls-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gutter-half) var(--gutter);
}
.block\:quick-sort .block\:quick-sort__controls-group span {
  display: block;
  width: var(--width-full);
}
.block\:quick-sort .block\:quick-sort__filter-group .block\:quick-sort__filter-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.block\:quick-sort .quick-sort-results-count {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--acc-3);
  margin-top: var(--wp--preset--spacing--3);
  text-align: right;
}
.block\:quick-sort .block\:quick-sort__item {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.block\:quick-sort .block\:quick-sort__item[style*="opacity: 0"] {
  pointer-events: none;
}
.block\:quick-sort .filter-sort-no-results {
  margin: var(--wp--preset--spacing--5) 0;
  text-align: center;
  display: none;
}
.block\:quick-sort .filter-sort-no-results__content {
  background: var(--wp--preset--color--acc-4);
  border: 1px solid var(--wp--preset--color--acc-4);
  border-radius: 12px;
  padding: var(--wp--preset--spacing--5);
  max-width: 500px;
  margin: 0 auto;
}
.block\:quick-sort .filter-sort-no-results__content h3 {
  margin: 0 0 var(--wp--preset--spacing--3) 0;
  color: var(--wp--preset--color--acc-1);
  font-size: var(--wp--preset--font-size--lg);
}
.block\:quick-sort .filter-sort-no-results__content p {
  margin: 0;
  color: var(--wp--preset--color--acc-3);
  line-height: var(--line-height-4);
}
.block\:quick-sort .filter-sort-no-results__content .filter-sort-reset-filters {
  background: none;
  border: none;
  color: var(--wp--preset--color--pri-2);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  margin: 0;
}
.block\:quick-sort .filter-sort-no-results__content .filter-sort-reset-filters:hover, .block\:quick-sort .filter-sort-no-results__content .filter-sort-reset-filters:focus {
  color: var(--wp--preset--color--pri-1);
  outline: 2px solid var(--wp--preset--color--pri-2);
  outline-offset: var(--wp--preset--spacing--1);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:quotes {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}
.block\:quotes__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--wp--preset--spacing--3);
  padding-top: var(--wp--preset--spacing--6);
  padding-bottom: var(--wp--preset--spacing--6);
}
@media (min-width: 50.6875rem) {
  .block\:quotes__inner {
    gap: var(--wp--preset--spacing--4);
  }
}
.block\:quotes--dynamic {
  overflow: initial;
  padding-top: 0;
}
.block\:quotes--dynamic > a {
  display: contents;
}
.block\:quotes__overlay {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--layout-normal);
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.block\:quotes__overlay--featured > a {
  display: contents;
}
.block\:quotes__shape {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.block\:quotes__shape svg {
  display: block;
  width: 100%;
  height: auto;
}
.block\:quotes__title {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--xxxl);
  font-weight: var(--font-weight-bold);
  text-align: left;
  margin-bottom: var(--wp--preset--spacing--2);
}
@media (min-width: 50.6875rem) {
  .block\:quotes__title {
    text-align: center;
  }
}
.block\:quotes .block\:quotes__track {
  width: 100%;
}
.block\:quotes .block\:quotes__slides {
  padding: 0;
  margin: 0;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.block\:quotes .block\:quotes__slide {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  margin: 0 !important;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block\:quotes .block\:quotes__slide--active {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: 1;
  z-index: 1;
}
.block\:quotes .block\:quotes__arrow {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--wp--preset--spacing--5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--wp--preset--font-size--lg);
  border-radius: 50%;
  color: var(--wp--preset--color--acc-0);
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: auto) {
  .block\:quotes .block\:quotes__arrow {
    padding-top: calc(1 / (1/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:quotes .block\:quotes__arrow > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:quotes .block\:quotes__arrow:hover:not(:disabled) {
  color: var(--wp--preset--color--pri-2);
}
.block\:quotes .block\:quotes__arrow:disabled {
  opacity: 0.2;
}
.block\:quotes .block\:quotes__arrow--left {
  left: calc(50vw - (var(--layout-normal) + var(--gutter-half)) / 2);
  -webkit-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}
.block\:quotes .block\:quotes__arrow--right {
  right: calc(50vw - (var(--layout-normal) + var(--gutter-half)) / 2);
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
.block\:quotes .block\:quotes__bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--wp--preset--spacing--1) * 1.5);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: var(--wp--preset--spacing--2);
  width: 100%;
  padding: 0;
}
@media (min-width: 50.6875rem) {
  .block\:quotes .block\:quotes__bullets {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.block\:quotes .block\:quotes__bullets .block\:quotes__bullet {
  background: none;
  opacity: 0.5;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  display: block;
  width: var(--wp--preset--spacing--3);
  height: var(--wp--preset--spacing--3);
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  cursor: pointer;
}
.block\:quotes .block\:quotes__bullets .block\:quotes__bullet:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: 3px solid var(--wp--preset--color--acc-0);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
@media (min-width: 50.6875rem) {
  .block\:quotes .block\:quotes__bullets .block\:quotes__bullet:hover, .block\:quotes .block\:quotes__bullets .block\:quotes__bullet:focus {
    background: var(--wp--preset--color--pri-3);
    opacity: 1;
  }
}
.block\:quotes .block\:quotes__bullets .block\:quotes__bullet--active {
  opacity: 1;
}
.block\:quotes .block\:quotes__bullets .block\:quotes__bullet--active::before {
  opacity: 1;
}
@media (min-width: 50.6875rem) {
  .block\:quotes .block\:quotes__bullets .block\:quotes__bullet--active:hover, .block\:quotes .block\:quotes__bullets .block\:quotes__bullet--active:focus {
    pointer-events: none;
  }
}
.block\:quotes > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(.block\:quotes):not(.block\:quotes__arrow) {
  max-width: var(--layout-normal);
  margin-left: auto;
  margin-right: auto;
}

blockquote {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  text-align: left;
  font-family: var(--wp--preset--font-family--1);
}
@media (min-width: 50.6875rem) {
  blockquote {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
blockquote p {
  font-size: var(--wp--preset--font-size--md);
  line-height: var(--line-height-2);
  font-weight: var(--font-weight-light);
  margin-bottom: var(--wp--preset--spacing--4);
}
@media (min-width: 50.6875rem) {
  blockquote p {
    font-size: var(--wp--preset--font-size--lg);
  }
}
blockquote cite {
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  line-height: var(--line-height-3);
}
@media (min-width: 50.6875rem) {
  blockquote cite {
    font-size: var(--wp--preset--font-size--md);
  }
}
blockquote cite strong {
  display: block;
  width: 100%;
}

.block\:quotes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: var(--gutter-comp);
  margin-right: var(--gutter-comp);
  width: calc(100% + var(--gutter));
}

.block\:quotes__card {
  width: var(--width-four-twelfths);
  padding-left: var(--gutter-half);
  padding-right: var(--gutter-half);
}
.block\:quotes__card-inner {
  padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  background: var(--wp--preset--color--acc-4);
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  text-align: left;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  aspect-ratio: 3/4;
}
@supports not (aspect-ratio: auto) {
  .block\:quotes__card-inner {
    padding-top: calc(1 / (3/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:quotes__card-inner > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:quotes__card-content {
  grid-row: 1;
  justify-self: start;
  align-self: center;
}
.block\:quotes__card-content h3 {
  color: var(--wp--preset--color--pri-2);
  font-weight: var(--font-weight-bold);
  font-size: var(--wp--preset--font-size--xxl);
  line-height: var(--line-height-2);
  margin-bottom: var(--wp--preset--spacing--4);
}
.block\:quotes__card-content p {
  color: var(--wp--preset--color--pri-1);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-3);
}
.block\:quotes__card-icon {
  grid-row: 5;
  justify-self: start;
  align-self: end;
}
.block\:quotes__card-icon img {
  max-height: var(--wp--preset--spacing--9);
  height: var(--wp--preset--spacing--9);
  width: auto;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: var(--wp--preset--spacing--4);
  padding-bottom: var(--wp--preset--spacing--4);
}
.block\:search > .row > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block\:search .block\:filter__title {
  font-size: var(--wp--preset--font-size--lg);
  font-family: var(--wp--preset--font-family--1);
  margin-bottom: 0;
}
.block\:search select {
  background: none;
  border: none;
  padding: var(--gutter-half) 0;
  color: var(--wp--preset--color--acc-0);
  position: relative;
}
.block\:search .block\:filter__conjuction {
  color: var(--wp--preset--color--acc-0);
  color: var(--wp--preset--color--pri-2);
  display: inline-block;
  background: var(--wp--preset--color--pri-2);
  width: var(--width-full);
  height: 1px;
  margin-top: var(--wp--preset--spacing--7);
  margin-bottom: var(--wp--preset--spacing--3);
  opacity: 0.6;
}
@media (min-width: 50.6875rem) {
  .block\:search .block\:filter__conjuction {
    width: var(--wp--preset--spacing--1);
    height: var(--wp--preset--spacing--9);
    margin-top: var(--wp--preset--spacing--9);
    margin-bottom: var(--wp--preset--spacing--7);
  }
}
.block\:search .block\:filter__btn {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--wp--preset--spacing--3);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block\:search .block\:filter__btn .icon-btn__icon {
  width: var(--width-full);
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  display: block;
}
.block\:search .block\:filter__btn .icon-btn__icon path {
  stroke: var(--wp--preset--color--acc-2);
}
.block\:search .block\:filter__btn .icon-btn__icon.icon-btn__icon--default {
  -webkit-transition: opacity 0.4s, -webkit-transform 0.5s;
  transition: opacity 0.4s, -webkit-transform 0.5s;
  transition: opacity 0.4s, transform 0.5s;
  transition: opacity 0.4s, transform 0.5s, -webkit-transform 0.5s;
}
.block\:search .block\:filter__btn .icon-btn__icon.icon-btn__icon--hover {
  -webkit-transition: opacity 0.4s, -webkit-transform 0.5s;
  transition: opacity 0.4s, -webkit-transform 0.5s;
  transition: opacity 0.4s, transform 0.5s;
  transition: opacity 0.4s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
          transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
  opacity: 0;
}
.block\:search .block\:filter__btn:hover .icon-btn__icon.icon-btn__icon--default {
  -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
          transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
  opacity: 0;
}
.block\:search .block\:filter__btn:hover .icon-btn__icon.icon-btn__icon--hover {
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
          transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
}
.block\:search select {
  width: var(--width-full);
}

.form--filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--width-full);
  border-bottom: var(--wp--preset--spacing--1) solid var(--wp--preset--color--acc-3);
}
.form--filter .form__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: var(--width-full);
  position: relative;
}
.form--filter .form__field::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--wp--preset--spacing--1);
  background: var(--wp--preset--color--acc-0);
}
.form--filter .form__field + .form__field {
  margin-top: var(--gutter-half);
}
@media (min-width: 50.6875rem) {
  .form--filter .form__field + .form__field {
    margin-top: initial;
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:shape-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2px 0;
  padding: 0;
}
.block\:shape-separator.alignfull {
  padding-left: 0;
  padding-right: 0;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Sidebar Block Frontend Styles
 * Styles for the insights sidebar with search, recent posts, and filters
 */
.block\:sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--5);
  background: var(--wp--preset--color--acc-4);
  border-radius: 8px;
  padding: var(--wp--preset--spacing--4) var(--gutter);
}
.block\:sidebar__title {
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-regular);
  color: var(--wp--preset--color--acc-1);
  margin-bottom: var(--wp--preset--spacing--2);
}
.block\:sidebar__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--2);
}
.block\:sidebar__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--wp--preset--spacing--5);
  border: none;
  background: var(--color-bg-primary);
  font-size: var(--wp--preset--font-size--normal);
  background: var(--wp--preset--color--acc-0);
  border-radius: 6px;
  letter-spacing: var(--letter-spacing-4);
  width: var(--width-full);
}
.block\:sidebar__search-input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
          box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
}
.block\:sidebar__search-input::-webkit-input-placeholder {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__search-input::-moz-placeholder {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__search-input:-ms-input-placeholder {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__search-input::-ms-input-placeholder {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__search-input::placeholder {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--wp--preset--spacing--5);
  background: var(--wp--preset--color--pri-2);
  border: none;
  border-radius: 6px;
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
  color: var(--wp--preset--color--acc-0);
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.block\:sidebar__search-button:hover {
  background: var(--wp--preset--color--pri-3);
}
.block\:sidebar__search-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
          box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
}
.block\:sidebar__recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--wp--preset--spacing--2) * 1.5);
}
.block\:sidebar__recent-item {
  position: relative;
}
.block\:sidebar__recent-item + .block\:sidebar__recent-item {
  padding-top: calc(var(--wp--preset--spacing--2) * 1.5);
}
.block\:sidebar__recent-item + .block\:sidebar__recent-item:before {
  content: "";
  width: var(--wp--preset--spacing--6);
  display: block;
  height: var(--wp--preset--spacing--1);
  background: var(--wp--preset--color--acc-0);
  position: absolute;
  top: 0;
}
.block\:sidebar__recent-link {
  display: block;
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--pri-2);
  text-decoration: none;
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--wp--preset--spacing--1);
}
.block\:sidebar__recent-link:hover {
  color: var(--wp--preset--color--pri-1);
  text-decoration: underline;
}
.block\:sidebar__recent-date {
  display: block;
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--acc-1);
}
.block\:sidebar__filter-label {
  display: block;
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-regular);
  color: var(--wp--preset--color--acc-1);
  margin-bottom: var(--wp--preset--spacing--2);
}
.block\:sidebar__filter-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--wp--preset--spacing--5);
  border: none;
  font-size: var(--wp--preset--font-size--normal);
  background: var(--wp--preset--color--acc-0);
  border-radius: 6px;
  letter-spacing: var(--letter-spacing-4);
  width: var(--width-full);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" fill="none"><path fill="%23B7BEC0" d="M.837.137C.617-.075.294-.036.115.224c-.179.26-.146.643.074.855l5.968 5.766A.47.47 0 0 0 6.5 7c.124 0 .343-.155.343-.155l5.968-5.766c.22-.212.253-.595.074-.855-.18-.26-.502-.3-.722-.087L6.5 5.607.837.138Z"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 244px;
  background-position-y: center;
  background-position-x: calc(var(--width-full) - var(--wp--preset--spacing--3));
}
.block\:sidebar__filter-select:has(> option[value=""]:checked) {
  color: var(--wp--preset--color--acc-3);
  font-weight: var(--font-weight-light);
}
.block\:sidebar__filter-select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
          box-shadow: 0 0 0 2px var(--wp--preset--color--pri-2);
}
.block\:sidebar__filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--wp--preset--spacing--2);
  margin-top: var(--wp--preset--spacing--4);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block\:sidebar__filter-button {
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
  border-radius: 6px;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.block\:sidebar__filter-button--submit {
  background: var(--wp--preset--color--pri-2);
  color: var(--wp--preset--color--acc-0);
}
.block\:sidebar__filter-button--submit:hover {
  background: var(--wp--preset--color--pri-1);
}
.block\:sidebar__filter-button--submit:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.3);
          box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.3);
}
.block\:sidebar__filter-button--reset {
  background: transparent;
  color: var(--wp--preset--color--acc-3);
  border: 1px solid var(--wp--preset--color--acc-4);
}
.block\:sidebar__filter-button--reset:hover {
  background: var(--wp--preset--color--acc-4);
  color: var(--wp--preset--color--acc-1);
  text-decoration: none;
}
.block\:sidebar__filter-button--reset:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 67.5625rem) {
  .block\:sidebar {
    padding: var(--wp--preset--spacing--4);
  }
  .block\:sidebar__filter-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block\:sidebar__filter-button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:spacer--fill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
@media (min-width: 50.6875rem) {
  .block\:text-cols {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: var(--wp--preset--spacing--6);
       -moz-column-gap: var(--wp--preset--spacing--6);
            column-gap: var(--wp--preset--spacing--6);
    -webkit-column-rule: none;
       -moz-column-rule: none;
            column-rule: none;
  }
  .block\:text-cols * {
    margin-block: var(--wp--preset--spacing--3);
  }
  .block\:text-cols *:first-child {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .block\:text-cols *:last-child {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
  .block\:text-cols p {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  .block\:text-cols.block\:text-cols--justify {
    text-align: justify;
  }
  .block\:text-cols.block\:text-cols--2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .block\:text-cols.block\:text-cols--3 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .block\:text-cols.block\:text-cols--4 {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
  .block\:text-cols.block\:text-cols--5 {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
  .block\:text-cols.block\:text-cols--6 {
    -webkit-column-count: 6;
       -moz-column-count: 6;
            column-count: 6;
  }
  .block\:text-cols.block\:text-cols--7 {
    -webkit-column-count: 7;
       -moz-column-count: 7;
            column-count: 7;
  }
  .block\:text-cols.block\:text-cols--8 {
    -webkit-column-count: 8;
       -moz-column-count: 8;
            column-count: 8;
  }
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
.block\:embed,
.block\:video {
  position: relative;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: var(--wp--preset--shadow--sm);
          box-shadow: var(--wp--preset--shadow--sm);
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: auto) {
  .block\:embed,
  .block\:video {
    padding-top: calc(1 / (16/9) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .block\:embed > *,
  .block\:video > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.block\:embed iframe,
.block\:embed object,
.block\:embed embed,
.block\:video iframe,
.block\:video object,
.block\:video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * WordPress Core Block Styles
 *
 * Consolidated styles for WordPress core blocks including
 * post metadata, images, and separators. Provides consistent
 * styling and theme integration across all core blocks.
 */
/**
 * Post Author Block
 *
 * Styles for the WordPress post author block display.
 * Creates a vertical layout with proper spacing and typography.
 */
.wp-block-post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--3);
}
.wp-block-post-author .wp-block-post-author__avatar {
  display: block;
  width: var(--wp--preset--spacing--8);
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.wp-block-post-author .wp-block-post-author__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-block-post-author p {
  font-size: var(--wp--preset--font-size--lg);
  margin-bottom: 0;
}

.post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--wp--preset--spacing--1);
}
.post-author .wp-block-separator {
  max-width: var(--wp--preset--spacing--8);
  margin: var(--wp--preset--spacing--1) 0 var(--wp--preset--spacing--2);
}

/**
 * Post Date Block
 *
 * Styles for WordPress post date display.
 * Removes default before pseudo-element and provides
 * contextual styling when used within post author blocks.
 */
.wp-block-post-date::before {
  display: none;
}
.post-author .wp-block-post-date {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
}

/**
 * WordPress Image Block Styles
 *
 * Enhanced styling for WordPress core image blocks including
 * standard alignment options and custom wave-clip style.
 * Provides responsive behavior and accessibility considerations.
 */
/**
 * Base Image Block
 *
 * Core styling for WordPress image blocks with responsive behavior
 * and alignment options. Images are set to be flexible and responsive.
 */
.wp-block-image {
  display: block;
  max-width: var(--layout-normal);
  margin: 0 auto;
  padding: 0;
}
.wp-block-image.alignfull {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-block-image.aligncenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-block-image img {
  width: var(--width-full);
  height: auto;
}
.wp-block-image .wp-element-caption {
  display: none;
}

/**
 * WordPress Separator Block Styles
 *
 * Base styling for WordPress core separator blocks.
 * Provides consistent positioning and removes default border styling.
 */
/**
 * Base Separator Block
 *
 * Core styling for WordPress separator blocks with centered positioning
 * and flexible width. Removes default border styling for custom height control.
 */
.wp-block-separator {
  margin: 0 auto;
  width: var(--width-full);
  border: none;
  height: 1px;
  background: currentColor;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * WordPress Block Custom Styles
 *
 * Custom block styles registered via JavaScript and styled here.
 * These styles extend core WordPress blocks with additional
 * design variations for enhanced content presentation.
 *
 * Organization:
 * - Paragraph Block Styles
 * - Image Block Styles
 * - Separator Block Styles
 */
/* ==========================================================================
   PARAGRAPH BLOCK STYLES
   ========================================================================== */
/**
 * Two Column Paragraph Style
 *
 * Custom paragraph style that splits content into two columns
 * using CSS columns. Registered via JavaScript as a block style
 * variation for the core/paragraph block.
 */
@media (min-width: 50.6875rem) {
  .is-style-two-cols {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: var(--wp--preset--spacing--4);
       -moz-column-gap: var(--wp--preset--spacing--4);
            column-gap: var(--wp--preset--spacing--4);
    -webkit-column-rule: none;
       -moz-column-rule: none;
            column-rule: none;
  }
  .is-style-two-cols p {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    margin-bottom: var(--wp--preset--spacing--4);
  }
}

/* ==========================================================================
   IMAGE BLOCK STYLES
   ========================================================================== */
/**
 * Wave Clip Image Style
 *
 * Custom image style that applies a decorative wave clip-path.
 * Uses different aspect ratios and clip paths for mobile vs desktop.
 * Includes overlay caption styling with theme colors.
 */
.wp-block-image.is-style-wave-clip {
  position: relative;
  /**
      * Wave Clip Caption Overlay
      *
      * Styled caption that appears as an overlay on wave-clipped images.
      * Uses theme colors and typography for consistent branding.
      * Positioned absolutely and centered both horizontally and vertically.
      */
}
.wp-block-image.is-style-wave-clip img {
  width: var(--width-full);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  clip-path: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='390' height='291'%3E%3Cdefs%3E%3CclipPath id='wave-mobile' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M 0.634,0 C 0.778,0 0.843,0.015 1,0.069 L 1,0.931 C 0.978,0.948 0.890,1 0.770,1 C 0.640,1 0.361,0.930 0.231,0.930 C 0.085,0.930 0.022,0.948 0,0.931 L 0,0.001 C 0.022,0.018 0.110,0.069 0.231,0.069 C 0.361,0.069 0.489,0 0.634,0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#wave-mobile");
  -webkit-clip-path: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='390' height='291'%3E%3Cdefs%3E%3CclipPath id='wave-mobile' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M 0.634,0 C 0.778,0 0.843,0.015 1,0.069 L 1,0.931 C 0.978,0.948 0.890,1 0.770,1 C 0.640,1 0.361,0.930 0.231,0.930 C 0.085,0.930 0.022,0.948 0,0.931 L 0,0.001 C 0.022,0.018 0.110,0.069 0.231,0.069 C 0.361,0.069 0.489,0 0.634,0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#wave-mobile");
  aspect-ratio: 390/291;
}
@supports not (aspect-ratio: auto) {
  .wp-block-image.is-style-wave-clip img {
    padding-top: calc(1 / (390/291) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .wp-block-image.is-style-wave-clip img > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 50.6875rem) {
  .wp-block-image.is-style-wave-clip img {
    clip-path: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='882'%3E%3Cdefs%3E%3CclipPath id='wave-desktop' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M 0.634,0 C 0.778,0 0.854,0.015 1,0.069 L 1,0.931 C 0.978,0.954 0.89,1 0.769,1 C 0.639,1 0.361,0.93 0.231,0.93 C 0.085,0.93 0.043,0.954 0,0.931 L 0,0.001 C 0.022,0.018 0.11,0.069 0.231,0.069 C 0.361,0.069 0.489,0 0.634,0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#wave-desktop");
    -webkit-clip-path: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='882'%3E%3Cdefs%3E%3CclipPath id='wave-desktop' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M 0.634,0 C 0.778,0 0.854,0.015 1,0.069 L 1,0.931 C 0.978,0.954 0.89,1 0.769,1 C 0.639,1 0.361,0.93 0.231,0.93 C 0.085,0.93 0.043,0.954 0,0.931 L 0,0.001 C 0.022,0.018 0.11,0.069 0.231,0.069 C 0.361,0.069 0.489,0 0.634,0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#wave-desktop");
    aspect-ratio: 1920/882;
  }
  @supports not (aspect-ratio: auto) {
    .wp-block-image.is-style-wave-clip img {
      padding-top: calc(1 / (1920/882) * 100%);
      height: 0;
      position: relative;
      overflow: hidden;
    }
    .wp-block-image.is-style-wave-clip img > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.wp-block-image.is-style-wave-clip .wp-element-caption {
  margin-left: auto;
  margin-right: auto;
  width: var(--width-full);
  max-width: var(--layout-normal);
  background: var(--wp--preset--color--pri-2);
  color: var(--wp--preset--color--acc-0);
  text-align: center;
  padding: var(--wp--preset--spacing--7) var(--wp--preset--spacing--9) var(--wp--preset--spacing--6);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-3);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: initial;
  border-radius: 8px;
  -webkit-box-shadow: var(--wp--preset--shadow--md);
          box-shadow: var(--wp--preset--shadow--md);
}
@media (min-width: 50.6875rem) {
  .wp-block-image.is-style-wave-clip .wp-element-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
.wp-block-image.is-style-wave-clip .wp-element-caption strong {
  font-size: var(--wp--preset--font-size--xl);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-2);
}

/* ==========================================================================
   SEPARATOR BLOCK STYLES
   ========================================================================== */
/**
 * Separator Height Variations
 *
 * Custom separator style variations that provide different visual weights
 * for content separation. Each style maintains consistent spacing.
 */
.wp-block-separator.is-style-sep-h-1 {
  height: 1px;
}

.wp-block-separator.is-style-sep-h-2 {
  height: 2px;
  max-width: var(--wp--preset--spacing--10);
}

.wp-block-separator.is-style-sep-h-4 {
  height: 4px;
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Content Cards Module
 *
 * Layout-focused system for styling article/post cards.
 * Organized by layout type with content-specific styling within each layout.
 *
 * Structure:
 * - Featured: Large prominent cards with detailed content
 * - List: Horizontal list layout for browsing
 * - Grid: Square/rectangular grid layout for galleries
 */
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Featured Content Card Layout
 *
 * Large, prominent display for featured content.
 * Includes image, content area, and interactive elements.
 */
.tease.tease--featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--wp--preset--color--acc-0);
  width: var(--width-full);
  -webkit-box-shadow: var(--wp--preset--shadow--sm);
          box-shadow: var(--wp--preset--shadow--sm);
  border-radius: 8px;
  overflow: hidden;
  /* ==========================================================================
        CASE STUDIES VARIANT
        ========================================================================== */
}
@media (min-width: 50.6875rem) {
  .tease.tease--featured {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.tease.tease--featured a {
  display: contents;
  text-decoration: none;
}
.tease.tease--featured .tease__thumb {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 var(--width-full);
          flex: 1 0 var(--width-full);
  max-width: var(--width-full);
  aspect-ratio: 7/5;
}
@supports not (aspect-ratio: auto) {
  .tease.tease--featured .tease__thumb {
    padding-top: calc(1 / (7/5) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--featured .tease__thumb > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 50.6875rem) {
  .tease.tease--featured .tease__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--width-six-twelfths);
            flex: 0 0 var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
}
.tease.tease--featured .tease__thumb img {
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transform-origin: 50% 16%;
          transform-origin: 50% 16%;
  -webkit-transition: all 10s ease-out;
  transition: all 10s ease-out;
}
.tease.tease--featured .tease__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: var(--wp--preset--spacing--2);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: var(--wp--preset--spacing--5) var(--wp--preset--spacing--6);
  background: var(--wp--preset--color--acc-4);
  color: var(--wp--preset--color--acc-1);
}
@media (min-width: 50.6875rem) {
  .tease.tease--featured .tease__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-six-twelfths);
            flex: 1 0 var(--width-six-twelfths);
    max-width: var(--width-six-twelfths);
  }
}
.tease.tease--featured .tease__content h4 {
  margin-bottom: 0;
  font-weight: var(--font-weight-bold);
}
.tease.tease--featured .tease__content h3 {
  color: var(--wp--preset--color--pri-2);
  font-size: var(--wp--preset--font-size--xxxl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--wp--preset--spacing--2);
  line-height: var(--line-height-2);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tease.tease--featured .tease__content h3 a {
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: pointer;
}
.tease.tease--featured .tease__content h3 a:hover {
  color: var(--wp--preset--color--pri-0);
}
.tease.tease--featured .tease__content p {
  margin: 0;
  padding: 0;
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-2);
  letter-spacing: var(--letter-spacing-4);
}
.tease.tease--featured .tease__content p ~ button {
  margin-top: var(--wp--preset--spacing--3);
}
.tease.tease--featured .tease__content button {
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  border-radius: 32px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: var(--wp--preset--font-size--md);
  padding: calc(var(--wp--preset--spacing--2) * 1.5) var(--wp--preset--spacing--4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 1500ms 250ms;
  transition: 1500ms 250ms;
}
.tease.tease--featured .tease__content button:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: var(--height-full);
  left: 0;
  top: 0;
  opacity: 0.5;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.tease.tease--featured .tease__content button:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: var(--height-full);
  left: 30px;
  top: 0;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.tease.tease--featured .tease__content button:hover {
  background: var(--wp--preset--color--pri-3);
}
.tease.tease--featured .tease__content button:hover:before {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.tease.tease--featured .tease__content button:hover:after {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.tease.tease--featured:hover .tease__thumb img {
  -webkit-transform: scale(1.25) translateY(-15px);
          transform: scale(1.25) translateY(-15px);
  -webkit-transform-origin: top;
          transform-origin: top;
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * List Content Card Layout
 *
 * Horizontal layout for list-style content display.
 * Optimized for content browsing with consistent spacing.
 */
.tease.tease--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--wp--preset--color--acc-0);
  width: var(--width-full);
  -webkit-box-shadow: var(--wp--preset--shadow--sm);
          box-shadow: var(--wp--preset--shadow--sm);
  /* ==========================================================================
        INSIGHTS VARIANT
        ========================================================================== */
  /* ==========================================================================
        CASE STUDIES VARIANT
        ========================================================================== */
}
@media (min-width: 50.6875rem) {
  .tease.tease--list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.tease.tease--list a {
  display: contents;
  text-decoration: none;
}
.tease.tease--list .tease__thumb {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 var(--width-full);
          flex: 1 0 var(--width-full);
  max-width: var(--width-full);
}
@media (min-width: 50.6875rem) {
  .tease.tease--list .tease__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--width-four-twelfths);
            flex: 0 0 var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
}
.tease.tease--list .tease__thumb img {
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.tease.tease--list .tease__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: var(--wp--preset--spacing--3);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: var(--wp--preset--spacing--4);
}
@media (min-width: 50.6875rem) {
  .tease.tease--list .tease__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-eight-twelfths);
            flex: 1 0 var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
}
.tease.tease--list .tease__content h3 {
  font-size: var(--wp--preset--font-size--xxl);
  font-weight: var(--font-weight-bold);
  margin: 0;
  line-height: var(--line-height-0);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tease.tease--list .tease__content h3 a {
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: pointer;
}
.tease.tease--list .tease__content h3 a:hover {
  color: var(--wp--preset--color--pri-0);
}
.tease.tease--list .tease__content p {
  margin: 0;
  padding: 0;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
}
.tease.tease--list .tease__content p.tease__meta {
  text-transform: uppercase;
}
.tease.tease--list .tease__content button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid var(--wp--preset--color--acc-0);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--3);
  margin-top: var(--wp--preset--spacing--3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tease.tease--list:hover .tease__thumb img {
  -webkit-transform: scale(1.25) translateY(-15px);
          transform: scale(1.25) translateY(-15px);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.tease.tease--list:hover .tease__content button {
  border-color: var(--wp--preset--color--pri-0);
  background: var(--wp--preset--color--pri-0);
}
@media (min-width: 50.6875rem) {
  .tease.tease--list.tease--insights {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.tease.tease--list.tease--insights .tease__thumb {
  -webkit-box-shadow: var(--wp--preset--shadow--xs);
          box-shadow: var(--wp--preset--shadow--xs);
  aspect-ratio: 2/1;
}
@supports not (aspect-ratio: auto) {
  .tease.tease--list.tease--insights .tease__thumb {
    padding-top: calc(1 / (2/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--list.tease--insights .tease__thumb > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 50.6875rem) {
  .tease.tease--list.tease--insights .tease__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--width-eight-twelfths);
            flex: 0 0 var(--width-eight-twelfths);
    max-width: var(--width-eight-twelfths);
  }
}
.tease.tease--list.tease--insights .tease__thumb img {
  -webkit-transition: none;
  transition: none;
}
.tease.tease--list.tease--insights .tease__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
}
@media (min-width: 50.6875rem) {
  .tease.tease--list.tease--insights .tease__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 var(--width-four-twelfths);
            flex: 1 0 var(--width-four-twelfths);
    max-width: var(--width-four-twelfths);
  }
}
.tease.tease--list.tease--insights:hover .tease__thumb img {
  -webkit-transform: none;
          transform: none;
}
.tease.tease--list.tease--case-studies .tease__thumb {
  aspect-ratio: 5/4;
}
@supports not (aspect-ratio: auto) {
  .tease.tease--list.tease--case-studies .tease__thumb {
    padding-top: calc(1 / (5/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--list.tease--case-studies .tease__thumb > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.tease.tease--list.tease--case-studies .tease__thumb img {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transform-origin: 50% 16%;
          transform-origin: 50% 16%;
  -webkit-transition: all 10s ease-out;
  transition: all 10s ease-out;
}
.tease.tease--list.tease--case-studies .tease__content {
  padding: var(--wp--preset--spacing--5);
  background: var(--wp--preset--color--acc-3);
  color: var(--wp--preset--color--acc-0);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Grid Content Card Layout
 *
 * Square/rectangular grid layout for content cards.
 * Includes overlay content and interactive hover states.
 */
.tease.tease--grid {
  position: relative;
  display: block;
  width: var(--width-full);
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  aspect-ratio: 3/4;
  /* ==========================================================================
        INDUSTRIES VARIANT
        ========================================================================== */
  /* ==========================================================================
        CASE STUDIES VARIANT
        ========================================================================== */
  /* ==========================================================================
        INSIGHTS VARIANT
        ========================================================================== */
}
@supports not (aspect-ratio: auto) {
  .tease.tease--grid {
    padding-top: calc(1 / (3/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--grid > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.tease.tease--grid.tease--insights .tease__content button, .tease.tease--grid.tease--case-studies .tease__hover button, .tease.tease--grid.tease--industries .tease__hover button {
  background: var(--wp--preset--color--pri-0);
  color: var(--wp--preset--color--acc-0);
  border-radius: 32px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: var(--wp--preset--font-size--md);
  padding: calc(var(--wp--preset--spacing--2) * 1.5) var(--wp--preset--spacing--4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 1500ms 250ms;
  transition: 1500ms 250ms;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tease.tease--grid.tease--insights .tease__content button:before, .tease.tease--grid.tease--case-studies .tease__hover button:before, .tease.tease--grid.tease--industries .tease__hover button:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: var(--height-full);
  left: 0;
  top: 0;
  opacity: 0.5;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.tease.tease--grid.tease--insights .tease__content button:after, .tease.tease--grid.tease--case-studies .tease__hover button:after, .tease.tease--grid.tease--industries .tease__hover button:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: var(--height-full);
  left: 30px;
  top: 0;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: translateX(-100px) skewX(-15deg);
          transform: translateX(-100px) skewX(-15deg);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.tease.tease--grid.tease--insights .tease__content button:hover, .tease.tease--grid.tease--case-studies .tease__hover button:hover, .tease.tease--grid.tease--industries .tease__hover button:hover {
  background: var(--wp--preset--color--pri-3);
}
.tease.tease--grid.tease--insights .tease__content button:hover:before, .tease.tease--grid.tease--case-studies .tease__hover button:hover:before, .tease.tease--grid.tease--industries .tease__hover button:hover:before {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.tease.tease--grid.tease--insights .tease__content button:hover:after, .tease.tease--grid.tease--case-studies .tease__hover button:hover:after, .tease.tease--grid.tease--industries .tease__hover button:hover:after {
  -webkit-transform: translateX(300px) skewX(-15deg);
          transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.tease.tease--grid.tease--industries figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--width-full);
  height: var(--height-full);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}
.tease.tease--grid.tease--industries figure img {
  position: absolute;
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.tease.tease--grid.tease--industries figure figcaption {
  display: grid;
  text-align: center;
  position: relative;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  padding: var(--gutter);
  text-shadow: 0px 0px 0px rgb(0, 0, 0);
  color: var(--wp--preset--color--acc-0);
  font-weight: var(--font-weight-bold);
  font-size: var(--wp--preset--font-size--xl);
  line-height: var(--line-height-2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: var(--width-full);
  height: var(--height-full);
  z-index: 1;
}
.tease.tease--grid.tease--industries figure figcaption * {
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.tease.tease--grid.tease--industries figure figcaption .tease__middle {
  grid-row: 3;
  justify-self: center;
  align-self: center;
}
.tease.tease--grid.tease--industries figure figcaption .tease__lower {
  grid-row: 4;
  justify-self: center;
  align-self: end;
}
.tease.tease--grid.tease--industries .tease__hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--wp--preset--color--pri-1);
  z-index: 11;
  padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  display: grid;
  text-align: left;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tease.tease--grid.tease--industries .tease__hover div {
  grid-row: 1;
  justify-self: start;
  align-self: center;
}
.tease.tease--grid.tease--industries .tease__hover h3 {
  color: var(--wp--preset--color--pri-3);
  font-weight: var(--font-weight-regular);
  font-size: var(--wp--preset--font-size--xxl);
  line-height: var(--line-height-2);
  margin-bottom: var(--wp--preset--spacing--4);
}
.tease.tease--grid.tease--industries .tease__hover p {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-2);
}
.tease.tease--grid.tease--industries .tease__hover button {
  grid-row: 5;
  justify-self: start;
  align-self: end;
}
.tease.tease--grid.tease--industries:hover figure figcaption * {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.tease.tease--grid.tease--industries:hover .tease__hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
  transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
}
.tease.tease--grid.tease--case-studies .tease__figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--width-full);
  height: var(--height-full);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}
.tease.tease--grid.tease--case-studies .tease__figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--wp--preset--color--acc-3)), to(var(--wp--preset--color--acc-1)));
  background: linear-gradient(180deg, var(--wp--preset--color--acc-3) 0%, var(--wp--preset--color--acc-1) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}
.tease.tease--grid.tease--case-studies .tease__figure > img {
  position: absolute;
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.tease.tease--grid.tease--case-studies .tease__figure .tease__content {
  display: grid;
  text-align: center;
  position: relative;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  text-shadow: 0px 0px 0px rgb(0, 0, 0);
  color: var(--wp--preset--color--acc-0);
  font-weight: var(--font-weight-bold);
  font-size: var(--wp--preset--font-size--xl);
  line-height: var(--line-height-2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: var(--width-full);
  height: var(--height-full);
  z-index: 2;
}
.tease.tease--grid.tease--case-studies .tease__figure .tease__content * {
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.tease.tease--grid.tease--case-studies .tease__figure .tease__content .tease__preview {
  grid-row: 3;
  justify-self: center;
  align-self: center;
}
.tease.tease--grid.tease--case-studies .tease__figure .tease__content .tease__logo {
  grid-row: 5;
  justify-self: center;
  align-self: center;
  max-width: var(--width-one-half);
  width: var(--width-full);
  aspect-ratio: 2/1;
}
@supports not (aspect-ratio: auto) {
  .tease.tease--grid.tease--case-studies .tease__figure .tease__content .tease__logo {
    padding-top: calc(1 / (2/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--grid.tease--case-studies .tease__figure .tease__content .tease__logo > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.tease.tease--grid.tease--case-studies .tease__figure .tease__content .tease__logo img {
  display: block;
  width: var(--width-full);
  height: var(--height-full);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.tease.tease--grid.tease--case-studies .tease__hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--wp--preset--color--pri-1);
  z-index: 11;
  padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  display: grid;
  text-align: left;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tease.tease--grid.tease--case-studies .tease__hover div {
  grid-row: 1;
  justify-self: start;
  align-self: center;
}
.tease.tease--grid.tease--case-studies .tease__hover h3 {
  color: var(--wp--preset--color--pri-3);
  font-weight: var(--font-weight-regular);
  font-size: var(--wp--preset--font-size--xl);
  line-height: var(--line-height-2);
  margin-bottom: var(--wp--preset--spacing--4);
}
.tease.tease--grid.tease--case-studies .tease__hover p {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-2);
}
.tease.tease--grid.tease--case-studies .tease__hover button {
  grid-row: 5;
  justify-self: start;
  align-self: end;
}
.tease.tease--grid.tease--case-studies:hover figure figcaption * {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.tease.tease--grid.tease--case-studies:hover .tease__hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
  transition: all 0.25s cubic-bezier(0.11, 0, 0.5, 0) 0.15s;
}
.tease.tease--grid.tease--insights {
  display: grid;
  grid-template-rows: 3fr 4fr;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--5);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.tease.tease--grid.tease--insights > * {
  overflow: hidden;
  z-index: 1;
}
.tease.tease--grid.tease--insights > h3 {
  color: var(--wp--preset--color--acc-0);
  font-weight: var(--font-weight-regular);
  font-size: var(--wp--preset--font-size--xxl);
  line-height: var(--line-height-2);
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 1/-1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  overflow: hidden !important;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.tease.tease--grid.tease--insights .tease__avatar {
  grid-row: 2;
  grid-column: 1;
  padding: 0;
  margin: 0;
}
.tease.tease--grid.tease--insights .tease__avatar img {
  max-width: var(--width-full);
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100%;
}
.tease.tease--grid.tease--insights .tease__content {
  grid-row: 2;
  grid-column: 2/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tease.tease--grid.tease--insights .tease__content button {
  justify-self: flex-end;
}
.tease.tease--grid.tease--insights .tease__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: var(--wp--preset--spacing--2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tease.tease--grid.tease--insights .tease__meta:before {
  content: "";
  display: block;
  width: var(--wp--preset--spacing--7);
  height: 1px;
  background: var(--wp--preset--color--acc-0);
  margin-bottom: var(--wp--preset--spacing--1);
  opacity: 0.4;
}
.tease.tease--grid.tease--insights .tease__meta li {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--md);
  font-weight: var(--font-weight-light);
  line-height: 1;
}
.tease.tease--grid.tease--insights .tease__meta li .reading-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--wp--preset--spacing--1);
}
.tease.tease--grid.tease--insights .tease__meta li .reading-time svg {
  font-size: var(--wp--preset--font-size--lg);
}
.tease.tease--grid.tease--insights .tease__author {
  color: var(--wp--preset--color--pri-3);
  font-size: var(--wp--preset--font-size--lg);
  line-height: var(--line-height-2);
  margin-bottom: var(--wp--preset--spacing--2);
}
.tease.tease--grid.tease--insights .tease__author span {
  font-size: var(--wp--preset--font-size--md);
}
.tease.tease--grid.tease--insights::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 300%;
  -webkit-transform-origin: center;
          transform-origin: center;
  background-size: 150% 120%;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: rotate(0) scale(1.5);
          transform: rotate(0) scale(1.5);
  z-index: 0;
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: auto) {
  .tease.tease--grid.tease--insights::before {
    padding-top: calc(1 / (1/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .tease.tease--grid.tease--insights::before > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.tease.tease--grid.tease--insights:hover {
  -webkit-transform: translateY(calc(var(--wp--preset--spacing--3) * -1));
          transform: translateY(calc(var(--wp--preset--spacing--3) * -1));
  -webkit-box-shadow: var(--wp--preset--shadow--xl);
          box-shadow: var(--wp--preset--shadow--xl);
}
.tease.tease--grid.tease--insights:hover:before {
  opacity: 1;
  -webkit-animation: gradient-animation 10s ease infinite;
          animation: gradient-animation 10s ease infinite;
}
.block\:query-posts .row li:nth-child(9n+1) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+1) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+1) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+5) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+4) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+4) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+9) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+8) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+8) .tease.tease--grid.tease--insights {
  background: var(--wp--preset--color--pri-1);
}
.block\:query-posts .row li:nth-child(9n+1) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+1) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+1) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+5) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+4) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+4) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+9) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+8) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+8) .tease.tease--grid.tease--insights::before {
  background: linear-gradient(45deg, var(--wp--preset--color--pri-1), var(--wp--preset--color--pri-0));
}
.block\:query-posts .row li:nth-child(9n+2) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+2) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+2) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+6) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+7) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+6) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+6) .tease.tease--grid.tease--insights {
  background: var(--wp--preset--color--acc-1);
}
.block\:query-posts .row li:nth-child(9n+2) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+2) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+2) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+6) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+7) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+6) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+6) .tease.tease--grid.tease--insights::before {
  background: linear-gradient(45deg, var(--wp--preset--color--acc-1), #717171);
}
.block\:query-posts .row li:nth-child(9n+3) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+4) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights, .block\:query-posts .row li:nth-child(9n+8) .tease.tease--grid.tease--insights, .archive-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights, .search-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights {
  background: var(--wp--preset--color--pri-2);
}
.block\:query-posts .row li:nth-child(9n+3) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+4) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights::before, .block\:query-posts .row li:nth-child(9n+8) .tease.tease--grid.tease--insights::before, .archive-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights::before, .search-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights::before {
  background: linear-gradient(45deg, var(--wp--preset--color--pri-2), var(--wp--preset--color--pri-3));
}
.block\:query-posts .row li:nth-child(9n+3) .tease.tease--grid.tease--insights .tease__author, .archive-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights .tease__author, .search-posts-container li:nth-child(9n+3) .tease.tease--grid.tease--insights .tease__author, .block\:query-posts .row li:nth-child(9n+4) .tease.tease--grid.tease--insights .tease__author, .archive-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights .tease__author, .search-posts-container li:nth-child(9n+5) .tease.tease--grid.tease--insights .tease__author, .block\:query-posts .row li:nth-child(9n+8) .tease.tease--grid.tease--insights .tease__author, .archive-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights .tease__author, .search-posts-container li:nth-child(9n+7) .tease.tease--grid.tease--insights .tease__author {
  color: var(--wp--preset--color--acc-0);
}

/**
 * Gradient Animation Keyframes
 *
 * Animated gradient background effect for insight cards.
 * Creates engaging visual movement on hover.
 */
@-webkit-keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
    -webkit-transform: rotate(360deg) scale(2);
            transform: rotate(360deg) scale(2);
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
    -webkit-transform: rotate(360deg) scale(2);
            transform: rotate(360deg) scale(2);
  }
  100% {
    background-position: 0% 0%;
  }
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Reading Time Component
 *
 * Custom reading time estimate display component.
 * Styled for integration within post author sections
 * with consistent typography and spacing.
 */
/**
 * Reading Time Display
 *
 * Estimates reading time for posts and displays it with an icon.
 * When used within post author context, uses light styling for subtlety.
 */
.post-author .reading-time {
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-light);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--wp--preset--spacing--1);
}
/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Social Icons Block Styles
 *
 * Styling for social media icon blocks with responsive layout
 * and hover effects. Includes footer-specific styling variants
 * for consistent branding across site sections.
 */
/**
 * Base Social Icons Block
 *
 * Horizontal flexbox layout for social media icons with consistent
 * spacing and responsive behavior. Uses theme gutters for spacing.
 */
.block\:social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--gutter);
  /**
      * Footer Social Icons Variant
      *
      * Specialized styling for social icons in footer context.
      * Uses different colors and spacing for footer integration.
      * Includes hover effects for better user interaction.
      */
}
@media (min-width: 50.6875rem) {
  .block\:social-icons {
    margin-bottom: initial;
  }
}
.block\:social-icons.block\:social-icons--footer {
  gap: var(--wp--preset--spacing--2);
  margin-bottom: var(--wp--preset--spacing--3);
}
.block\:social-icons.block\:social-icons--footer li a {
  font-size: var(--wp--preset--font-size--xxl);
  color: var(--wp--preset--color--acc-1);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.block\:social-icons.block\:social-icons--footer li a .fa-inverse {
  color: var(--wp--preset--color--acc-2);
}
.block\:social-icons.block\:social-icons--footer li a:hover {
  color: var(--wp--preset--color--pri-0);
}

/**
 * Main SCSS Entry Point
 *
 * Modern SCSS architecture using @use and @forward patterns
 * Follows ITCSS (Inverted Triangle CSS) methodology
 */
/**
 * Ninja Forms Block Styles
 *
 * Styling for social media icon blocks with responsive layout
 * and hover effects. Includes footer-specific styling variants
 * for consistent branding across site sections.
 */
.nf-form-cont {
  /**
      * Custom Ninja Forms HTML tags
      *
      * Custom HTML tags added around certain elementes by default.
      * We don't have a use for them so we'll remove them all from
      * the documnet flow making them irrelevant to thei children.
      * Doing this will allow their children to be controlled by the
      * custom tags parant. instead of the custom tag.
      */
}
.nf-form-cont nf-section,
.nf-form-cont nf-fields-wrap,
.nf-form-cont nf-field {
  display: contents;
}
.nf-form-cont .ninja-forms-noscript-message {
  background: #f1f1f1;
  border: 4px dashed #ccc;
  color: #333;
  display: block;
  font-size: 20px;
  margin: 20px 0;
  padding: 40px;
  text-align: center;
}
.nf-form-cont .nf-sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  opacity: 0;
  white-space: nowrap;
  width: 1px;
}
.nf-form-cont .nf-loading-spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: hsla(0, 0%, 81.6%, 0.5);
  border-radius: 100%;
  -webkit-animation: nf-scaleout 1s ease-in-out infinite;
          animation: nf-scaleout 1s ease-in-out infinite;
}
.nf-form-cont .one-fourth,
.nf-form-cont .one-half,
.nf-form-cont .one-sixth,
.nf-form-cont .one-third,
.nf-form-cont .two-fourths,
.nf-form-cont .two-sixths,
.nf-form-cont .two-thirds,
.nf-form-cont .three-fourths,
.nf-form-cont .three-sixths,
.nf-form-cont .four-sixths,
.nf-form-cont .five-sixths {
  clear: none;
  float: left;
  margin-left: 2.5641025641%;
}
.nf-form-cont .one-fourth .inside,
.nf-form-cont .one-half .inside,
.nf-form-cont .one-sixth .inside,
.nf-form-cont .one-third .inside,
.nf-form-cont .two-fourths .inside,
.nf-form-cont .two-sixths .inside,
.nf-form-cont .two-thirds .inside,
.nf-form-cont .three-fourths .inside,
.nf-form-cont .three-sixths .inside,
.nf-form-cont .four-sixths .inside,
.nf-form-cont .five-sixths .inside {
  padding: 20px;
}
.nf-form-cont .one-half,
.nf-form-cont .three-sixths,
.nf-form-cont .two-fourths {
  width: 48.7179487179%;
}
.nf-form-cont .one-third,
.nf-form-cont .two-sixths {
  width: 31.6239316239%;
}
.nf-form-cont .four-sixths,
.nf-form-cont .two-thirds {
  width: 65.811965812%;
}
.nf-form-cont .one-fourth {
  width: 23.0769230769%;
}
.nf-form-cont .three-fourths {
  width: 74.358974359%;
}
.nf-form-cont .one-sixth {
  width: 14.5299145299%;
}
.nf-form-cont .five-sixths {
  width: 82.905982906%;
}
.nf-form-cont .two-col-list ul li {
  float: left;
  width: 50%;
}
.nf-form-cont .three-col-list ul li {
  float: left;
  width: 33.33%;
}
.nf-form-cont .four-col-list ul li {
  float: left;
  width: 25%;
}
.nf-form-cont .five-col-list ul li {
  float: left;
  width: 20%;
}
.nf-form-cont .six-col-list ul li {
  float: left;
  width: 16.66%;
}
.nf-form-cont .nf-form-wrap {
  /**
         * Inner form Wrap elements
         *
         * For reference we'll list out all internal elements that the
         * that Ninja Forms plugin prints into the page regardless of
         * whether we intend to style them or not.
         */
}
.nf-form-cont .nf-form-wrap *,
.nf-form-cont .nf-form-wrap :after,
.nf-form-cont .nf-form-wrap :before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nf-form-cont .nf-form-wrap .nf-response-msg {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout {
  /**
           * Actual form container
           *
           * This is where Ninja Forms outputs the html for the form and
           * all of it's fields. Our main point of style.
           */
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--wp--preset--spacing--3);
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-above .nf-field .field-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-above .nf-field .field-wrap .nf-field-element {
  margin: 0;
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-below .nf-field .field-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-below .nf-field .field-wrap .nf-field-label {
  margin-top: 10px;
  -webkit-box-ordinal-group: 16;
      -ms-flex-order: 15;
          order: 15;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-below .nf-field .field-wrap .nf-field-element {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin: 0;
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-hidden .nf-field .field-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-hidden .nf-field .field-wrap .nf-field-element {
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-hidden .nf-field .field-wrap .nf-field-description {
  width: 100%;
  -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
          order: 20;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-field .field-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-field .field-wrap .nf-field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 2%;
  text-align: right;
  width: 35%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-field .field-wrap .nf-field-label label {
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-field .field-wrap .nf-field-element {
  display: inline-block;
  width: 65%;
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-field .field-wrap .nf-field-description {
  margin-left: 35%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left .nf-after-field {
  margin-left: 36.5%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.listcheckbox-wrap .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.listradio-wrap .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.textarea-wrap .nf-field .field-wrap .nf-field-label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.textarea-wrap .nf-field .field-wrap .nf-field-label {
  margin-top: 5px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.hr-wrap, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.html-wrap {
  display: block;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.hr-wrap .nf-field .field-wrap .nf-field-element, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-left.html-wrap .nf-field .field-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right .nf-field .field-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right .nf-field .field-wrap .nf-field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2%;
  width: 35%;
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right .nf-field .field-wrap .nf-field-element {
  display: inline-block;
  width: 65%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right .nf-field .field-wrap .nf-field-description {
  margin-right: 35%;
  -webkit-box-ordinal-group: 16;
      -ms-flex-order: 15;
          order: 15;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right .nf-after-field {
  width: 65%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.checkbox-wrap .nf-field .field-wrap .nf-field-label {
  width: auto;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.checkbox-wrap .nf-field .field-wrap .nf-field-element {
  width: 20px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.listcheckbox-wrap .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.listradio-wrap .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.textarea-wrap .nf-field .field-wrap .nf-field-label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.textarea-wrap .nf-field .field-wrap .nf-field-label {
  margin-top: 5px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.hr-wrap, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.html-wrap {
  display: block;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.hr-wrap .nf-field .field-wrap .nf-field-element, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.label-right.html-wrap .nf-field .field-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.hidden-container {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.hidden-container .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.hr-container .nf-field .field-wrap .nf-field-label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container.html-container .nf-field .field-wrap .nf-field-label {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--wp--preset--spacing--1);
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-label label {
  margin: 0;
  padding: 0;
  width: var(--width-full);
  max-width: var(--layout-normal);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-3);
  letter-spacing: var(--letter-spacing-3);
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-label label .ninja-forms-req-symbol {
  color: #e80000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element {
  position: relative;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element .ninja-forms-field {
  border: none;
  border-radius: 5px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element select,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element textarea {
  margin: 0;
  width: 100%;
  height: auto;
  vertical-align: inherit;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input:focus-visible,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element select:focus-visible,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element textarea:focus-visible {
  outline: 2px solid var(--wp--preset--color--pri-0);
  outline-offset: 3px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=text], .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=email] {
  height: var(--wp--preset--spacing--5);
  padding: var(--wp--preset--spacing--1) var(--wp--preset--spacing--2);
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=checkbox], .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=button], .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=submit] {
  background: var(--wp--preset--color--pri-1);
  color: var(--wp--preset--color--acc-0);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-3);
  letter-spacing: var(--letter-spacing-3);
  height: var(--wp--preset--spacing--5);
  padding: var(--wp--preset--spacing--1) var(--wp--preset--spacing--5);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element input[type=submit]:hover {
    background: var(--wp--preset--color--pri-2);
  }
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element button {
  width: auto;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element textarea {
  height: var(--wp--preset--spacing--10);
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--2);
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element .time-wrap {
  padding: 1px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element .pikaday__container,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-element .pikaday__display {
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-description {
  width: 100%;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap .nf-field-description p:last-child {
  margin: 0;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.nf-error .nf-field-element .ninja-forms-field {
  border: 1px solid #e80000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.nf-error.listimage-wrap .nf-field-element ul {
  border: 1px solid #e80000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element ul,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element li, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element ul,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element li, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element ul,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element ul input,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element li input, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element ul input,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element li input, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element ul input,
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element li input {
  margin-right: 5px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element li, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element li, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element li {
  padding-left: 10px;
  margin: 0 0 5px !important;
  text-indent: 0 !important;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element li label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element li label, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element li label {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.5em;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-checkbox-wrap .nf-field-element li input, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-image-wrap .nf-field-element li input, .nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-radio-wrap .nf-field-element li input {
  width: auto !important;
  float: left;
  margin-top: 0.25em;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.listimage-wrap .nf-field-element ul li {
  width: 100%;
  height: 100%;
  display: inline-grid;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.listimage-wrap .nf-field-element ul li label {
  padding: 5px;
  border: 2px solid transparent;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.listimage-wrap .nf-field-element ul li label.nf-checked-label {
  border: 2px solid #007acc;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.listimage-wrap .nf-field-element ul li label img {
  display: block;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.listimage-wrap .nf-field-element ul li input:focus + label {
  outline: 2px solid;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.product-wrap > div input {
  width: 80px !important;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.product-wrap > div .nf-product-field span {
  padding: 0 5px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.starrating-wrap .star {
  border-bottom: 0;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-field .field-wrap.list-select-wrap div div {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-after-field .nf-input-limit {
  font-size: 12px;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-form-content .nf-field-container .nf-after-field .nf-error-msg {
  margin-top: var(--wp--preset--spacing--2);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: var(--font-weight-bold);
  color: #e80000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout > form > div .nf-after-form-content .nf-form-hp {
  position: absolute;
  visibility: hidden;
}
@-webkit-keyframes nf-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes nf-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.w-0 {
  width: 0;
}

.w-1 {
  width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.w-2 {
  width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.w-3 {
  width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.w-4 {
  width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.w-5 {
  width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.w-6 {
  width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.w-7 {
  width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.w-8 {
  width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.w-9 {
  width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.w-10 {
  width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.w-50 {
  width: 50%;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-one-fifth {
  width: 20%;
}

.w-two-fifths {
  width: 40%;
}

.w-three-fifths {
  width: 60%;
}

.w-four-fifths {
  width: 80%;
}

.w-one-half {
  width: 50%;
}

.w-one-quarter {
  width: 25%;
}

.w-three-quarters {
  width: 75%;
}

.w-one-sixth {
  width: 16.666667%;
}

.w-two-sixths {
  width: 33.333333%;
}

.w-three-sixths {
  width: 50%;
}

.w-four-sixths {
  width: 66.666667%;
}

.w-five-sixths {
  width: 83.333333%;
}

.w-one-third {
  width: 33.333333%;
}

.w-two-thirds {
  width: 66.666667%;
}

.w-one-twelfth {
  width: 8.333333%;
}

.w-two-twelfths {
  width: 16.666667%;
}

.w-three-twelfths {
  width: 25%;
}

.w-four-twelfths {
  width: 33.333333%;
}

.w-five-twelfths {
  width: 41.666667%;
}

.w-six-twelfths {
  width: 50%;
}

.w-seven-twelfths {
  width: 58.333333%;
}

.w-eight-twelfths {
  width: 66.666667%;
}

.w-nine-twelfths {
  width: 75%;
}

.w-ten-twelfths {
  width: 83.333333%;
}

.w-eleven-twelfths {
  width: 91.666667%;
}

.max-w-0 {
  max-width: 0;
}

.max-w-1 {
  max-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.max-w-2 {
  max-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.max-w-3 {
  max-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.max-w-4 {
  max-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.max-w-5 {
  max-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.max-w-6 {
  max-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.max-w-7 {
  max-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.max-w-8 {
  max-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.max-w-9 {
  max-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.max-w-10 {
  max-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.max-w-50 {
  max-width: 50%;
}

.max-w-auto {
  max-width: auto;
}

.max-w-full {
  max-width: 100%;
}

.max-w-screen {
  max-width: 100vw;
}

.max-w-one-fifth {
  max-width: 20%;
}

.max-w-two-fifths {
  max-width: 40%;
}

.max-w-three-fifths {
  max-width: 60%;
}

.max-w-four-fifths {
  max-width: 80%;
}

.max-w-one-half {
  max-width: 50%;
}

.max-w-one-quarter {
  max-width: 25%;
}

.max-w-three-quarters {
  max-width: 75%;
}

.max-w-one-sixth {
  max-width: 16.666667%;
}

.max-w-two-sixths {
  max-width: 33.333333%;
}

.max-w-three-sixths {
  max-width: 50%;
}

.max-w-four-sixths {
  max-width: 66.666667%;
}

.max-w-five-sixths {
  max-width: 83.333333%;
}

.max-w-one-third {
  max-width: 33.333333%;
}

.max-w-two-thirds {
  max-width: 66.666667%;
}

.max-w-one-twelfth {
  max-width: 8.333333%;
}

.max-w-two-twelfths {
  max-width: 16.666667%;
}

.max-w-three-twelfths {
  max-width: 25%;
}

.max-w-four-twelfths {
  max-width: 33.333333%;
}

.max-w-five-twelfths {
  max-width: 41.666667%;
}

.max-w-six-twelfths {
  max-width: 50%;
}

.max-w-seven-twelfths {
  max-width: 58.333333%;
}

.max-w-eight-twelfths {
  max-width: 66.666667%;
}

.max-w-nine-twelfths {
  max-width: 75%;
}

.max-w-ten-twelfths {
  max-width: 83.333333%;
}

.max-w-eleven-twelfths {
  max-width: 91.666667%;
}

.min-w-0 {
  min-width: 0;
}

.min-w-1 {
  min-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.min-w-2 {
  min-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.min-w-3 {
  min-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.min-w-4 {
  min-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.min-w-5 {
  min-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.min-w-6 {
  min-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.min-w-7 {
  min-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.min-w-8 {
  min-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.min-w-9 {
  min-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.min-w-10 {
  min-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.min-w-50 {
  min-width: 50%;
}

.min-w-auto {
  min-width: auto;
}

.min-w-full {
  min-width: 100%;
}

.min-w-screen {
  min-width: 100vw;
}

.min-w-one-fifth {
  min-width: 20%;
}

.min-w-two-fifths {
  min-width: 40%;
}

.min-w-three-fifths {
  min-width: 60%;
}

.min-w-four-fifths {
  min-width: 80%;
}

.min-w-one-half {
  min-width: 50%;
}

.min-w-one-quarter {
  min-width: 25%;
}

.min-w-three-quarters {
  min-width: 75%;
}

.min-w-one-sixth {
  min-width: 16.666667%;
}

.min-w-two-sixths {
  min-width: 33.333333%;
}

.min-w-three-sixths {
  min-width: 50%;
}

.min-w-four-sixths {
  min-width: 66.666667%;
}

.min-w-five-sixths {
  min-width: 83.333333%;
}

.min-w-one-third {
  min-width: 33.333333%;
}

.min-w-two-thirds {
  min-width: 66.666667%;
}

.min-w-one-twelfth {
  min-width: 8.333333%;
}

.min-w-two-twelfths {
  min-width: 16.666667%;
}

.min-w-three-twelfths {
  min-width: 25%;
}

.min-w-four-twelfths {
  min-width: 33.333333%;
}

.min-w-five-twelfths {
  min-width: 41.666667%;
}

.min-w-six-twelfths {
  min-width: 50%;
}

.min-w-seven-twelfths {
  min-width: 58.333333%;
}

.min-w-eight-twelfths {
  min-width: 66.666667%;
}

.min-w-nine-twelfths {
  min-width: 75%;
}

.min-w-ten-twelfths {
  min-width: 83.333333%;
}

.min-w-eleven-twelfths {
  min-width: 91.666667%;
}

@media (min-width: 50.6875rem) {
  .sm\:w-0 {
    width: 0;
  }
  .sm\:w-1 {
    width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:w-2 {
    width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:w-3 {
    width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:w-4 {
    width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:w-5 {
    width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:w-6 {
    width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:w-7 {
    width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:w-8 {
    width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:w-9 {
    width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:w-10 {
    width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:w-50 {
    width: 50%;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-screen {
    width: 100vw;
  }
  .sm\:w-one-fifth {
    width: 20%;
  }
  .sm\:w-two-fifths {
    width: 40%;
  }
  .sm\:w-three-fifths {
    width: 60%;
  }
  .sm\:w-four-fifths {
    width: 80%;
  }
  .sm\:w-one-half {
    width: 50%;
  }
  .sm\:w-one-quarter {
    width: 25%;
  }
  .sm\:w-three-quarters {
    width: 75%;
  }
  .sm\:w-one-sixth {
    width: 16.666667%;
  }
  .sm\:w-two-sixths {
    width: 33.333333%;
  }
  .sm\:w-three-sixths {
    width: 50%;
  }
  .sm\:w-four-sixths {
    width: 66.666667%;
  }
  .sm\:w-five-sixths {
    width: 83.333333%;
  }
  .sm\:w-one-third {
    width: 33.333333%;
  }
  .sm\:w-two-thirds {
    width: 66.666667%;
  }
  .sm\:w-one-twelfth {
    width: 8.333333%;
  }
  .sm\:w-two-twelfths {
    width: 16.666667%;
  }
  .sm\:w-three-twelfths {
    width: 25%;
  }
  .sm\:w-four-twelfths {
    width: 33.333333%;
  }
  .sm\:w-five-twelfths {
    width: 41.666667%;
  }
  .sm\:w-six-twelfths {
    width: 50%;
  }
  .sm\:w-seven-twelfths {
    width: 58.333333%;
  }
  .sm\:w-eight-twelfths {
    width: 66.666667%;
  }
  .sm\:w-nine-twelfths {
    width: 75%;
  }
  .sm\:w-ten-twelfths {
    width: 83.333333%;
  }
  .sm\:w-eleven-twelfths {
    width: 91.666667%;
  }
  .sm\:max-w-0 {
    max-width: 0;
  }
  .sm\:max-w-1 {
    max-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:max-w-2 {
    max-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:max-w-3 {
    max-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:max-w-4 {
    max-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:max-w-5 {
    max-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:max-w-6 {
    max-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:max-w-7 {
    max-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:max-w-8 {
    max-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:max-w-9 {
    max-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:max-w-10 {
    max-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:max-w-50 {
    max-width: 50%;
  }
  .sm\:max-w-auto {
    max-width: auto;
  }
  .sm\:max-w-full {
    max-width: 100%;
  }
  .sm\:max-w-screen {
    max-width: 100vw;
  }
  .sm\:max-w-one-fifth {
    max-width: 20%;
  }
  .sm\:max-w-two-fifths {
    max-width: 40%;
  }
  .sm\:max-w-three-fifths {
    max-width: 60%;
  }
  .sm\:max-w-four-fifths {
    max-width: 80%;
  }
  .sm\:max-w-one-half {
    max-width: 50%;
  }
  .sm\:max-w-one-quarter {
    max-width: 25%;
  }
  .sm\:max-w-three-quarters {
    max-width: 75%;
  }
  .sm\:max-w-one-sixth {
    max-width: 16.666667%;
  }
  .sm\:max-w-two-sixths {
    max-width: 33.333333%;
  }
  .sm\:max-w-three-sixths {
    max-width: 50%;
  }
  .sm\:max-w-four-sixths {
    max-width: 66.666667%;
  }
  .sm\:max-w-five-sixths {
    max-width: 83.333333%;
  }
  .sm\:max-w-one-third {
    max-width: 33.333333%;
  }
  .sm\:max-w-two-thirds {
    max-width: 66.666667%;
  }
  .sm\:max-w-one-twelfth {
    max-width: 8.333333%;
  }
  .sm\:max-w-two-twelfths {
    max-width: 16.666667%;
  }
  .sm\:max-w-three-twelfths {
    max-width: 25%;
  }
  .sm\:max-w-four-twelfths {
    max-width: 33.333333%;
  }
  .sm\:max-w-five-twelfths {
    max-width: 41.666667%;
  }
  .sm\:max-w-six-twelfths {
    max-width: 50%;
  }
  .sm\:max-w-seven-twelfths {
    max-width: 58.333333%;
  }
  .sm\:max-w-eight-twelfths {
    max-width: 66.666667%;
  }
  .sm\:max-w-nine-twelfths {
    max-width: 75%;
  }
  .sm\:max-w-ten-twelfths {
    max-width: 83.333333%;
  }
  .sm\:max-w-eleven-twelfths {
    max-width: 91.666667%;
  }
  .sm\:min-w-0 {
    min-width: 0;
  }
  .sm\:min-w-1 {
    min-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:min-w-2 {
    min-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:min-w-3 {
    min-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:min-w-4 {
    min-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:min-w-5 {
    min-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:min-w-6 {
    min-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:min-w-7 {
    min-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:min-w-8 {
    min-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:min-w-9 {
    min-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:min-w-10 {
    min-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:min-w-50 {
    min-width: 50%;
  }
  .sm\:min-w-auto {
    min-width: auto;
  }
  .sm\:min-w-full {
    min-width: 100%;
  }
  .sm\:min-w-screen {
    min-width: 100vw;
  }
  .sm\:min-w-one-fifth {
    min-width: 20%;
  }
  .sm\:min-w-two-fifths {
    min-width: 40%;
  }
  .sm\:min-w-three-fifths {
    min-width: 60%;
  }
  .sm\:min-w-four-fifths {
    min-width: 80%;
  }
  .sm\:min-w-one-half {
    min-width: 50%;
  }
  .sm\:min-w-one-quarter {
    min-width: 25%;
  }
  .sm\:min-w-three-quarters {
    min-width: 75%;
  }
  .sm\:min-w-one-sixth {
    min-width: 16.666667%;
  }
  .sm\:min-w-two-sixths {
    min-width: 33.333333%;
  }
  .sm\:min-w-three-sixths {
    min-width: 50%;
  }
  .sm\:min-w-four-sixths {
    min-width: 66.666667%;
  }
  .sm\:min-w-five-sixths {
    min-width: 83.333333%;
  }
  .sm\:min-w-one-third {
    min-width: 33.333333%;
  }
  .sm\:min-w-two-thirds {
    min-width: 66.666667%;
  }
  .sm\:min-w-one-twelfth {
    min-width: 8.333333%;
  }
  .sm\:min-w-two-twelfths {
    min-width: 16.666667%;
  }
  .sm\:min-w-three-twelfths {
    min-width: 25%;
  }
  .sm\:min-w-four-twelfths {
    min-width: 33.333333%;
  }
  .sm\:min-w-five-twelfths {
    min-width: 41.666667%;
  }
  .sm\:min-w-six-twelfths {
    min-width: 50%;
  }
  .sm\:min-w-seven-twelfths {
    min-width: 58.333333%;
  }
  .sm\:min-w-eight-twelfths {
    min-width: 66.666667%;
  }
  .sm\:min-w-nine-twelfths {
    min-width: 75%;
  }
  .sm\:min-w-ten-twelfths {
    min-width: 83.333333%;
  }
  .sm\:min-w-eleven-twelfths {
    min-width: 91.666667%;
  }
}
@media (min-width: 67.5625rem) {
  .md\:w-0 {
    width: 0;
  }
  .md\:w-1 {
    width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:w-2 {
    width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:w-3 {
    width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:w-4 {
    width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:w-5 {
    width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:w-6 {
    width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:w-7 {
    width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:w-8 {
    width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:w-9 {
    width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:w-10 {
    width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:w-50 {
    width: 50%;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:w-screen {
    width: 100vw;
  }
  .md\:w-one-fifth {
    width: 20%;
  }
  .md\:w-two-fifths {
    width: 40%;
  }
  .md\:w-three-fifths {
    width: 60%;
  }
  .md\:w-four-fifths {
    width: 80%;
  }
  .md\:w-one-half {
    width: 50%;
  }
  .md\:w-one-quarter {
    width: 25%;
  }
  .md\:w-three-quarters {
    width: 75%;
  }
  .md\:w-one-sixth {
    width: 16.666667%;
  }
  .md\:w-two-sixths {
    width: 33.333333%;
  }
  .md\:w-three-sixths {
    width: 50%;
  }
  .md\:w-four-sixths {
    width: 66.666667%;
  }
  .md\:w-five-sixths {
    width: 83.333333%;
  }
  .md\:w-one-third {
    width: 33.333333%;
  }
  .md\:w-two-thirds {
    width: 66.666667%;
  }
  .md\:w-one-twelfth {
    width: 8.333333%;
  }
  .md\:w-two-twelfths {
    width: 16.666667%;
  }
  .md\:w-three-twelfths {
    width: 25%;
  }
  .md\:w-four-twelfths {
    width: 33.333333%;
  }
  .md\:w-five-twelfths {
    width: 41.666667%;
  }
  .md\:w-six-twelfths {
    width: 50%;
  }
  .md\:w-seven-twelfths {
    width: 58.333333%;
  }
  .md\:w-eight-twelfths {
    width: 66.666667%;
  }
  .md\:w-nine-twelfths {
    width: 75%;
  }
  .md\:w-ten-twelfths {
    width: 83.333333%;
  }
  .md\:w-eleven-twelfths {
    width: 91.666667%;
  }
  .md\:max-w-0 {
    max-width: 0;
  }
  .md\:max-w-1 {
    max-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:max-w-2 {
    max-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:max-w-3 {
    max-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:max-w-4 {
    max-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:max-w-5 {
    max-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:max-w-6 {
    max-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:max-w-7 {
    max-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:max-w-8 {
    max-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:max-w-9 {
    max-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:max-w-10 {
    max-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:max-w-50 {
    max-width: 50%;
  }
  .md\:max-w-auto {
    max-width: auto;
  }
  .md\:max-w-full {
    max-width: 100%;
  }
  .md\:max-w-screen {
    max-width: 100vw;
  }
  .md\:max-w-one-fifth {
    max-width: 20%;
  }
  .md\:max-w-two-fifths {
    max-width: 40%;
  }
  .md\:max-w-three-fifths {
    max-width: 60%;
  }
  .md\:max-w-four-fifths {
    max-width: 80%;
  }
  .md\:max-w-one-half {
    max-width: 50%;
  }
  .md\:max-w-one-quarter {
    max-width: 25%;
  }
  .md\:max-w-three-quarters {
    max-width: 75%;
  }
  .md\:max-w-one-sixth {
    max-width: 16.666667%;
  }
  .md\:max-w-two-sixths {
    max-width: 33.333333%;
  }
  .md\:max-w-three-sixths {
    max-width: 50%;
  }
  .md\:max-w-four-sixths {
    max-width: 66.666667%;
  }
  .md\:max-w-five-sixths {
    max-width: 83.333333%;
  }
  .md\:max-w-one-third {
    max-width: 33.333333%;
  }
  .md\:max-w-two-thirds {
    max-width: 66.666667%;
  }
  .md\:max-w-one-twelfth {
    max-width: 8.333333%;
  }
  .md\:max-w-two-twelfths {
    max-width: 16.666667%;
  }
  .md\:max-w-three-twelfths {
    max-width: 25%;
  }
  .md\:max-w-four-twelfths {
    max-width: 33.333333%;
  }
  .md\:max-w-five-twelfths {
    max-width: 41.666667%;
  }
  .md\:max-w-six-twelfths {
    max-width: 50%;
  }
  .md\:max-w-seven-twelfths {
    max-width: 58.333333%;
  }
  .md\:max-w-eight-twelfths {
    max-width: 66.666667%;
  }
  .md\:max-w-nine-twelfths {
    max-width: 75%;
  }
  .md\:max-w-ten-twelfths {
    max-width: 83.333333%;
  }
  .md\:max-w-eleven-twelfths {
    max-width: 91.666667%;
  }
  .md\:min-w-0 {
    min-width: 0;
  }
  .md\:min-w-1 {
    min-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:min-w-2 {
    min-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:min-w-3 {
    min-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:min-w-4 {
    min-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:min-w-5 {
    min-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:min-w-6 {
    min-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:min-w-7 {
    min-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:min-w-8 {
    min-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:min-w-9 {
    min-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:min-w-10 {
    min-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:min-w-50 {
    min-width: 50%;
  }
  .md\:min-w-auto {
    min-width: auto;
  }
  .md\:min-w-full {
    min-width: 100%;
  }
  .md\:min-w-screen {
    min-width: 100vw;
  }
  .md\:min-w-one-fifth {
    min-width: 20%;
  }
  .md\:min-w-two-fifths {
    min-width: 40%;
  }
  .md\:min-w-three-fifths {
    min-width: 60%;
  }
  .md\:min-w-four-fifths {
    min-width: 80%;
  }
  .md\:min-w-one-half {
    min-width: 50%;
  }
  .md\:min-w-one-quarter {
    min-width: 25%;
  }
  .md\:min-w-three-quarters {
    min-width: 75%;
  }
  .md\:min-w-one-sixth {
    min-width: 16.666667%;
  }
  .md\:min-w-two-sixths {
    min-width: 33.333333%;
  }
  .md\:min-w-three-sixths {
    min-width: 50%;
  }
  .md\:min-w-four-sixths {
    min-width: 66.666667%;
  }
  .md\:min-w-five-sixths {
    min-width: 83.333333%;
  }
  .md\:min-w-one-third {
    min-width: 33.333333%;
  }
  .md\:min-w-two-thirds {
    min-width: 66.666667%;
  }
  .md\:min-w-one-twelfth {
    min-width: 8.333333%;
  }
  .md\:min-w-two-twelfths {
    min-width: 16.666667%;
  }
  .md\:min-w-three-twelfths {
    min-width: 25%;
  }
  .md\:min-w-four-twelfths {
    min-width: 33.333333%;
  }
  .md\:min-w-five-twelfths {
    min-width: 41.666667%;
  }
  .md\:min-w-six-twelfths {
    min-width: 50%;
  }
  .md\:min-w-seven-twelfths {
    min-width: 58.333333%;
  }
  .md\:min-w-eight-twelfths {
    min-width: 66.666667%;
  }
  .md\:min-w-nine-twelfths {
    min-width: 75%;
  }
  .md\:min-w-ten-twelfths {
    min-width: 83.333333%;
  }
  .md\:min-w-eleven-twelfths {
    min-width: 91.666667%;
  }
}
@media (min-width: 85rem) {
  .lg\:w-0 {
    width: 0;
  }
  .lg\:w-1 {
    width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:w-2 {
    width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:w-3 {
    width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:w-4 {
    width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:w-5 {
    width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:w-6 {
    width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:w-7 {
    width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:w-8 {
    width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:w-9 {
    width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:w-10 {
    width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:w-50 {
    width: 50%;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-screen {
    width: 100vw;
  }
  .lg\:w-one-fifth {
    width: 20%;
  }
  .lg\:w-two-fifths {
    width: 40%;
  }
  .lg\:w-three-fifths {
    width: 60%;
  }
  .lg\:w-four-fifths {
    width: 80%;
  }
  .lg\:w-one-half {
    width: 50%;
  }
  .lg\:w-one-quarter {
    width: 25%;
  }
  .lg\:w-three-quarters {
    width: 75%;
  }
  .lg\:w-one-sixth {
    width: 16.666667%;
  }
  .lg\:w-two-sixths {
    width: 33.333333%;
  }
  .lg\:w-three-sixths {
    width: 50%;
  }
  .lg\:w-four-sixths {
    width: 66.666667%;
  }
  .lg\:w-five-sixths {
    width: 83.333333%;
  }
  .lg\:w-one-third {
    width: 33.333333%;
  }
  .lg\:w-two-thirds {
    width: 66.666667%;
  }
  .lg\:w-one-twelfth {
    width: 8.333333%;
  }
  .lg\:w-two-twelfths {
    width: 16.666667%;
  }
  .lg\:w-three-twelfths {
    width: 25%;
  }
  .lg\:w-four-twelfths {
    width: 33.333333%;
  }
  .lg\:w-five-twelfths {
    width: 41.666667%;
  }
  .lg\:w-six-twelfths {
    width: 50%;
  }
  .lg\:w-seven-twelfths {
    width: 58.333333%;
  }
  .lg\:w-eight-twelfths {
    width: 66.666667%;
  }
  .lg\:w-nine-twelfths {
    width: 75%;
  }
  .lg\:w-ten-twelfths {
    width: 83.333333%;
  }
  .lg\:w-eleven-twelfths {
    width: 91.666667%;
  }
  .lg\:max-w-0 {
    max-width: 0;
  }
  .lg\:max-w-1 {
    max-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:max-w-2 {
    max-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:max-w-3 {
    max-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:max-w-4 {
    max-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:max-w-5 {
    max-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:max-w-6 {
    max-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:max-w-7 {
    max-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:max-w-8 {
    max-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:max-w-9 {
    max-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:max-w-10 {
    max-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:max-w-50 {
    max-width: 50%;
  }
  .lg\:max-w-auto {
    max-width: auto;
  }
  .lg\:max-w-full {
    max-width: 100%;
  }
  .lg\:max-w-screen {
    max-width: 100vw;
  }
  .lg\:max-w-one-fifth {
    max-width: 20%;
  }
  .lg\:max-w-two-fifths {
    max-width: 40%;
  }
  .lg\:max-w-three-fifths {
    max-width: 60%;
  }
  .lg\:max-w-four-fifths {
    max-width: 80%;
  }
  .lg\:max-w-one-half {
    max-width: 50%;
  }
  .lg\:max-w-one-quarter {
    max-width: 25%;
  }
  .lg\:max-w-three-quarters {
    max-width: 75%;
  }
  .lg\:max-w-one-sixth {
    max-width: 16.666667%;
  }
  .lg\:max-w-two-sixths {
    max-width: 33.333333%;
  }
  .lg\:max-w-three-sixths {
    max-width: 50%;
  }
  .lg\:max-w-four-sixths {
    max-width: 66.666667%;
  }
  .lg\:max-w-five-sixths {
    max-width: 83.333333%;
  }
  .lg\:max-w-one-third {
    max-width: 33.333333%;
  }
  .lg\:max-w-two-thirds {
    max-width: 66.666667%;
  }
  .lg\:max-w-one-twelfth {
    max-width: 8.333333%;
  }
  .lg\:max-w-two-twelfths {
    max-width: 16.666667%;
  }
  .lg\:max-w-three-twelfths {
    max-width: 25%;
  }
  .lg\:max-w-four-twelfths {
    max-width: 33.333333%;
  }
  .lg\:max-w-five-twelfths {
    max-width: 41.666667%;
  }
  .lg\:max-w-six-twelfths {
    max-width: 50%;
  }
  .lg\:max-w-seven-twelfths {
    max-width: 58.333333%;
  }
  .lg\:max-w-eight-twelfths {
    max-width: 66.666667%;
  }
  .lg\:max-w-nine-twelfths {
    max-width: 75%;
  }
  .lg\:max-w-ten-twelfths {
    max-width: 83.333333%;
  }
  .lg\:max-w-eleven-twelfths {
    max-width: 91.666667%;
  }
  .lg\:min-w-0 {
    min-width: 0;
  }
  .lg\:min-w-1 {
    min-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:min-w-2 {
    min-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:min-w-3 {
    min-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:min-w-4 {
    min-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:min-w-5 {
    min-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:min-w-6 {
    min-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:min-w-7 {
    min-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:min-w-8 {
    min-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:min-w-9 {
    min-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:min-w-10 {
    min-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:min-w-50 {
    min-width: 50%;
  }
  .lg\:min-w-auto {
    min-width: auto;
  }
  .lg\:min-w-full {
    min-width: 100%;
  }
  .lg\:min-w-screen {
    min-width: 100vw;
  }
  .lg\:min-w-one-fifth {
    min-width: 20%;
  }
  .lg\:min-w-two-fifths {
    min-width: 40%;
  }
  .lg\:min-w-three-fifths {
    min-width: 60%;
  }
  .lg\:min-w-four-fifths {
    min-width: 80%;
  }
  .lg\:min-w-one-half {
    min-width: 50%;
  }
  .lg\:min-w-one-quarter {
    min-width: 25%;
  }
  .lg\:min-w-three-quarters {
    min-width: 75%;
  }
  .lg\:min-w-one-sixth {
    min-width: 16.666667%;
  }
  .lg\:min-w-two-sixths {
    min-width: 33.333333%;
  }
  .lg\:min-w-three-sixths {
    min-width: 50%;
  }
  .lg\:min-w-four-sixths {
    min-width: 66.666667%;
  }
  .lg\:min-w-five-sixths {
    min-width: 83.333333%;
  }
  .lg\:min-w-one-third {
    min-width: 33.333333%;
  }
  .lg\:min-w-two-thirds {
    min-width: 66.666667%;
  }
  .lg\:min-w-one-twelfth {
    min-width: 8.333333%;
  }
  .lg\:min-w-two-twelfths {
    min-width: 16.666667%;
  }
  .lg\:min-w-three-twelfths {
    min-width: 25%;
  }
  .lg\:min-w-four-twelfths {
    min-width: 33.333333%;
  }
  .lg\:min-w-five-twelfths {
    min-width: 41.666667%;
  }
  .lg\:min-w-six-twelfths {
    min-width: 50%;
  }
  .lg\:min-w-seven-twelfths {
    min-width: 58.333333%;
  }
  .lg\:min-w-eight-twelfths {
    min-width: 66.666667%;
  }
  .lg\:min-w-nine-twelfths {
    min-width: 75%;
  }
  .lg\:min-w-ten-twelfths {
    min-width: 83.333333%;
  }
  .lg\:min-w-eleven-twelfths {
    min-width: 91.666667%;
  }
}
@media (min-width: 100rem) {
  .xl\:w-0 {
    width: 0;
  }
  .xl\:w-1 {
    width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:w-2 {
    width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:w-3 {
    width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:w-4 {
    width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:w-5 {
    width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:w-6 {
    width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:w-7 {
    width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:w-8 {
    width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:w-9 {
    width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:w-10 {
    width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:w-50 {
    width: 50%;
  }
  .xl\:w-auto {
    width: auto;
  }
  .xl\:w-full {
    width: 100%;
  }
  .xl\:w-screen {
    width: 100vw;
  }
  .xl\:w-one-fifth {
    width: 20%;
  }
  .xl\:w-two-fifths {
    width: 40%;
  }
  .xl\:w-three-fifths {
    width: 60%;
  }
  .xl\:w-four-fifths {
    width: 80%;
  }
  .xl\:w-one-half {
    width: 50%;
  }
  .xl\:w-one-quarter {
    width: 25%;
  }
  .xl\:w-three-quarters {
    width: 75%;
  }
  .xl\:w-one-sixth {
    width: 16.666667%;
  }
  .xl\:w-two-sixths {
    width: 33.333333%;
  }
  .xl\:w-three-sixths {
    width: 50%;
  }
  .xl\:w-four-sixths {
    width: 66.666667%;
  }
  .xl\:w-five-sixths {
    width: 83.333333%;
  }
  .xl\:w-one-third {
    width: 33.333333%;
  }
  .xl\:w-two-thirds {
    width: 66.666667%;
  }
  .xl\:w-one-twelfth {
    width: 8.333333%;
  }
  .xl\:w-two-twelfths {
    width: 16.666667%;
  }
  .xl\:w-three-twelfths {
    width: 25%;
  }
  .xl\:w-four-twelfths {
    width: 33.333333%;
  }
  .xl\:w-five-twelfths {
    width: 41.666667%;
  }
  .xl\:w-six-twelfths {
    width: 50%;
  }
  .xl\:w-seven-twelfths {
    width: 58.333333%;
  }
  .xl\:w-eight-twelfths {
    width: 66.666667%;
  }
  .xl\:w-nine-twelfths {
    width: 75%;
  }
  .xl\:w-ten-twelfths {
    width: 83.333333%;
  }
  .xl\:w-eleven-twelfths {
    width: 91.666667%;
  }
  .xl\:max-w-0 {
    max-width: 0;
  }
  .xl\:max-w-1 {
    max-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:max-w-2 {
    max-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:max-w-3 {
    max-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:max-w-4 {
    max-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:max-w-5 {
    max-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:max-w-6 {
    max-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:max-w-7 {
    max-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:max-w-8 {
    max-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:max-w-9 {
    max-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:max-w-10 {
    max-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:max-w-50 {
    max-width: 50%;
  }
  .xl\:max-w-auto {
    max-width: auto;
  }
  .xl\:max-w-full {
    max-width: 100%;
  }
  .xl\:max-w-screen {
    max-width: 100vw;
  }
  .xl\:max-w-one-fifth {
    max-width: 20%;
  }
  .xl\:max-w-two-fifths {
    max-width: 40%;
  }
  .xl\:max-w-three-fifths {
    max-width: 60%;
  }
  .xl\:max-w-four-fifths {
    max-width: 80%;
  }
  .xl\:max-w-one-half {
    max-width: 50%;
  }
  .xl\:max-w-one-quarter {
    max-width: 25%;
  }
  .xl\:max-w-three-quarters {
    max-width: 75%;
  }
  .xl\:max-w-one-sixth {
    max-width: 16.666667%;
  }
  .xl\:max-w-two-sixths {
    max-width: 33.333333%;
  }
  .xl\:max-w-three-sixths {
    max-width: 50%;
  }
  .xl\:max-w-four-sixths {
    max-width: 66.666667%;
  }
  .xl\:max-w-five-sixths {
    max-width: 83.333333%;
  }
  .xl\:max-w-one-third {
    max-width: 33.333333%;
  }
  .xl\:max-w-two-thirds {
    max-width: 66.666667%;
  }
  .xl\:max-w-one-twelfth {
    max-width: 8.333333%;
  }
  .xl\:max-w-two-twelfths {
    max-width: 16.666667%;
  }
  .xl\:max-w-three-twelfths {
    max-width: 25%;
  }
  .xl\:max-w-four-twelfths {
    max-width: 33.333333%;
  }
  .xl\:max-w-five-twelfths {
    max-width: 41.666667%;
  }
  .xl\:max-w-six-twelfths {
    max-width: 50%;
  }
  .xl\:max-w-seven-twelfths {
    max-width: 58.333333%;
  }
  .xl\:max-w-eight-twelfths {
    max-width: 66.666667%;
  }
  .xl\:max-w-nine-twelfths {
    max-width: 75%;
  }
  .xl\:max-w-ten-twelfths {
    max-width: 83.333333%;
  }
  .xl\:max-w-eleven-twelfths {
    max-width: 91.666667%;
  }
  .xl\:min-w-0 {
    min-width: 0;
  }
  .xl\:min-w-1 {
    min-width: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:min-w-2 {
    min-width: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:min-w-3 {
    min-width: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:min-w-4 {
    min-width: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:min-w-5 {
    min-width: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:min-w-6 {
    min-width: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:min-w-7 {
    min-width: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:min-w-8 {
    min-width: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:min-w-9 {
    min-width: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:min-w-10 {
    min-width: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:min-w-50 {
    min-width: 50%;
  }
  .xl\:min-w-auto {
    min-width: auto;
  }
  .xl\:min-w-full {
    min-width: 100%;
  }
  .xl\:min-w-screen {
    min-width: 100vw;
  }
  .xl\:min-w-one-fifth {
    min-width: 20%;
  }
  .xl\:min-w-two-fifths {
    min-width: 40%;
  }
  .xl\:min-w-three-fifths {
    min-width: 60%;
  }
  .xl\:min-w-four-fifths {
    min-width: 80%;
  }
  .xl\:min-w-one-half {
    min-width: 50%;
  }
  .xl\:min-w-one-quarter {
    min-width: 25%;
  }
  .xl\:min-w-three-quarters {
    min-width: 75%;
  }
  .xl\:min-w-one-sixth {
    min-width: 16.666667%;
  }
  .xl\:min-w-two-sixths {
    min-width: 33.333333%;
  }
  .xl\:min-w-three-sixths {
    min-width: 50%;
  }
  .xl\:min-w-four-sixths {
    min-width: 66.666667%;
  }
  .xl\:min-w-five-sixths {
    min-width: 83.333333%;
  }
  .xl\:min-w-one-third {
    min-width: 33.333333%;
  }
  .xl\:min-w-two-thirds {
    min-width: 66.666667%;
  }
  .xl\:min-w-one-twelfth {
    min-width: 8.333333%;
  }
  .xl\:min-w-two-twelfths {
    min-width: 16.666667%;
  }
  .xl\:min-w-three-twelfths {
    min-width: 25%;
  }
  .xl\:min-w-four-twelfths {
    min-width: 33.333333%;
  }
  .xl\:min-w-five-twelfths {
    min-width: 41.666667%;
  }
  .xl\:min-w-six-twelfths {
    min-width: 50%;
  }
  .xl\:min-w-seven-twelfths {
    min-width: 58.333333%;
  }
  .xl\:min-w-eight-twelfths {
    min-width: 66.666667%;
  }
  .xl\:min-w-nine-twelfths {
    min-width: 75%;
  }
  .xl\:min-w-ten-twelfths {
    min-width: 83.333333%;
  }
  .xl\:min-w-eleven-twelfths {
    min-width: 91.666667%;
  }
}
.h-0 {
  height: 0;
}

.h-1 {
  height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.h-2 {
  height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.h-3 {
  height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.h-4 {
  height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.h-5 {
  height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.h-6 {
  height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.h-7 {
  height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.h-8 {
  height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.h-9 {
  height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.h-10 {
  height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-0 {
  max-height: 0;
}

.max-h-1 {
  max-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.max-h-2 {
  max-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.max-h-3 {
  max-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.max-h-4 {
  max-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.max-h-5 {
  max-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.max-h-6 {
  max-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.max-h-7 {
  max-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.max-h-8 {
  max-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.max-h-9 {
  max-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.max-h-10 {
  max-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.max-h-25 {
  max-height: 25%;
}

.max-h-50 {
  max-height: 50%;
}

.max-h-75 {
  max-height: 75%;
}

.max-h-auto {
  max-height: auto;
}

.max-h-full {
  max-height: 100%;
}

.max-h-screen {
  max-height: 100vh;
}

.min-h-0 {
  min-height: 0;
}

.min-h-1 {
  min-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
}

.min-h-2 {
  min-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
}

.min-h-3 {
  min-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
}

.min-h-4 {
  min-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
}

.min-h-5 {
  min-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
}

.min-h-6 {
  min-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
}

.min-h-7 {
  min-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
}

.min-h-8 {
  min-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
}

.min-h-9 {
  min-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
}

.min-h-10 {
  min-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
}

.min-h-25 {
  min-height: 25%;
}

.min-h-50 {
  min-height: 50%;
}

.min-h-75 {
  min-height: 75%;
}

.min-h-auto {
  min-height: auto;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

@media (min-width: 50.6875rem) {
  .sm\:h-0 {
    height: 0;
  }
  .sm\:h-1 {
    height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:h-2 {
    height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:h-3 {
    height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:h-4 {
    height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:h-5 {
    height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:h-6 {
    height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:h-7 {
    height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:h-8 {
    height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:h-9 {
    height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:h-10 {
    height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:h-25 {
    height: 25%;
  }
  .sm\:h-50 {
    height: 50%;
  }
  .sm\:h-75 {
    height: 75%;
  }
  .sm\:h-auto {
    height: auto;
  }
  .sm\:h-full {
    height: 100%;
  }
  .sm\:h-screen {
    height: 100vh;
  }
  .sm\:max-h-0 {
    max-height: 0;
  }
  .sm\:max-h-1 {
    max-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:max-h-2 {
    max-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:max-h-3 {
    max-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:max-h-4 {
    max-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:max-h-5 {
    max-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:max-h-6 {
    max-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:max-h-7 {
    max-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:max-h-8 {
    max-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:max-h-9 {
    max-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:max-h-10 {
    max-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:max-h-25 {
    max-height: 25%;
  }
  .sm\:max-h-50 {
    max-height: 50%;
  }
  .sm\:max-h-75 {
    max-height: 75%;
  }
  .sm\:max-h-auto {
    max-height: auto;
  }
  .sm\:max-h-full {
    max-height: 100%;
  }
  .sm\:max-h-screen {
    max-height: 100vh;
  }
  .sm\:min-h-0 {
    min-height: 0;
  }
  .sm\:min-h-1 {
    min-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .sm\:min-h-2 {
    min-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .sm\:min-h-3 {
    min-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .sm\:min-h-4 {
    min-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .sm\:min-h-5 {
    min-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .sm\:min-h-6 {
    min-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .sm\:min-h-7 {
    min-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .sm\:min-h-8 {
    min-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .sm\:min-h-9 {
    min-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .sm\:min-h-10 {
    min-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .sm\:min-h-25 {
    min-height: 25%;
  }
  .sm\:min-h-50 {
    min-height: 50%;
  }
  .sm\:min-h-75 {
    min-height: 75%;
  }
  .sm\:min-h-auto {
    min-height: auto;
  }
  .sm\:min-h-full {
    min-height: 100%;
  }
  .sm\:min-h-screen {
    min-height: 100vh;
  }
}
@media (min-width: 67.5625rem) {
  .md\:h-0 {
    height: 0;
  }
  .md\:h-1 {
    height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:h-2 {
    height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:h-3 {
    height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:h-4 {
    height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:h-5 {
    height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:h-6 {
    height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:h-7 {
    height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:h-8 {
    height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:h-9 {
    height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:h-10 {
    height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:h-25 {
    height: 25%;
  }
  .md\:h-50 {
    height: 50%;
  }
  .md\:h-75 {
    height: 75%;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:h-screen {
    height: 100vh;
  }
  .md\:max-h-0 {
    max-height: 0;
  }
  .md\:max-h-1 {
    max-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:max-h-2 {
    max-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:max-h-3 {
    max-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:max-h-4 {
    max-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:max-h-5 {
    max-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:max-h-6 {
    max-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:max-h-7 {
    max-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:max-h-8 {
    max-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:max-h-9 {
    max-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:max-h-10 {
    max-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:max-h-25 {
    max-height: 25%;
  }
  .md\:max-h-50 {
    max-height: 50%;
  }
  .md\:max-h-75 {
    max-height: 75%;
  }
  .md\:max-h-auto {
    max-height: auto;
  }
  .md\:max-h-full {
    max-height: 100%;
  }
  .md\:max-h-screen {
    max-height: 100vh;
  }
  .md\:min-h-0 {
    min-height: 0;
  }
  .md\:min-h-1 {
    min-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .md\:min-h-2 {
    min-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .md\:min-h-3 {
    min-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .md\:min-h-4 {
    min-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .md\:min-h-5 {
    min-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .md\:min-h-6 {
    min-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .md\:min-h-7 {
    min-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .md\:min-h-8 {
    min-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .md\:min-h-9 {
    min-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .md\:min-h-10 {
    min-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .md\:min-h-25 {
    min-height: 25%;
  }
  .md\:min-h-50 {
    min-height: 50%;
  }
  .md\:min-h-75 {
    min-height: 75%;
  }
  .md\:min-h-auto {
    min-height: auto;
  }
  .md\:min-h-full {
    min-height: 100%;
  }
  .md\:min-h-screen {
    min-height: 100vh;
  }
}
@media (min-width: 85rem) {
  .lg\:h-0 {
    height: 0;
  }
  .lg\:h-1 {
    height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:h-2 {
    height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:h-3 {
    height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:h-4 {
    height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:h-5 {
    height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:h-6 {
    height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:h-7 {
    height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:h-8 {
    height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:h-9 {
    height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:h-10 {
    height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:h-25 {
    height: 25%;
  }
  .lg\:h-50 {
    height: 50%;
  }
  .lg\:h-75 {
    height: 75%;
  }
  .lg\:h-auto {
    height: auto;
  }
  .lg\:h-full {
    height: 100%;
  }
  .lg\:h-screen {
    height: 100vh;
  }
  .lg\:max-h-0 {
    max-height: 0;
  }
  .lg\:max-h-1 {
    max-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:max-h-2 {
    max-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:max-h-3 {
    max-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:max-h-4 {
    max-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:max-h-5 {
    max-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:max-h-6 {
    max-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:max-h-7 {
    max-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:max-h-8 {
    max-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:max-h-9 {
    max-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:max-h-10 {
    max-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:max-h-25 {
    max-height: 25%;
  }
  .lg\:max-h-50 {
    max-height: 50%;
  }
  .lg\:max-h-75 {
    max-height: 75%;
  }
  .lg\:max-h-auto {
    max-height: auto;
  }
  .lg\:max-h-full {
    max-height: 100%;
  }
  .lg\:max-h-screen {
    max-height: 100vh;
  }
  .lg\:min-h-0 {
    min-height: 0;
  }
  .lg\:min-h-1 {
    min-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .lg\:min-h-2 {
    min-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .lg\:min-h-3 {
    min-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .lg\:min-h-4 {
    min-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .lg\:min-h-5 {
    min-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .lg\:min-h-6 {
    min-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .lg\:min-h-7 {
    min-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .lg\:min-h-8 {
    min-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .lg\:min-h-9 {
    min-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .lg\:min-h-10 {
    min-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .lg\:min-h-25 {
    min-height: 25%;
  }
  .lg\:min-h-50 {
    min-height: 50%;
  }
  .lg\:min-h-75 {
    min-height: 75%;
  }
  .lg\:min-h-auto {
    min-height: auto;
  }
  .lg\:min-h-full {
    min-height: 100%;
  }
  .lg\:min-h-screen {
    min-height: 100vh;
  }
}
@media (min-width: 100rem) {
  .xl\:h-0 {
    height: 0;
  }
  .xl\:h-1 {
    height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:h-2 {
    height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:h-3 {
    height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:h-4 {
    height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:h-5 {
    height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:h-6 {
    height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:h-7 {
    height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:h-8 {
    height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:h-9 {
    height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:h-10 {
    height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:h-25 {
    height: 25%;
  }
  .xl\:h-50 {
    height: 50%;
  }
  .xl\:h-75 {
    height: 75%;
  }
  .xl\:h-auto {
    height: auto;
  }
  .xl\:h-full {
    height: 100%;
  }
  .xl\:h-screen {
    height: 100vh;
  }
  .xl\:max-h-0 {
    max-height: 0;
  }
  .xl\:max-h-1 {
    max-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:max-h-2 {
    max-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:max-h-3 {
    max-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:max-h-4 {
    max-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:max-h-5 {
    max-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:max-h-6 {
    max-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:max-h-7 {
    max-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:max-h-8 {
    max-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:max-h-9 {
    max-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:max-h-10 {
    max-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:max-h-25 {
    max-height: 25%;
  }
  .xl\:max-h-50 {
    max-height: 50%;
  }
  .xl\:max-h-75 {
    max-height: 75%;
  }
  .xl\:max-h-auto {
    max-height: auto;
  }
  .xl\:max-h-full {
    max-height: 100%;
  }
  .xl\:max-h-screen {
    max-height: 100vh;
  }
  .xl\:min-h-0 {
    min-height: 0;
  }
  .xl\:min-h-1 {
    min-height: clamp(0.25rem, 0.2308rem + 0.0962vw, 0.3125rem);
  }
  .xl\:min-h-2 {
    min-height: clamp(0.5rem, 0.4615rem + 0.1923vw, 0.625rem);
  }
  .xl\:min-h-3 {
    min-height: clamp(0.9375rem, 0.8413rem + 0.4808vw, 1.25rem);
  }
  .xl\:min-h-4 {
    min-height: clamp(1.4375rem, 1.3029rem + 0.6731vw, 1.875rem);
  }
  .xl\:min-h-5 {
    min-height: clamp(1.875rem, 1.6827rem + 0.9615vw, 2.5rem);
  }
  .xl\:min-h-6 {
    min-height: clamp(2.8125rem, 2.524rem + 1.4423vw, 3.75rem);
  }
  .xl\:min-h-7 {
    min-height: clamp(3.75rem, 3.3654rem + 1.9231vw, 5rem);
  }
  .xl\:min-h-8 {
    min-height: clamp(4.6875rem, 4.2067rem + 2.4038vw, 6.25rem);
  }
  .xl\:min-h-9 {
    min-height: clamp(5.625rem, 5.0481rem + 2.8846vw, 7.5rem);
  }
  .xl\:min-h-10 {
    min-height: clamp(6.5625rem, 5.8894rem + 3.3654vw, 8.75rem);
  }
  .xl\:min-h-25 {
    min-height: 25%;
  }
  .xl\:min-h-50 {
    min-height: 50%;
  }
  .xl\:min-h-75 {
    min-height: 75%;
  }
  .xl\:min-h-auto {
    min-height: auto;
  }
  .xl\:min-h-full {
    min-height: 100%;
  }
  .xl\:min-h-screen {
    min-height: 100vh;
  }
}
.has-1-1-aspect-ratio {
  aspect-ratio: 1/1;
}

.has-7-5-aspect-ratio {
  aspect-ratio: 7/5;
}

.has-5-7-aspect-ratio {
  aspect-ratio: 5/7;
}

.has-5-4-aspect-ratio {
  aspect-ratio: 5/4;
}

.has-4-5-aspect-ratio {
  aspect-ratio: 4/5;
}

.has-4-3-aspect-ratio {
  aspect-ratio: 4/3;
}

.has-3-4-aspect-ratio {
  aspect-ratio: 3/4;
}

.has-3-2-aspect-ratio {
  aspect-ratio: 3/2;
}

.has-2-3-aspect-ratio {
  aspect-ratio: 2/3;
}

.has-16-9-aspect-ratio {
  aspect-ratio: 16/9;
}

.has-9-16-aspect-ratio {
  aspect-ratio: 9/16;
}

.has-16-10-aspect-ratio {
  aspect-ratio: 16/10;
}

.has-10-16-aspect-ratio {
  aspect-ratio: 10/16;
}

.has-21-9-aspect-ratio {
  aspect-ratio: 21/9;
}

.has-9-21-aspect-ratio {
  aspect-ratio: 9/21;
}

.has-2-1-aspect-ratio {
  aspect-ratio: 2/1;
}

.has-1-2-aspect-ratio {
  aspect-ratio: 1/2;
}

@supports not (aspect-ratio: auto) {
  .has-1-1-aspect-ratio {
    padding-top: calc(1 / (1/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-1-1-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-7-5-aspect-ratio {
    padding-top: calc(1 / (7/5) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-7-5-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-5-7-aspect-ratio {
    padding-top: calc(1 / (5/7) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-5-7-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-5-4-aspect-ratio {
    padding-top: calc(1 / (5/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-5-4-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-4-5-aspect-ratio {
    padding-top: calc(1 / (4/5) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-4-5-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-4-3-aspect-ratio {
    padding-top: calc(1 / (4/3) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-4-3-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-3-4-aspect-ratio {
    padding-top: calc(1 / (3/4) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-3-4-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-3-2-aspect-ratio {
    padding-top: calc(1 / (3/2) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-3-2-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-2-3-aspect-ratio {
    padding-top: calc(1 / (2/3) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-2-3-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-16-9-aspect-ratio {
    padding-top: calc(1 / (16/9) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-16-9-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-9-16-aspect-ratio {
    padding-top: calc(1 / (9/16) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-9-16-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-16-10-aspect-ratio {
    padding-top: calc(1 / (16/10) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-16-10-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-10-16-aspect-ratio {
    padding-top: calc(1 / (10/16) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-10-16-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-21-9-aspect-ratio {
    padding-top: calc(1 / (21/9) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-21-9-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-9-21-aspect-ratio {
    padding-top: calc(1 / (9/21) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-9-21-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-2-1-aspect-ratio {
    padding-top: calc(1 / (2/1) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-2-1-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .has-1-2-aspect-ratio {
    padding-top: calc(1 / (1/2) * 100%);
    height: 0;
    position: relative;
    overflow: hidden;
  }
  .has-1-2-aspect-ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}