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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--color-nickel-50);
  color: rgba(0, 0, 0, 0.87);
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wp-site-blocks {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

a.btn,
a.btn:visited,
a.btn:hover,
a.btn:focus-visible {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgba(0, 0, 0, 0.87);
  font-family: var(--wp--preset--font-family--heading);
  margin-top: 0;
}


h1 {
  font-size: clamp(2rem, 1.542rem + 2.292vw, 3.375rem);
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.625rem, 1.370rem + 1.276vw, 2.391rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.375rem, 1.271rem + 0.521vw, 1.6875rem);
  font-weight: 500;
  line-height: 1.2;
}

.heading-accent {
  --heading-accent-color: var(--color-primary);
  position: relative;
}

.heading-accent::after {
  content: "";
  position: absolute;
  background: var(--heading-accent-color);
  border-radius: 4px;
}

.heading-accent--left {
  padding-left: 16px;
}

.heading-accent--left::after {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.heading-accent--center {
  display: inline-block;
}

.heading-accent--center::after {
  left: 50%;
  bottom: -12px;
  width: 96px;
  height: 4px;
  transform: translateX(-50%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

p,
ul,
ol,
li,
blockquote,
figcaption,
table,
label {
  font-size: inherit;
  line-height: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 1.5em;
}

li + li {
  margin-top: 4px;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

:root {
  --layout-content-max: 1280px;
  --layout-wide-max: 1680px;
  --layout-narrow-max: 960px;
  --layout-content-gutters: 32px;
  --layout-wide-gutters: 32px;
}

.container,
.layout-content,
.layout-narrow,
.layout-wide,
.wp-block-group.container,
.wp-block-group.layout-content,
.wp-block-group.layout-narrow,
.wp-block-group.layout-wide {
  margin-left: auto;
  margin-right: auto;
}

.container,
.layout-content,
.wp-block-group.container,
.wp-block-group.layout-content {
  width: min(100% - var(--layout-content-gutters), var(--layout-content-max));
}

.layout-narrow,
.wp-block-group.layout-narrow {
  width: min(100% - var(--layout-content-gutters), var(--layout-narrow-max));
}

.layout-wide,
.wp-block-group.layout-wide {
  width: min(100% - var(--layout-wide-gutters), var(--layout-wide-max));
}

.wp-block-group.container > .wp-block-group__inner-container,
.wp-block-group.layout-content > .wp-block-group__inner-container {
  width: min(100% - var(--layout-content-gutters), var(--layout-content-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.layout-narrow > .wp-block-group__inner-container {
  width: min(100% - var(--layout-content-gutters), var(--layout-narrow-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.layout-wide > .wp-block-group__inner-container {
  width: min(100% - var(--layout-wide-gutters), var(--layout-wide-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.wp-site-blocks,
.wp-block-group.section > .wp-block-group__inner-container {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 30em) {
  :root {
    --layout-content-gutters: 48px;
    --layout-wide-gutters: 48px;
  }
}

@media (min-width: 60em) {
  :root {
    --layout-content-gutters: 64px;
    --layout-wide-gutters: 64px;
  }
}

@media (min-width: 79em) {
  :root {
    --layout-content-gutters: 80px;
    --layout-wide-gutters: 80px;
  }
}

@media (min-width: 83em) {
  :root {
    --layout-content-gutters: 0px;
    --layout-wide-gutters: 48px;
  }
}

@media (min-width: 108em) {
  :root {
    --layout-wide-gutters: 0px;
  }
}

.btn,
.wp-element-button,
.wp-block-button__link,
a.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.60714px;
  border: 2px solid var(--color-cta);
  border-radius: var(--radius-button, 2px);
  background-color: var(--color-cta);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  text-decoration: none;
}

.btn:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
  text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 16px;
  font: inherit;
  border: 1px solid var(--color-nickel-200);
  border-radius: 4px;
  background-color: #fff;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(35, 49, 155, 0.1);
  outline: none;
}

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 64px;
  background: transparent;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.header--scrolled {
  background: #fff;
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.25), 0 4px 8px -4px rgba(0, 0, 0, 0.3);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo-link {
  --brand-logo-color: #fff;
  display: flex;
  align-items: center;
  height: 64px;
  padding-left: 16px;
  text-decoration: none;
}

.header__logo-link .cw-header__logo {
  display: block;
  width: 163.094px;
  height: 40px;
}

.header__logo-text {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.header__logo-text a {
  color: inherit;
  text-decoration: none;
}

.header--scrolled .header__logo-link,
.header:not(.header--transparent) .header__logo-link {
  --brand-logo-color: var(--color-primary);
}

.header--scrolled .header__logo-text,
.header--scrolled .header__logo-text a {
  color: var(--color-primary);
}

.header__nav,
.header__nav-link,
.header__nav .wp-block-navigation-item__content {
  display: none;
}

.header__actions {
  display: grid;
  align-self: stretch;
  align-items: center;
  width: 80px;
  height: 64px;
  padding: 8px 16px;
  background: #fff;
}

.header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--color-primary);
  border: 0;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  transition:
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 600px);
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition:
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    rgba(0, 0, 0, 0.2) 0px 8px 10px -5px,
    rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
    rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 205;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.mobile-nav--open + .mobile-nav__overlay,
.mobile-nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 68px;
  flex-shrink: 0;
  padding-left: 0;
}

.mobile-nav__logo-link {
  --brand-logo-color: var(--color-primary);
  display: flex;
  align-items: center;
  height: 68px;
  text-decoration: none;
}

.mobile-nav__logo-link .cw-header__logo {
  display: block;
  width: 163.094px;
  height: 40px;
  margin-left: 16px;
}

.mobile-nav__logo-text {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.mobile-nav__close {
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.54);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.2s;
}

.mobile-nav__close:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mobile-nav__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.mobile-nav__list {
  display: block;
  overflow-y: auto;
  flex: 1;
  color: rgba(0, 0, 0, 0.87);
}

.mobile-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  min-height: 48px;
  padding: 0 16px 0 56px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.40625rem;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.28125px;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  z-index: 1;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wp-block-post-title,
.wp-block-query-title,
.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3 {
  color: rgba(0, 0, 0, 0.87);
  font-family: var(--wp--preset--font-family--heading);
}

.wp-block-post-title,
.wp-block-query-title,
.wp-block-post-content h1 {
  font-size: clamp(2rem, 1.542rem + 2.292vw, 3.375rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

.wp-block-post-content h2 {
  font-size: clamp(1.625rem, 1.370rem + 1.276vw, 2.391rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

.wp-block-post-content h3 {
  font-size: clamp(1.375rem, 1.271rem + 0.521vw, 1.6875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
}

.wp-block-post-content p,
.wp-block-post-content li {
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.87);
}

.wp-block-post-content a:not(.wp-block-button__link) {
  color: var(--color-link);
}

.wp-block-post-content a.btn,
.wp-block-post-content a.btn:visited,
.wp-block-post-content a.btn:hover,
.wp-block-post-content a.btn:focus-visible {
  color: #fff;
  text-decoration: none;
}

.wp-block-post-content strong {
  font-weight: 700;
}

.mobile-nav__link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 273L88.37 409a23.78 23.78 0 0 1-33.8 0L32 386.36a23.94 23.94 0 0 1 0-33.89l96.13-96.37L32 159.73a23.94 23.94 0 0 1 0-33.89l22.44-22.79a23.78 23.78 0 0 1 33.8 0L223.88 239a23.94 23.94 0 0 1 .1 34zM415.89 273L280.34 409a23.77 23.77 0 0 1-33.79 0L224 386.26a23.94 23.94 0 0 1 0-33.89L320.11 256l-96-96.47a23.94 23.94 0 0 1 0-33.89l22.52-22.59a23.77 23.77 0 0 1 33.79 0L416 239a24 24 0 0 1-.11 34z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 273L88.37 409a23.78 23.78 0 0 1-33.8 0L32 386.36a23.94 23.94 0 0 1 0-33.89l96.13-96.37L32 159.73a23.94 23.94 0 0 1 0-33.89l22.44-22.79a23.78 23.78 0 0 1 33.8 0L223.88 239a23.94 23.94 0 0 1 .1 34zM415.89 273L280.34 409a23.77 23.77 0 0 1-33.79 0L224 386.26a23.94 23.94 0 0 1 0-33.89L320.11 256l-96-96.47a23.94 23.94 0 0 1 0-33.89l22.52-22.59a23.77 23.77 0 0 1 33.79 0L416 239a24 24 0 0 1-.11 34z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.mobile-nav__link:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}

.mobile-nav__link--active,
.current-menu-item .mobile-nav__link {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--color-primary);
}


.wp-block-saldo-hero-calculator {
  margin-top: 0;
}

.section {
  padding: 104px 0;
}

.section--light {
  background: var(--color-nickel-50);
}

.section--white {
  background: #fff;
}

.section--dark {
  background: var(--color-dark);
  color: #fff;
}

.section--dark :where(h1, h2, h3, h4, h5, h6) {
  color: #fff;
}

.section--dark a:not(.btn) {
  color: var(--color-accent-light, #fff);
}

.landing-page-content {
  background: var(--color-nickel-50);
}

/* Hero sits flush behind the transparent header; cancel the root block-gap
   that would otherwise collapse up through the empty header template-part
   and appear as a dead strip above the header. */
.wp-site-blocks > main.landing-page-content {
  margin-block-start: 0;
}

.landing-page-content > .wp-block-post-content {
  background: inherit;
}

/* Non-custom section patterns (wp-block-group.section) inherit the landing
   page's tinted background so they don't double up. The saldo/section block
   is excluded so its Background dropdown actually takes effect. */
.landing-page-content .section--light:not(.wp-block-saldo-section),
.landing-page-content .section--white:not(.wp-block-saldo-section) {
  background: transparent;
}

.section--transparent {
  background: transparent;
}

.jumbo {
  max-width: var(--layout-narrow-max);
  margin: 0 auto;
}

.jumbo--accent-center {
  text-align: center;
}

.jumbo--accent-center .jumbo__title {
  margin-bottom: 28px;
}

.jumbo .wp-block-heading {
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 1.14;
  margin-top: 0;
  margin-bottom: 16px;
}

.jumbo p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

.jumbo--production .wp-block-heading,
.jumbo--homepage-intro .wp-block-heading {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.6px;
}

.section--benefits .jumbo--production .wp-block-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}

.section--benefits .jumbo--production {
  text-align: center;
}

.section--benefits .jumbo--production .wp-block-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 92px;
  height: 4px;
  transform: translateX(-50%);
  background: #3c3eb2;
}

.section--homepage-intro {
  background: transparent;
}

.section--homepage-intro .wp-block-group__inner-container {
  width: 100%;
  max-width: none;
}

.jumbo--homepage-intro {
  max-width: 980px;
}

.jumbo--homepage-intro .wp-block-heading {
  font-size: clamp(2.1rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.26px;
}

.jumbo--homepage-intro p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.54);
}

.jumbo--homepage-intro a {
  color: var(--color-primary);
}

.benefits-row {
  gap: 28px;
  align-items: flex-start;
  margin-top: 48px;
}

.benefit {
  text-align: center;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 0 0 18px;
}

.benefit__icon svg,
.benefit__icon img {
  width: 40px;
  height: 40px;
}

.benefit__icon .fa-secondary {
  fill: var(--color-primary);
  opacity: 0.4;
}

.benefit__icon .fa-primary {
  fill: var(--color-primary);
  opacity: 1;
}

.benefit h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.6875rem);
  font-weight: 500;
  line-height: 1.33;
  margin: 0 0 10px;
}

.benefit p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.62);
}

.two-column {
  gap: 48px;
}

.text-content {
  max-width: var(--layout-narrow-max);
  margin: 0 auto;
}

.text-content h2 {
  position: relative;
  padding-left: 18px;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.28px;
  margin-top: 0;
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.87);
}

.text-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.15em;
  background: var(--color-primary);
}

.text-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.54);
}

.product-copy-grid {
  width: 100%;
}

.product-copy-grid__heading {
  position: relative;
  margin: 0 0 32px;
  padding-left: 18px;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.28px;
  color: rgba(0, 0, 0, 0.87);
}

.product-copy-grid__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.15em;
  background: var(--color-primary);
}

