/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

.hsfc-Step__Content {
  padding: 2.5rem 2rem !important;
}

/* Fields */

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

/* Labels */

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

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

.hsfc-Heading {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* ================================================
   Cerpass Site Header
   ================================================ */




:root {
  --header-green: #5cb844;
  --header-dark-bg: #252F38;
  --header-light-bg: #ffffff;
  --header-border: #333E48;
  --header-top-h: 48px;
  --header-main-h: 96px;
  --header-mobile-h: 80px;
  --header-speed: 0.3s;
  --ease-style: ease-in-out;
}
@property --grad-start {
  syntax: '<color>';
  initial-value: #FFF;
  inherits: false;
}

@property --grad-end {
  syntax: '<color>';
  initial-value: #FFF;
  inherits: false;
}

/* ================================================
   Skip Link (accessibility)
   ================================================ */

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  background: #fff;
  color: #000;
  height: auto;
  left: 0;
  overflow: visible;
  padding: 8px 16px;
  top: 0;
  width: auto;
  z-index: 9999;
}

/* ================================================
   Site Header
   ================================================ */

.site-header {
  background-color: var(--header-dark-bg);
  border-bottom: 1px solid var(--header-border);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: top var(--header-speed) var(--ease-style),
              background-color var(--header-speed) var(--ease-style),
              border-color var(--header-speed) var(--ease-style);
  z-index: 200;
}
  .home .site-header {
    border-bottom: none;
  }


/* Body offset so content doesn't hide behind fixed header */
body {
  padding-top: calc(var(--header-top-h) + var(--header-main-h));
}

@media (max-width: 767px) {
  body {
    padding-top: var(--header-mobile-h);
  }
}

/* ================================================
   Shared Container
   ================================================ */

.header__container {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .header__container {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .header__container {
    padding: 0 20px;
  }
}

/* ================================================
   Top Bar
   ================================================ */

.header__top {
  height: var(--header-top-h);
}

.header__top .header__container {
  height: 100%;
  display: block;
}

/* Top nav — only show desktop variant */
.header__top .menu--desktop {
  display: block;
}

.header__top .menu--mobile {
  display: none !important;
}

.header__top .menu__wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0 -1.5rem 0;
  padding: 0;
}

.header__top .menu__item--depth-1 {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  padding: 0;
}

.header__top .menu__child-toggle,
.header__top .menu__submenu {
  display: none !important;
}


.header__top .menu__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1.5rem 1.5rem 0.5rem;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: --grad-start var(--header-speed) var(--ease-style), --grad-end var(--header-speed) var(--ease-style);
}
  .header__top .menu__link:hover,
  .header__top .menu__link:focus {
    text-decoration: none;
    --grad-start: #41A246;
    --grad-end: #7FBC42;
  }

/* .site-header:not(.site-header--dark) .header__top .menu__link:hover,
.site-header:not(.site-header--dark) .header__top .menu__link:focus {
  color: var(--header-dark-bg);
} */

/* Hide entire top bar on mobile */
@media (max-width: 767px) {
  .header__top {
    display: none;
  }
}

/* ================================================
   Main Header Row
   ================================================ */

.header__main {
  height: var(--header-main-h);
}

.header__main .header__container {
  gap: 24px;
  height: 100%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header__main {
    height: var(--header-mobile-h);
  }
}

/* ================================================
   Logo
   ================================================ */

.header__logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  max-width: 180px;
}

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

/* ================================================
   Primary Navigation — Desktop
   ================================================ */

.header__nav-wrap {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}

/* Show desktop nav, hide mobile nav (on desktop) */
.header__nav-wrap .menu--desktop {
  display: block;
}