.product-copy-grid__columns {
  gap: 40px;
}

.product-copy-grid__columns .wp-block-column {
  min-width: 0;
}

.product-copy-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.62);
}

.product-copy-grid p + p {
  margin-top: 20px;
}

.product-copy-grid a {
  color: var(--color-primary);
}

.product-copy-grid--single {
  max-width: 1080px;
}

@media (max-width: 781px) {
  .product-copy-grid__columns {
    gap: 24px;
  }
}

.wp-block-saldo-faq-accordion.homepage-faq {
  padding-top: 72px !important;
  padding-bottom: 80px !important;
}

.wp-block-saldo-faq-accordion.homepage-faq .container {
  width: min(100% - var(--layout-content-gutters), var(--layout-content-max));
}

.wp-block-saldo-faq-accordion.homepage-faq .faq {
  gap: 64px;
}

.wp-block-saldo-faq-accordion.homepage-faq .faq__title,
.wp-block-saldo-faq-accordion.homepage-faq .faq__panel-title,
.wp-block-saldo-faq-accordion.homepage-faq .faq__header .faq__title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.28px;
  margin-top: 0;
}

.wp-block-saldo-faq-accordion.homepage-faq .faq__intro {
  max-width: 420px;
  color: rgba(0, 0, 0, 0.54);
}

.wp-block-saldo-faq-accordion.homepage-faq .faq__items-card {
  border-radius: 0;
  background: #fff;
  box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.25),
    0 9px 18px -9px rgba(0, 0, 0, 0.3),
    0 -6px 18px -4px rgba(0, 0, 0, 0.024);
  padding-top: 32px;
}

.wp-block-saldo-faq-accordion.homepage-faq .faq__panel-title {
  margin: 0;
  padding: 0 32px;
}

.wp-block-saldo-faq-accordion .faq--homepage .faq__panel-title {
  margin: 0;
  padding: 0 32px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.blog-archive {
  background: var(--color-nickel-50);
}

.single-post {
  background: #fff;
}

main.blog-archive {
  margin-top: 0 !important;
}

.blog-archive__cover {
  min-height: 340px;
  background: var(--color-nickel-200, #c8c9ce);
}

.blog-archive__hero {
  padding-top: 56px;
  padding-bottom: 32px;
}

.blog-archive__hero-inner {
  text-align: center;
}

.blog-archive__hero .jumbo__title,
.blog-archive__hero .wp-block-query-title {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.6px;
}

.blog-archive__body {
  padding-top: 0;
  padding-bottom: 96px;
}

.blog-archive__query {
  width: min(100% - var(--layout-wide-gutters), var(--layout-wide-max));
  margin-left: auto;
  margin-right: auto;
}

.blog-archive__pagination {
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.blog-pagination__count {
  margin: 8px 0 0;
  padding: 0 0 16px;
  text-align: center;
  color: rgba(30, 34, 56, 0.7);
  border-bottom: 1px solid rgba(30, 34, 56, 0.12);
}

.blog-archive__query > .blog-pagination__count {
  margin-bottom: 32px;
}

.blog-archive__pagination .wp-block-query-pagination-previous,
.blog-archive__pagination .wp-block-query-pagination-next,
.blog-archive__pagination .wp-block-query-pagination-numbers {
  margin: 0;
}

.blog-archive__pagination .wp-block-query-pagination-previous-arrow,
.blog-archive__pagination .wp-block-query-pagination-next-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.1em;
  font-weight: inherit;
  line-height: 1;
  color: inherit;
}

.blog-archive__pagination a,
.blog-archive__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  border-radius: 999px;
}

.blog-archive__pagination a:hover {
  background: rgba(35, 49, 155, 0.08);
  color: var(--color-primary);
  text-decoration: none;
}

.blog-archive__pagination .wp-block-query-pagination-numbers .current {
  background: var(--color-primary);
  color: #fff;
}

.blog-archive__cards,
.blog-archive__post-template {
  display: grid;
  gap: 24px;
}

.blog-archive__pagination--bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(30, 34, 56, 0.12);
}