.header__nav-wrap .menu--desktop .menu__wrapper {
  align-items: center;
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-wrap .menu__item--depth-1 {
  display: inline-flex;
  align-items: stretch;
  padding: 0;
  position: relative;
  text-transform: none;
}

.header__nav-wrap .menu__item--depth-1 > .menu__link {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  padding: 2.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  transition: color var(--header-speed);
  white-space: nowrap;
}

.header__nav-wrap .menu--desktop .menu__item--depth-1.menu__item--has-submenu > .menu__link {
  padding-right: 0.375rem;
}

.header__nav-wrap .menu--desktop .menu__item--depth-1 > .menu__child-toggle {
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  padding: 2.5rem 1.5rem 2.5rem 0;
}

/* .site-header:not(.site-header--dark) .header__nav-wrap .menu__item--depth-1 > .menu__link {
  color: var(--header-dark-bg);
} */

/* Green underline — active and hover states */
.header__nav-wrap .menu__item--depth-1::after {
  background-color: var(--header-green);
  bottom: -1px;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  transition: transform var(--header-speed) var(--ease-style);
}

.header__nav-wrap .menu__item--depth-1:hover::after,
.header__nav-wrap .menu__item--depth-1.menu__link--active-link::after,
.header__nav-wrap .menu__item--depth-1.menu__link--active-branch::after {
  transform: scaleX(1);
}

/* Submenu dropdown */
.header__nav-wrap .menu__submenu {
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  left: 0;
  min-width: 220px;
  overflow: hidden;
  padding: 1rem 0;
  position: absolute;
  top: 100%;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.header__nav-wrap .menu__item--open > .menu__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.header__nav-wrap .menu__submenu .menu__item {
  border-bottom: none;
  display: block;
  padding: 0;
  width: 100%;
}

.header__nav-wrap .menu__submenu .menu__link {
  color: #494A52;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5rem 2rem;
  transition: color var(--header-speed) var(--ease-style);
  background-color: transparent;
}

.header__nav-wrap .menu__submenu a.menu__link:hover,
.header__nav-wrap .menu__submenu a.menu__link:focus,
.header__nav-wrap .menu__submenu .menu__link--active-link .menu__link {
  color: var(--header-green);
  background-color: transparent;
}

/* Suppress the separate child-toggle button on desktop */
/* .header__nav-wrap .menu--desktop .menu__child-toggle {
  display: none;
} */

/* ================================================
   Header Actions (search + CTA)
   ================================================ */

.header__actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

/* Search icon button */
.header__search-btn {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border: none;
  padding: 0.5rem;
}
.header__search-btn:hover {
  background: transparent;
  border: none;
}
.header__search-btn svg {
  transition: color var(--header-speed) var(--ease-style);
}
.header__search-btn:hover svg {
  color: var(--header-green);
}

/* .site-header:not(.site-header--dark) .header__search-btn {
  color: var(--header-dark-bg);
} */


/* Book A Demo button */
.header__cta-btn {
  background-color: var(--header-green);
  border-radius: 6px;
  color: #ffffff !important;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 11px 22px;
  text-decoration: none !important;
  transition: background-color var(--header-speed), box-shadow var(--header-speed);
  white-space: nowrap;
}

.header__cta-btn:hover {
  background-color: #4ea835;
  box-shadow: 0 4px 12px rgba(92, 184, 68, 0.35);
}

/* ================================================
   Hamburger Button (mobile only)
   ================================================ */

.header__hamburger {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  width: 40px;
}

.header__hamburger-bar {
  background-color: #ffffff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform var(--header-speed) var(--ease-style),
              opacity var(--header-speed) var(--ease-style),
              width var(--header-speed) var(--ease-style);
  width: 24px;
}

/* .site-header:not(.site-header--dark) .header__hamburger-bar {
  background-color: var(--header-dark-bg);
} */

/* Animate to X when open */
.header__hamburger.is-active .header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.header__hamburger.is-active .header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .header__hamburger {
    display: flex;
  }

  /* Hide desktop nav wrapper on mobile (shown in drawer instead) */
  .header__nav-wrap .menu--desktop {
    display: none;
  }

  .header__actions {
    flex-direction: row-reverse;
  }
  /* Hide desktop CTA on mobile */
  .header__actions .header__cta-btn {
    display: none;
  }
  .header__nav-wrap .menu__item--depth-1::after {
    display: none;
  }
}

/* ================================================
   Search Bar (slide-down panel)
   ================================================ */

.header__search-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--header-speed) var(--ease-style);
  background-color: var(--header-dark-bg);
  position: relative;
  z-index: 9999;  
}
.home .header__search-bar {
  border-top: none;
}