.blog-archive__post-template {
  margin: 0;
  padding: 0;
}

.blog-archive__post-template > li {
  margin: 0;
  list-style: none;
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.25),
    0 9px 18px -9px rgba(0, 0, 0, 0.3),
    0 -6px 18px -4px rgba(0, 0, 0, 0.024);
}

.blog-card__media {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 155, 196, 0.18), rgba(35, 49, 155, 0.08));
}

.blog-card__media:empty {
  display: none;
}

.blog-card__media:empty + .blog-card__content {
  grid-column: 1 / -1;
}

.blog-card__image,
.blog-card__image a,
.blog-card__image img,
.blog-card__media .wp-block-post-featured-image,
.blog-card__media .wp-block-post-featured-image a {
  height: 100%;
}

.blog-card__image,
.blog-card__media .wp-block-post-featured-image {
  margin: 0;
  aspect-ratio: auto !important;
}

.blog-card__image img,
.blog-card__media .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, auto) minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 16px;
  margin: 0;
  padding: 32px 40px;
  background: #fff;
}

.blog-card__content::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  width: 4px;
  height: 72px;
  border-radius: 999px 0 0 999px;
  background: var(--color-primary);
}

.blog-card__date {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 20px;
  background: #3ba9dc;
  color: #fff;
  font-family: var(--wp--preset--font-family--body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.blog-card__title {
  position: relative;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.6875rem);
  font-weight: 700;
  line-height: 1.5;
}

.blog-card__title a {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 15.75px;
  line-height: 1.57;
}

.blog-card__excerpt p {
  margin: 0;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: auto;
  margin-top: auto;
  padding: 0;
  color: var(--color-primary);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.blog-card__read-more:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.blog-sidebar {
  margin: 0;
  padding: 20px 16px 32px;
  background: #fff;
  box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.18),
    0 9px 18px -9px rgba(0, 0, 0, 0.18);
}

.blog-sidebar__title {
  position: relative;
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
}

.blog-sidebar__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.15em;
  background: var(--color-primary);
}

.blog-sidebar__title--latest {
  margin-top: 40px;
}

.blog-sidebar__tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__tags li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 34, 56, 0.08);
}

.blog-sidebar__tags li:last-child {
  border-bottom: 0;
}

.blog-sidebar__tags a {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}

.blog-sidebar__tags a:hover {
  color: var(--color-primary);
}

.blog-sidebar__tags .count {
  color: rgba(0, 0, 0, 0.54);
  font-size: 15px;
}

.blog-sidebar__latest {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__latest li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 34, 56, 0.08);
}

.blog-sidebar__latest li .wp-block-latest-posts__featured-image {
  grid-row: 1 / -1;
}

.blog-sidebar__latest li .wp-block-latest-posts__post-excerpt {
  grid-column: 2;
}

.blog-sidebar__latest li:last-child {
  border-bottom: 0;
}

.blog-sidebar__latest img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.blog-sidebar__latest a {
  color: rgba(0, 0, 0, 0.87);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.blog-sidebar__latest a:hover {
  color: var(--color-primary);
}

.blog-sidebar__latest .wp-block-latest-posts__post-excerpt,
.blog-sidebar__latest .wp-block-latest-posts__post-excerpt p {
  margin: 6px 0 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 15px;
  line-height: 1.55;
}

.blog-archive__empty {
  margin: 0;
  padding: 32px;
  background: #fff;
  box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.18);
}