/* .site-header:not(.site-header--dark) .header__search-bar {
  border-top-color: #e8ecf0;
} */

.header__search-bar.is-open {
  max-height: 80px;
  overflow: inherit;
}

.header__search-bar .header__container {
  gap: 16px;
  padding-bottom: 14px;
  padding-top: 14px;
}

#hs_cos_wrapper_site_search {
  width: 100%;
}


.header__search-bar .hs-search-field__form {
  background: transparent;
}

.header__search-bar .hs-search-field {
  flex: 1;
}

.header__search-bar .hs-search-field__input {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  padding: 0 16px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px 0 0 8px !important;
  border-right: none !important;
}

.header__search-bar .hs-search-field__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.header__search-bar .hs-search-field__label {
  display: none;
}

.header__search-bar .hs-search-field__button {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 0 8px 8px 0 !important;
  border-left: none !important;
}

.header__search-bar .hs-search-field__button svg {
  display: none;
}

.header__search-bar .hs-search-field__button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C%2Fsvg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
}

.header__search-close {
  align-items: center;
  background: none;
  border: none;
  color: var(--header-light-bg);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 8px;
  transition: color var(--header-speed);
}

.header__search-close:hover {
  color: var(--header-light-bg);
}

.hs-search-field--open .hs-search-field__suggestions {
  padding: 1rem;
}

/* ================================================
   Mobile Nav Drawer (.menu--mobile slide-in)
   ================================================ */

@media (max-width: 992px) {
  /* The .menu--mobile nav slides in as a drawer starting below the fixed header.
     On tablet (768–992px) the full header is 144px tall; on phone it's 80px — see
     the @media (max-width: 767px) override below. */
  .header__nav-wrap .menu--mobile {
    background-color: #ffffff;
    bottom: 0;
    display: block;
    left: 0;
    overflow-y: auto;
    /* padding-bottom is overridden inline by JS (syncMobileCtaOffset in main.js)
       to match the actual height of .header__mobile-cta-wrap, which floats
       fixed on top of this drawer — this value is just a no-JS fallback. */
    padding: 26px 0 185px;
    position: fixed;
    right: 0;
    top: calc(var(--header-top-h) + var(--header-main-h));
    transform: translateX(-100%);
    transition: transform var(--header-speed) var(--ease-style);
    width: 100%;
    z-index: 190;
  }

  .site-header--dark .header__nav-wrap .menu--mobile {
    background-color: var(--header-dark-bg);
  }

  .header__nav-wrap.nav-is-open .menu--mobile {
    transform: translateX(0);
  }

  /* Nav items */
  .header__nav-wrap .menu--mobile .menu__wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav-wrap .menu--mobile .menu__item--depth-1 {
    display: block;
    padding: 0;
    text-transform: none;
    width: 100%;
  }

  /* .site-header--dark .header__nav-wrap .menu--mobile .menu__item--depth-1 {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  } */

  .header__nav-wrap .menu--mobile .menu__link {
    color: #FFF;
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 14px 32px;
    width: 100%;
    text-decoration: none;
    transition: color var(--header-speed) var(--ease-style);
    letter-spacing: -0.36px;
  }

  .header__nav-wrap .menu--mobile .menu__link:hover,
  .header__nav-wrap .menu--mobile .menu__link--active-link .menu__link,
  .header__nav-wrap .menu--mobile .menu__link--active-branch .menu__link {
    color: var(--header-green);
  }

  /* Submenu on mobile */
  .header__nav-wrap .menu--mobile .menu__submenu {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    display: none;
    padding: 0 0 0 24px;
    position: static;
    width: 100%;
  }

  .header__nav-wrap .menu--mobile .menu__item--open > .menu__submenu {
    display: block;
  }

  .header__nav-wrap .menu--mobile .menu__submenu .menu__link {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    padding: 10px 24px;
  }

  /* Child toggle button (accordion for submenus on mobile) */
  .header__nav-wrap .menu--mobile .menu__child-toggle {
    border: none;
    background: none;
    cursor: pointer;
    height: 46px;
    padding: 0 32px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }

  .header__nav-wrap .menu--mobile .menu__child-toggle-icon {
    display: block;
    height: auto;
    margin: 0 auto;
    transition: transform var(--header-speed) var(--ease-style);
    width: 10px;
  }

  .header__nav-wrap .menu--mobile .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(180deg);
    transition: transform var(--header-speed) var(--ease-style);
  }

  /* Submenu items from module.css have background-color:#fff — override on dark theme */
  .site-header--dark .header__nav-wrap .menu--mobile .menu__submenu .menu__item {
    background-color: transparent;
    border: none;
  }
}