main.single-post {
  margin-top: 0 !important;
}

.single-post__hero {
  background: #fff;
}

.single-post__hero-image {
  margin: 0;
}

.single-post__hero-image img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.single-post__body {
  margin: 0;
  background: #fff;
  padding-top: 32px;
  padding-bottom: 96px;
}

.single-post__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 32px;
  align-items: start;
}

.single-post__article {
  background: var(--color-nickel-50);
}

.single-post__article-inner {
  margin: 0;
  padding: 36px 48px 56px;
}

.single-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.single-post__meta-left {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 13.5px;
  line-height: 22.5px;
}

.single-post__brand,
.single-post__date,
.single-post__time {
  margin: 0;
  font-size: 13.5px;
  line-height: 22.5px;
  color: rgba(0, 0, 0, 0.87);
}

.single-post__brand {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

.single-post__date,
.single-post__time {
  position: relative;
  padding-left: 22px;
  margin-left: 12px;
}

.single-post__date::before,
.single-post__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.single-post__date::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M152 64h144V32a32 32 0 0 1 64 0v32h24a56 56 0 0 1 56 56v328a56 56 0 0 1-56 56H64a56 56 0 0 1-56-56V120a56 56 0 0 1 56-56h24V32a32 32 0 0 1 64 0zm232 128H64v256h320z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M152 64h144V32a32 32 0 0 1 64 0v32h24a56 56 0 0 1 56 56v328a56 56 0 0 1-56 56H64a56 56 0 0 1-56-56V120a56 56 0 0 1 56-56h24V32a32 32 0 0 1 64 0zm232 128H64v256h320z'/%3E%3C/svg%3E");
}

.single-post__time::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm92.5 313l-20.6 28.7a16 16 0 0 1-22.3 3.6l-83.7-59.8A16 16 0 0 1 216 280V116a16 16 0 0 1 16-16h48a16 16 0 0 1 16 16v132.1l49.9 35.7a16 16 0 0 1 3.6 22.2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm92.5 313l-20.6 28.7a16 16 0 0 1-22.3 3.6l-83.7-59.8A16 16 0 0 1 216 280V116a16 16 0 0 1 16-16h48a16 16 0 0 1 16 16v132.1l49.9 35.7a16 16 0 0 1 3.6 22.2z'/%3E%3C/svg%3E");
}

.single-post__term {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.single-post__term a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #3a3d58;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

.single-post__term a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.single-post__title {
  position: relative;
  margin: 0 0 28px;
  padding-left: 20px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.6px;
}

.single-post__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 4px;
  height: 0.82em;
  border-radius: 999px;
  background: var(--color-primary);
}

.single-post__content {
  color: rgba(0, 0, 0, 0.87);
}

.single-post__content > *:first-child {
  margin-top: 0;
}

.single-post__content > p:first-child {
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.single-post__content h2 {
  position: relative;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-left: 16px;
}

.single-post__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.1em;
  border-radius: 999px;
  background: var(--color-primary);
}

.single-post__content p,
.single-post__content li {
  color: rgba(0, 0, 0, 0.87);
}

.single-post__content p + p {
  margin-top: 16px;
}

.single-post__content ul,
.single-post__content ol {
  padding-left: 24px;
}

.single-post__sidebar {
  padding-top: 48px;
  background: #fff;
  box-shadow: none;
}

.single-post__latest li {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px 16px;
}

.single-post__latest .wp-block-latest-posts__featured-image {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.single-post__latest .wp-block-latest-posts__post-title,
.single-post__latest .wp-block-latest-posts__post-excerpt {
  grid-column: 2;
}

.single-post__latest img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
}

.single-post__latest a {
  font-size: 17px;
  line-height: 1.4;
}