/* Phone: top bar is hidden so header is only 80px tall */
@media (max-width: 767px) {
  .header__nav-wrap .menu--mobile {
    top: var(--header-mobile-h);
  }
}

/* ================================================
   Mobile CTA (inside nav drawer)
   ================================================ */

.header__mobile-cta-wrap {
  display: none;
}

.social-links__icon {
  transition: background-color var(--header-speed) var(--ease-style);
}

@media (max-width: 992px) {
  /* Positioned at bottom of the fixed drawer, slides in with it */
  .header__mobile-cta-wrap {
    background-color: #ffffff;
    bottom: 0;
    display: block;
    left: 0;
    padding: 32px;
    position: fixed;
    right: 0;
    transform: translateX(-100%);
    transition: transform var(--header-speed) var(--ease-style);
    z-index: 191;
  }
  .header__mobile-cta-wrap .button {
    width: 100%;
  }

  .site-header--dark .header__mobile-cta-wrap {
    background-color: var(--header-dark-bg);
  }

  .header__nav-wrap.nav-is-open .header__mobile-cta-wrap {
    transform: translateX(0);
  }

  .header__mobile-cta-wrap .header__cta-btn {
    display: block;
    text-align: center;
  }

  /* Social icons row below CTA button */
  .header__mobile-cta-wrap .social-links {
    margin-top: 28px;
  }
  /* .header__mobile-cta-wrap .social-links {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .header__mobile-cta-wrap .social-links__link {
    margin-right: 0;
    text-decoration: none;
  }

  .header__mobile-cta-wrap .social-links__icon {
    align-items: center;
    background-color: var(--header-green);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: background-color var(--header-speed);
  }

  .header__mobile-cta-wrap .social-links__icon:hover {
    background-color: #4ea835;
  }

  .header__mobile-cta-wrap .social-links__icon svg {
    fill: #ffffff;
    height: 16px;
    width: 16px;
  } */
}

/* ================================================
   Overlay (behind mobile nav)
   ================================================ */

.header__overlay {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity var(--header-speed) var(--ease-style);
  z-index: 185;
}

.header__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ================================================
   Responsive tweaks
   ================================================ */

/*@media (max-width: 1100px) {
  .header__nav-wrap .menu__item--depth-1 > .menu__link {
    font-size: 18px;
    padding: 14px 32px;
  }

  .header__nav-wrap .menu__item--depth-1 > .menu__link::after {
    left: 12px;
    right: 12px;
  }
}*/