.single-post__latest .wp-block-latest-posts__post-excerpt,
.single-post__latest .wp-block-latest-posts__post-excerpt p {
  font-size: 14px;
  line-height: 1.6;
}

.single-post__more {
  margin-top: 32px;
}

.single-post__more .wp-block-button__link {
  padding: 14px 24px;
}

.single-post__more-button.is-style-outline .wp-block-button__link {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.single-post__more-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(35, 49, 155, 0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (max-width: 82.99em) {
  .single-post__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 59.99em) {
  .blog-archive__hero {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .blog-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-card__media {
    aspect-ratio: 16 / 9;
  }

  .blog-card__content {
    padding: 24px;
  }

  .blog-card__content::after {
    height: 56px;
  }

  .blog-archive__pagination {
    gap: 12px;
  }
}

@media (max-width: 37.49em) {
  .blog-archive__body {
    padding-bottom: 72px;
  }

  .blog-archive__pagination {
    justify-content: center;
  }

  .blog-archive__pagination .wp-block-query-pagination-numbers {
    display: none;
  }

  .blog-sidebar {
    padding: 18px 16px 24px;
  }

  .blog-sidebar__latest li {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar__latest img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0px auto auto;
  background: var(--color-footer-bg, var(--color-primary));
  color: #fff;
  padding-top: 0;
  position: relative;
}

.footer > .container {
  width: min(100%, var(--layout-wide-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer__back-to-top-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  height: 0;
  padding: 0 24px;
}

.footer .wp-block-html,
.footer__content {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

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

.footer__brand,
.footer__logo-wrapper,
.footer__column,
.footer__column--contact {
  min-width: 0;
}

.footer__brand {
  display: block;
}

.footer__logo-wrapper {
  display: grid;
  width: 100%;
  place-items: start;
  gap: 8px;
  grid-template-columns: 1fr;
  grid-template-rows: 44px 44px;
}

.footer__logo-link {
  --brand-logo-color: #fff;
  display: block;
  width: 200px;
  height: 44px;
  color: #fff;
  text-decoration: none;
}

.footer__logo {
  display: block;
  width: 200px;
  height: 44px;
}

.footer__logo img {
  width: 200px;
  max-width: none;
  height: 44px;
  transform: none;
  transform-origin: top left;
  filter: brightness(0) invert(1);
}

.footer__logo .cw-header__logo {
  display: block;
  width: 200px;
  max-width: none;
  height: 44px;
}

.footer__logo .cw-header__logo,
.footer__logo .cw-header__logo g,
.footer__logo .cw-header__logo path {
  fill: var(--brand-logo-color);
}

.footer__social {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-rows: 1fr;
  grid-auto-flow: column;
  gap: 8px;
  justify-self: start;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--footer-social-icon-color, #fff);
  text-decoration: none;
  border-radius: 50%;
  opacity: 0.9;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 22.5px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
}

.footer__title::before {
  content: "";
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-primary);
}

.footer__list {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}

.footer__item {
  display: grid;
  align-items: center;
  padding: 8px 0;
}

.footer__item--contact {
  grid-template-columns: 16px minmax(0, 1fr);
}

.footer__item--link {
  grid-template-columns: 22px minmax(0, 1fr);
}

.footer__item-icon {
  width: 14px;
  height: 16px;
  color: var(--color-secondary);
}

.footer__item-icon--contact {
  width: 16px;
  height: 16px;
}

.footer__item-content {
  padding-left: 16px;
}

.footer__mail,
.footer__text,
.footer__link {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.footer__mail,
.footer__link {
  opacity: 0.54;
}

.footer__mail {
  display: inline-block;
  margin-bottom: 0;
}

.footer__text {
  margin: 0;
}

.footer__link {
  display: block;
}

.footer__social-link:hover {
  color: var(--footer-social-icon-color, #fff);
  opacity: 1;
  text-decoration: none;
}

.footer__link:hover,
.footer__mail:hover,
.footer__back-to-top-button:hover {
  color: #fff;
  opacity: 1;
  text-decoration: none;
}

.footer__back-to-top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  justify-self: start;
  border: 0;
  border-radius: var(--radius-button, 2px);
  background: var(--color-secondary);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-28px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  z-index: 2;
}

.footer__back-to-top-button svg {
  width: 24px;
  height: 24px;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
}

.footer__bottom {
  background: var(--color-footer-bottom-bg);
  padding: 16px 24px;
  text-align: center;
  color: #fff;
}

.footer__bottom p {
  margin: 0;
  font-size: 13.5px;
  line-height: 22.5px;
}

@media (min-width: 30em) {
  .footer__content {
    padding: 40px 24px;
  }

  .footer__back-to-top-row {
    padding: 0 24px;
  }
}

/* Pricing Table */
.pricing-table {
  gap: 24px;
}

.pricing-table__card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pricing-table__card .wp-block-heading {
  position: relative;
  font-family: var(--wp--preset--font-family--montserrat, Montserrat, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem) !important;
  font-weight: 400;
  line-height: 1.18;
  padding-left: 32px;
  margin: 0 0 24px;
}

.pricing-table__table {
  margin: 0;
}

.pricing-table__table table {
  border-collapse: collapse;
  width: 100%;
}

.pricing-table__table th,
.pricing-table__table td {
  padding: 8px 16px;
  border: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  vertical-align: top;
  text-align: left;
}

.pricing-table__table thead th {
  font-family: var(--wp--preset--font-family--montserrat, Montserrat, sans-serif);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  background: transparent;
}

.pricing-table__table td {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
}

.pricing-table__table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.024);
}

.pricing-table__table figcaption {
  display: none;
}

@media (max-width: 781px) {
  .pricing-table {
    flex-direction: column;
  }
}

@media (min-width: 48em) {
  .footer__back-to-top-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding: 0 24px;
  }

  .footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding: 56px 24px;
  }
}

@media (min-width: 64em) {
  .footer__back-to-top-row {
    grid-template-columns: 202.5px 265.469px 202.516px 202.516px;
    gap: 24px;
    padding: 0 32px;
  }

  .footer__content {
    grid-template-columns: 202.5px 265.469px 202.516px 202.516px;
    gap: 24px;
    padding: 72px 32px;
  }

  .footer__back-to-top-button {
    justify-self: center;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__logo-wrapper {
    place-items: center;
    grid-template-columns: auto 44px 44px auto;
    grid-template-rows: 200px;
  }

  .footer__logo-link {
    grid-area: 1 / 2;
    transform: rotate(-90deg);
    transform-origin: center;
  }

  .footer__logo {
    overflow: visible;
  }

  .footer__logo img {
    width: 200px;
    height: 44px;
  }

  .footer__logo .cw-header__logo {
    width: 200px;
    height: 44px;
  }

  .footer__social {
    grid-auto-flow: row;
    grid-area: 1 / 3;
    justify-self: center;
  }
}

@media (min-width: 83em) {
  .footer__back-to-top-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
  }

  .footer__content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 96px 0;
  }
}

@media (max-width: 1199px) {
  .section {
    padding: 88px 0;
  }

  .benefits-row {
    margin-top: 36px;
  }

  .wp-block-saldo-faq-accordion.homepage-faq .faq {
    gap: 44px;
  }
}

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

  .jumbo--production .wp-block-heading {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .benefits-row {
    margin-top: 20px;
    gap: 24px;
  }

  .benefit__icon {
    margin-bottom: 12px;
  }

  .wp-block-saldo-faq-accordion.homepage-faq {
    padding-top: 56px !important;
    padding-bottom: 72px !important;
  }

  .wp-block-saldo-faq-accordion.homepage-faq .faq__items-card {
    box-shadow: none;
  }

  .wp-block-saldo-faq-accordion.homepage-faq .faq__panel-title,
  .wp-block-saldo-faq-accordion .faq--homepage .faq__panel-title {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .footer__item-content {
    padding-left: 12px;
  }
}