@media (max-width: 560px) {
  .header__actions #hs_cos_wrapper_header-cta {
    display: none;
  }
}
/* ================================================
   Cerpass Site Footer
   ================================================ */

:root {
  --footer-bg: #2A3642;
  --footer-text: rgba(255, 255, 255, 0.8);
  --footer-text-muted: rgba(255, 255, 255, 0.55);
  --footer-link: #ffffff;
  --footer-link-hover: #5cb844;
  --footer-title: #EEF6E8;
  --footer-green: #5cb844;
  --footer-green-dark: #2D9A47;
  --footer-speed: 0.3s;
  --ease-style: ease-in-out;
}

/* ================================================
   Outer shell
   ================================================ */

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ================================================
   Inner wrapper + main footer body
   ================================================ */

.footer__main {
  border-top: 4px solid #41A246;
  position: relative;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  overflow: hidden;
  position: relative;
}



/* ================================================
   Main container
   ================================================ */

.footer__container {
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
  width: 100%;
}
  .footer__main .footer__container {
    gap: 4rem;
  }
.footer__container--left,
.footer__container--right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  z-index: 2;
}

@media (max-width: 1024px) {
  .footer__main {
    gap: 3.5rem 0;
  }
  .footer__main .footer__container {
    flex-direction: column;
  }
  .footer__container--left,
  .footer__container--right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__main {
    gap: 2rem 0;
  }
}

/* ================================================
   Left panel
   ================================================ */

.footer__left {
  /* Decorative background PNG — add once image is supplied */
  /* background-image: url('path/to/footer-bg-graphic.png'); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 60px;
  width: 50%;
}

@media (max-width: 1024px) {
  .footer__left {
    padding-right: 40px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer__left {
    padding-right: 0;
    width: 100%;
    margin-bottom: 48px;
  }
}

/* ================================================
   Brand images row
   ================================================ */

.footer__brand {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
  .footer__brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    /* transform: translate(-50%, -50%); */
    width: 1400px;
    height: 1400px;
    background-image: url('https://24330982.fs1.hubspotusercontent-ap1.net/hubfs/24330982/raw_assets/public/cerpass2026/images/bg-graphic-dark-full.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    animation: footerGraphicOrbit 10s ease-in-out infinite,
             footerGraphicBreathe 9s ease-in-out infinite;
  }

/* --mouse-tx/--mouse-ty are set by a small rAF loop in footer-content.module
   (mouse-follow, fine-pointer devices only) and added into every step below
   via calc() — the orbit's own wobble keeps running unchanged as the
   fallback for touch devices and prefers-reduced-motion, where the mouse
   properties simply stay at their 0% default. */
@keyframes footerGraphicOrbit {
  0%    { transform: translate(calc(-50% + 0.25% + var(--mouse-tx, 0%)),   calc(-50% + var(--mouse-ty, 0%))); }
  12.5% { transform: translate(calc(-50% + 0.177% + var(--mouse-tx, 0%)), calc(-50% + 0.177% + var(--mouse-ty, 0%))); }
  25%   { transform: translate(calc(-50% + var(--mouse-tx, 0%)),          calc(-50% + 0.25% + var(--mouse-ty, 0%))); }
  37.5% { transform: translate(calc(-50% - 0.177% + var(--mouse-tx, 0%)), calc(-50% + 0.177% + var(--mouse-ty, 0%))); }
  50%   { transform: translate(calc(-50% - 0.25% + var(--mouse-tx, 0%)),   calc(-50% + var(--mouse-ty, 0%))); }
  62.5% { transform: translate(calc(-50% - 0.177% + var(--mouse-tx, 0%)), calc(-50% - 0.177% + var(--mouse-ty, 0%))); }
  75%   { transform: translate(calc(-50% + var(--mouse-tx, 0%)),          calc(-50% - 0.25% + var(--mouse-ty, 0%))); }
  87.5% { transform: translate(calc(-50% + 0.177% + var(--mouse-tx, 0%)), calc(-50% - 0.177% + var(--mouse-ty, 0%))); }
  100%  { transform: translate(calc(-50% + 0.25% + var(--mouse-tx, 0%)),   calc(-50% + var(--mouse-ty, 0%))); }
}

@media (prefers-reduced-motion: reduce) {
  .footer__brand::before { animation: none; }
}

@keyframes footerGraphicBreathe {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .footer__top::before { animation: none; }
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
}
.footer__brand-link,
.footer__brand-img {
  position: relative;
  z-index: 1;
}

/* .footer__brand-img {
  display: block;
  height: auto;
  max-height: 52px;
  max-width: 180px;
  object-fit: contain;
} */


/* ================================================
   Footer navigation (2-column)
   ================================================ */

.footer__nav {
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: max-content;
}

.footer__nav-item {
  break-inside: avoid;
  display: block;
  max-width: max-content;
}

.footer__nav-link {
  color: var(--footer-link);
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  padding: 10px 0;
  text-decoration: none;
  transition: color var(--footer-speed) var(--ease-style);
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  color: var(--footer-link-hover);
  text-decoration: none;
  font-weight: 500;
}

.footer__nav-link--active {
  color: var(--footer-green);
}

/* ================================================
   Right panel
   ================================================ */

.footer__right {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 60px;
  width: 50%;
}

@media (max-width: 1024px) {
  .footer__right {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .footer__right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 40px;
    width: 100%;
  }
}

/* ================================================
   Office locations
   ================================================ */

.footer__offices {
  display: grid;
  gap: 24px 40px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .footer__offices {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}

.footer__offices-primary,
.footer__offices-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__office {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.footer__office-title {
  color: var(--footer-title);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer__office-detail {
  align-items: flex-start;
  color: var(--footer-text);
  display: flex;
  font-size: 14px;
  gap: 12px;
  margin: 0 0 16px;
}
  .footer__office-detail--icon {
    flex: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__office-detail--email {
    margin-top: auto;
  }

.footer__office-detail:last-child {
  margin-bottom: 0;
}

.footer__office-icon {
  flex-shrink: 0;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

/* Placeholder style — shown until SVG assets are supplied */
.footer__office-icon--placeholder {
  background-color: rgba(92, 184, 68, 0.3);
  border-radius: 50%;
}

.footer__office-link {
  color: var(--footer-link);
  text-decoration: none;
  transition: color var(--footer-speed);
}

.footer__office-link:hover,
.footer__office-link:focus {
  color: var(--footer-link-hover);
}

/* ================================================
   Bottom row: partner logos + copyright
   ================================================ */

.footer__bottom {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Partner logos ── */

.footer__partners {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-end;
}

.footer__partner-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity var(--footer-speed);
}

.footer__partner-link:hover,
.footer__partner-link:focus {
  opacity: 1;
}

.footer__partner-img {
  display: block;
  height: auto;
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
}

/* ── Copyright ── */

.footer__copyright {
  color: var(--footer-text-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: right;
}

.footer__copyright p {
  margin: 0;
}

.footer__copyright a {
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color var(--footer-speed);
}

.footer__copyright a:hover,
.footer__copyright a:focus {
  color: var(--footer-link-hover);
}

@media (max-width: 1024px) {
  .footer__partners {
    justify-content: flex-start;
  }
  .footer__copyright {
    text-align: left;
  }
}

/* ================================================
   Back to top button
   ================================================ */

.footer__back-to-top {
  cursor: pointer;
  border-radius: 100%;
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 40px;
  top: 32px;
  transition: background-color var(--footer-speed) var(--ease-style);
  background-color: var(--footer-green-dark);
  z-index: 5;
}

.footer__back-to-top:hover,
.footer__back-to-top:focus {
  background-color: var(--footer-green);
}

.footer__back-to-top svg {
  display: block;
}

@media (max-width: 1024px) {
  .footer__back-to-top {
    right: 24px;
  }
}

@media (max-width: 767px) {
  .footer__back-to-top {
    right: 20px;
    top: 20px;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* ==========================================================================
   Article Card
   Shared card + grid used by the blog archive grid (blog-post-archive.module),
   the blog post related-articles section (templates/blog-post.html), and the
   search results grid (search-results-grid.module).
   ========================================================================== */

.blog-archive__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-archive__meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #2d9a47;
  margin: 0;
}

.blog-archive__card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #252f38;
  margin: 0;
}

.blog-archive__summary {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #4a5565;
  margin: 0;

  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-archive__card:hover .button-simple {
  color: #41A246;
}

.blog-archive__card:hover .button-simple::after {
  transform: translateX(4px);
  background-color: #41A246;
}

.blog-archive__card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.blog-archive__card:hover {
  text-decoration: none;
  border-color: #2D9A47;
  box-shadow: 0 4px 16px rgba(45, 154, 71, 0.12);
  transform: translateY(-4px);
}

.blog-archive__card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.blog-archive__card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-in-out;
}
.blog-archive__card:hover .blog-archive__card-image img {
  transform: scale(1.06);
}

/* Video play badge — bottom-left corner of the card image */
.blog-archive__play-badge {
  position: absolute;
  bottom: 13px;
  left: 17px;
  line-height: 0;
}

.blog-archive__card-content {
  flex: 1;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* ---- Grid ---- */

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---- Load More ---- */

.blog-archive__footer {
  text-align: center;
  margin: 0 auto;
}

.blog-archive__load-more {
  border: none;
}

/* ---- Responsive: tablet (2-col grid) ---- */

@media (max-width: 1024px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Responsive: mobile ---- */

@media (max-width: 767px) {
  .blog-archive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

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

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

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

/* Scroll reveal — repeating content blocks (tiles, cards, testimonials,
   process steps, before/after columns) fade/slide in as they enter the
   viewport, watched by main.js.

   The hidden state is gated behind html.js-ready (added by a synchronous
   inline script in base.html's <head>, before first paint) rather than a
   class main.js adds after the fact — main.js runs at the bottom of the
   page, so hiding elements only once it runs would flash them
   visible-then-hidden-then-visible on every load. With the gate in <head>,
   elements are already hidden on the very first frame, and if JS is
   disabled entirely the html.js-ready class never appears, so content
   just shows normally (no permanently-invisible fallback needed). */

html.js-ready .feature-tile,
html.js-ready .process-steps__item,
html.js-ready .testimonial,
html.js-ready .blog-archive__card,
html.js-ready .blog-archive__featured-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Split from the shared rule above so box-shadow can be added to the
   transition list — this selector's specificity otherwise beats
   before-after.module's own `transition` shorthand and silently drops
   box-shadow from it, so its hover shadow pops in instead of fading. */
html.js-ready .before-after__col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-in-out;
}

html.js-ready .feature-tile.is-visible,
html.js-ready .process-steps__item.is-visible,
html.js-ready .before-after__col.is-visible,
html.js-ready .testimonial.is-visible,
html.js-ready .blog-archive__card.is-visible,
html.js-ready .blog-archive__featured-card.is-visible,
/* Slick's infinite-loop clones are separate DOM nodes from the slide
   they duplicate, so main.js deliberately never observes them (see
   collectRevealEls) to avoid double-triggering the same content. That
   means a clone never gets .is-visible from the observer — show it
   immediately instead, since by the time a clone is on screen it's
   mid-loop infrastructure, not new content scrolling into view. */
html.js-ready .slick-cloned .feature-tile,
html.js-ready .slick-cloned .testimonial {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js-ready .feature-tile,
  html.js-ready .process-steps__item,
  html.js-ready .before-after__col,
  html.js-ready .testimonial,
  html.js-ready .blog-archive__card,
  html.js-ready .blog-archive__featured-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}