/* Section/block */
.wp-section {
  padding: var(--section-padding) 0;
  background: var(--active-bg);
  color: var(--active-header-color);
  margin: 0 !important;
  position: relative;
}

.wp-section.is-small-padding { padding-block: var(--section-padding-sm) }
.wp-section.no-top-padding { padding-top: 0 }
.wp-section.no-bottom-padding { padding-bottom: 0 }

.wp-block {
  position: relative;
}

.wp-block + .wp-block {
  padding-top: var(--section-padding);
}

.wp-block .inner-block[class*="bg-"] {
  padding: var(--inner-block-padding);
  border-radius: var(--border-radius-lg);
  background: var(--active-bg);
  color: var(--active-header-color);
}

/* general section content overwrtes */
.wp-section .headline {
  margin: 0;
  line-height: 1.15;
  font-family: var(--headline-font-family);
  font-weight: 500;
}

.wp-section .headline.has-highlighted-word > span {
  position: relative;
}

.wp-section .headline.has-highlighted-word > span span {
  position: relative;
  z-index: 2;
}

.wp-section .headline.has-highlighted-word > span::after {
  content: "";
  width: 100%;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 61 11" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 9C12.6875 6.44916 39.05 1.48662 59 2.04317" stroke="currentColor" stroke-width="4" stroke-linecap="round"/></svg>');
  background-size: 100% 15px;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  color: var(--active-accent-color);
  filter: var(--svg-tint-filter);
  /* transform: rotate(1.75deg); */
  z-index: 1;
}

.wp-section .headline.has-arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-section .headline.has-arrow-link .arrow-link {
  margin-left: auto;
  color: var(--active-accent-color);
}

.wp-section .button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 48px;
  align-items: center;
  font-weight: 600;
  text-align: center;

  width: 100%;
  justify-content: center;
  border-radius: var(--border-radius-md);
}

.wp-section .button svg {
  width: 24px;
  height: 24px;
}

.wp-section .button.button--large {
  height: 55px;
  font-size: 1.1rem;
}

.wp-section .button.button--large svg {
  width: 30px;
  height: 30px;
}

.wp-section .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

@media (min-width: 1024px) {
  .wp-section .cta-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.wp-section .footnote,
.wp-section .footnote * {
  font-size: 0.9rem;
}

/* Container */
.wp-container {
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
}

.is-smaller-container .wp-container {
  max-width: 1024px;
}

.wp-container.bleed,
.wp-container.mobile-bleed {
  padding: 0;
}

@media (min-width:768px) {
  .wp-container.mobile-bleed { padding: 0 var(--container-padding) }
}

/* generic layouts */
.wp-content-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wp-content-heading-wrapper.lg-gap {
  gap: 1.5rem
}

.wp-content-heading-wrapper .headline {
  justify-content: center;
}

.wp-content-heading-wrapper .headline span.subtext {
  display: block;
  font-size: 0.75em;
  margin-top: 0.4rem;
}

.wp-content-heading-wrapper .h1 {
  font-size: 2.2rem;
}

.wp-content-heading-wrapper .h2 {
  font-size: 2rem;
}

.wp-content-heading-wrapper .h3 {
  font-size: 1.95rem;
}

.wp-content-heading-wrapper .h4 {
  font-size: 1.75rem;
}

.wp-content-heading-wrapper .h5 {
  font-size: 1.5rem;
}

@media (min-width:1024px) {
  .wp-content-heading-wrapper .h1 {
    font-size: 3rem;
  }

  .wp-content-heading-wrapper .h2 {
    font-size: 2.5rem;
  }  

  .wp-content-heading-wrapper .h3 {
    font-size: 2.25rem;
  }

  .wp-content-heading-wrapper .h5 {
    font-size: 1.6rem;
  }
}

.wp-layout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .wp-layout-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .wp-layout-wrapper.flip-direction {
    flex-direction: row-reverse;
  }
}

.wp-layout-wrapper > * { flex: 1 }

@media (max-width: 767px) {
  .wp-layout-wrapper .img-wrap.hide-on-mobile { display: none }
}

@media (min-width: 1024px) {
  .wp-layout-wrapper .onethird { flex: 0.61 }
  .wp-layout-wrapper .twothirds { flex: 1.5 }
  .wp-layout-wrapper .adaptive { flex: unset }

  .wp-layout-wrapper.va-top { align-items: flex-start }
  .wp-layout-wrapper.va-bottom { align-items: flex-end }
}

.wp-layout-wrapper .img-wrap img {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: none;
}

.wp-layout-wrapper .img-wrap .max-img img {
  width: unset;
  max-width: 100%;
}

/* Content with crumb options */
.wp-section .content.apply-content-padding {
  padding: var(--section-padding) 0;
}

.wp-section .content.apply-content-padding.has-breadcrumbs {
  padding-top: var(--breadcrumb-section-padding)
}

.wp-section .content.has-breadcrumbs .crumbs {
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .wp-section .mobile-bleed .content.apply-content-padding {
    padding: var(--section-padding) var(--container-padding);
  }
}

@media (min-width: 768px) {
  .wp-section .content.apply-content-padding.has-breadcrumbs {
    padding-top: var(--breadcrumb-section-padding)
  }
}

@media (min-width: 1024px) {
  .wp-section .content.has-breadcrumbs .crumbs {
    padding-bottom: 2rem;
  }
}

@media (min-width: 1400px) {
  .wp-section .content.has-breadcrumbs .crumbs {
    padding-bottom: 2.25rem;
  }
}

/* Selection grid */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .selection-grid {
    gap: calc(var(--container-padding) / 2);
  }
}

@media (min-width: 1024px) {
  .selection-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.selection-grid .item {
  background: #fff;
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.25);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .selection-grid .item {
    padding: 1.75rem;
  }
}

.selection-grid .item:has(input[type="checkbox"]:checked),
.selection-grid .item:hover {
  border-color: rgba(var(--active-accent-color-rgb), 1);
  box-shadow: inset 0 0 0 1px var(--active-accent-color);
}

.selection-grid .head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.selection-grid .icon svg {
  width: 40px;
  height: 40px;
  color: var(--active-accent-color);
}

.selection-grid .label {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  flex: 1;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-grid .item input[type="checkbox"] {
  display: none;
}

.selection-grid .check-toggle {
  display: flex;
  align-items: center;
  color: var(--active-accent-color);
}

.selection-grid .check-toggle .unchecked {
  display: block;
}

.selection-grid .check-toggle .checked {
  display: none;
}

.selection-grid .item input[type="checkbox"]:checked ~ .head .check-toggle .unchecked {
  display: none;
}

.selection-grid .item input[type="checkbox"]:checked ~ .head .check-toggle .checked {
  display: block;
}

.selection-grid input[type="checkbox"]:checked ~ .head .label,
.selection-grid .item:hover .label {
  color: var(--active-accent-color);
}

.selection-grid .wysiwyg {
  text-align: left;
  margin-top: 0rem;
  color: var(--active-text-color-light);
  display: none;
}

@media (min-width: 1024px) {
  .selection-grid .wysiwyg {
    display: block;
  }  
}

.selection-grid .wysiwyg > * {
  font-size: 1rem;
  color: var(--active-text-color-light);
}

/* wysiwyg/content */
.wysiwyg,
.wysiwyg * {
  color: var(--active-text-color);
}

.wysiwyg *:empty:not(br) {
  display: none;
}

.wysiwyg.success,
.wysiwyg.success * {
  color: var(--brand-accent-green-lime);
}

.wysiwyg.error,
.wysiwyg.error * {
  color: var(--colors-red-400);
}

.wysiwyg p,
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg ul,
.wysiwyg ol {
  margin: 0 0 1.5rem;
}

.wysiwyg p,
.wysiwyg ul,
.wysiwyg li,
.wysiwyg ol,
.wysiwyg p * {
  font-size: 1.125rem;
  line-height: 1.45;
}

.wysiwyg :last-child {
  margin: 0;
}

.wysiwyg ul {
  list-style: none;
  padding-left: 1.65rem;
}

.wysiwyg li {
  position: relative;
}

.wysiwyg li::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.425rem;
  width: 13px;
  height: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg width="13" height="12" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 13C10.8137 13 13.5 10.3137 13.5 7C13.5 3.68629 10.8137 1 7.5 1C4.18629 1 1.5 3.68629 1.5 7C1.5 10.3137 4.18629 13 7.5 13Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  color: inherit;
}

.wysiwyg a {
  color: var(--active-accent-color);
}

.wysiwyg a:hover {
  text-decoration: underline;
}

.wp-section .read-more {
  margin-top: 1rem;
}

.wp-section .block__cta .read-more {
  margin-top: 0;
}

.wp-section .read-more a {
  color: var(--active-accent-color-link);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.wp-section .read-more a span {
  position: relative;
}

.wp-section .read-more a span::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  background: var(--active-accent-color-link);
  transition: bottom 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-section .read-more a svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-section .read-more a:hover span::after {
  bottom: -1px;
  opacity: 1;
}

.wp-section .read-more.icon-arrow a {
  gap: 0.25rem;
}

.wp-section .read-more.icon-arrow a:hover svg {
  transform: translateX(0.25rem);
}

.wp-section .read-more.icon-plus a svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-section .read-more.icon-plus a:hover span {
  text-decoration: none;
}

.wp-section .read-more.icon-plus a:hover svg {
  transform: scale(1.15);
}

/* breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crumbs li,
.crumbs li a {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--active-text-color-light);
}

@media (min-width: 768px) {
  .crumbs { gap: 0.75rem }
  .crumbs li,
  .crumbs li a {
    font-weight: 600;
  }
}

.crumbs svg {
  width: 16px;
  height: 16px;
}

.crumbs li:last-child a {
  color: var(--active-accent-color-alt);
  font-size: 0.85rem;
}

/* Video */
.video-wrap {
  line-height: 1;
  border-radius: var(--border-radius-lg);
  position: relative;
}

.video-wrap video,
.video-wrap iframe,
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-lg);
}

.video-wrap .img-wrap {
  position: relative;
  cursor: pointer;
}

.video-wrap .play-icon {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrap .play-icon svg {
  width: 65px !important;
  height: 65px !important;
  transform: scale(0.9);
  transition: transform 0.2s ease-in-out;
}

.video-wrap .play-icon:hover svg {
  transform: scale(1);
}

/* Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.video-modal.active {
  opacity: 1;
  background-color: var(--modal-overlay-color);
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  padding: 0 var(--container-padding);
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.video-modal.active .video-modal-content {
  opacity: 1;
  transform: scale(1);
}

.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-height: 90vh;
}

@media (min-width: 1024px) {
  .video-modal-content {
    max-width: 1000px;
  }
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  padding: 0 var(--container-padding);
}

.video-modal-close svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .video-modal-close {
    top: -30px;
    right: -30px;
  }
}

/* ----------------------------------- */
/* Component: wp-secondary-hero-banner */
/* ----------------------------------- */

.wp-secondary-hero-banner {
  padding: 0;
}

.wp-secondary-hero-banner .wp-container {
  display: flex;
  flex-direction: column;
}

.wp-secondary-hero-banner .wp-content-heading-wrapper .h1 {
  white-space: break-spaces;
}

@media (min-width: 768px) {
  .wp-secondary-hero-banner .wp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
  }
}

@media (min-width: 1024px) {
  .wp-secondary-hero-banner .wp-container {
    gap: 4rem;
    grid-template-columns: 1fr 1.2fr;
  }
}


.wp-secondary-hero-banner .wp-container > .img-wrap {
  height: 100%;
  position: relative;
}

.wp-secondary-hero-banner .wp-container > .img-wrap .icon {
  position: absolute;
  width: 110px;
  height: 110px;
  top: -5px;
  left: 40px;
  color: var(--active-accent-color);
}

.wp-secondary-hero-banner .wp-container > .img-wrap .icon svg {
  width: 100%;
  height: 100%;
}

.wp-secondary-hero-banner .wp-container > .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left top;
}

@media (min-width: 768px) {
  .wp-secondary-hero-banner .wp-container > .img-wrap {
    width: calc(100% + var(--container-padding));
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap img {
    position: absolute;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap .icon {
    top: 10%;
    left: 0;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap img {
    border-radius: 500px 0 0 0;
    border: solid rgba(255, 255, 255, 0.40);
    border-width: 20px 0 0 20px;
  }
  
  .wp-secondary-hero-banner .wp-container > .img-wrap.asymmetric img {
    border-radius: 300px 0;
    border-width: 20px;
  }
}

@media (min-width: 1024px) {
  .wp-secondary-hero-banner .wp-container > .img-wrap {
    width: 100%;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap .icon {
    top: 15%;
  }

  .wp-secondary-hero-banner .wp-container.has-brakeout-image {
    position: static;
  }

  .wp-secondary-hero-banner .wp-container.has-brakeout-image > .img-wrap {
    width: 50%;
    position: absolute;
    right: 0;
  }

  .wp-secondary-hero-banner .wp-container.has-brakeout-image > .img-wrap img {
    position: absolute;
    max-width: 1000px;
  }
}

@media (max-width: 767px) {
  .wp-secondary-hero-banner .wp-container > .img-wrap {
    overflow: hidden;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap .icon {
    width: 80px;
    height: 80px;
    top: 0;
    left: auto;
    right: var(--container-padding);
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap img {
    border-radius: 0 500px 0 0;
    border: solid rgba(255, 255, 255, 0.40);
    border-width: 15px 15px 0 0;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap.asymmetric img {
    border-radius: 0;
    border-width: 0;
  }

  .wp-secondary-hero-banner .wp-container > .img-wrap.asymmetric .block__media {
    width: 140vw;
    margin-left: -20vw;
    clip-path: ellipse(65% 95% at 50% 100%);
  }
}

.wp-secondary-hero-banner .content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ---------------------- */
/* Component: wpBenefits  */
/* ---------------------- */

.wp-logos-marquee .content {
  padding-inline: var(--container-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 auto;
}

.wp-logos-marquee .logos-wrapper {
  margin-top: 2.5rem;
}

.wp-logos-marquee .logos {
  overflow: auto;
  width: 100%;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .wp-logos-marquee .logos {
    width: calc(100% / var(--logo-total-items) * var(--logo-items-to-show));
  }
}

.wp-logos-marquee .logos-inner {
  display: flex;
  white-space: nowrap;
}

.wp-logos-marquee .logos .item {
  flex-shrink: 0;
  width: calc(100% / var(--logo-items-to-show));
  height: auto;
  align-self: center;
}

.wp-logos-marquee .logos:not(.scroll) .item {
  scroll-snap-align: center;
}

.wp-logos-marquee .logos .item img {
  width: 180px;
  height: 180px;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  padding: 0 var(--container-padding);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% * (var(--logo-total-items) / var(--logo-items-to-show))));
  }
}

/* is scroll */
.wp-logos-marquee .logos.scroll {
  overflow: hidden;
  scroll-snap-type: none;
  position: relative;
}

.wp-logos-marquee .logos::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wp-logos-marquee .logos.scroll .logos-inner {
  animation: marquee var(--logos-scroll-speed, 4) linear infinite;
}

.wp-logos-marquee .logos.scroll.pause-on-hover:hover .logos-inner {
  animation-play-state: paused;
}

/* fade out on white */
.bg-white .wp-logos-marquee .logos.scroll::before,
.bg-white .wp-logos-marquee .logos.scroll::after {
  content: "";
  position: absolute;
  z-index: 9;
  width: 50px;
  top: 0;
  bottom: 0;
}

.bg-white .wp-logos-marquee .logos.scroll::before {
  left: 0;
  background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.bg-white .wp-logos-marquee .logos.scroll::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

/* ------------------------ */
/* Component: wpAccordionWithImage  */
/* ------------------------ */

.wp-accordion-with-image {
  --accordion-icon-width: 40px;
  --accordion-header-gap: 1.5rem;
  --accordion-cubic-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .wp-accordion-with-image {
    --accordion-icon-width: 45px;
  }  
}

@media (min-width: 1024px) {
  .wp-accordion-with-image {
    --accordion-header-gap: 1.75rem;
    --accordion-icon-width: 50px;
  }  
}

@media (min-width: 1400px) {
  .wp-accordion-with-image {
    --accordion-header-gap: 2rem;
    --accordion-icon-width: 55px;
  }  
}

.wp-accordion-with-image .wp-content-heading-wrapper {
  margin-bottom: 1rem;
}

.wp-accordion-with-image .content {
  display: flex;
  gap: 4rem;
}

.wp-accordion-with-image .content > * {
  flex: 1;
}

.wp-accordion-with-image .accordion-item {
  width: 100%;
  border-bottom: 2px dotted var(--brand-lowlight);
  position: relative;
}

/* .wp-accordion-with-image .accordion-item:last-child {
  border-bottom: 0;
} */

.wp-accordion-with-image .accordion-input { display: none }
.wp-accordion-with-image .accordion-action {
  display: flex;
  gap: var(--accordion-header-gap);
  padding: 1.5rem 0;
  width: 100%;
  align-items: center;
  cursor: pointer;
}

.wp-accordion-with-image .accordion-action .icon {
  width: var(--accordion-icon-width);
  height: var(--accordion-icon-width);
}

.wp-accordion-with-image .accordion-action .icon svg {
  width: 100%;
  height: 100%;
  color: var(--active-accent-color);
}

.wp-accordion-with-image .accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  text-align: left;
}

.wp-accordion-with-image .accordion-header h3 {
  font-weight: 600;
  font-size: 1.25rem;
  flex: 1;
  margin: 0;
  line-height: 1.35;
}

.wp-accordion-with-image .accordion-header .icons {
  position: relative;
  height: 30px;
  width: 30px;
}

.wp-accordion-with-image .accordion-header svg {
  width: 30px;
  height: 30px;
  position: absolute;
  transition: opacity 0.25s var(--accordion-cubic-transition);
}

.wp-accordion-with-image .accordion-header .minus { opacity: 0 }
.wp-accordion-with-image .accordion-header .plus { opacity: 1  }

.wp-accordion-with-image .accordion-input:checked + .accordion-action {
  padding-bottom: 0;
  cursor: default;
}

.wp-accordion-with-image .accordion-input:checked + .accordion-action + .accordion-content {
  height: auto;
  height: calc-size(auto, size);
  opacity: 1;
  visibility: visible;
}

.wp-accordion-with-image .accordion-input:checked + .accordion-action .accordion-header .plus { opacity: 0; }
.wp-accordion-with-image .accordion-input:checked + .accordion-action .accordion-header .minus { opacity: 1; }
.wp-accordion-with-image .accordion-content {
  padding-left: calc(var(--accordion-icon-width) + var(--accordion-header-gap));
  color: var(--colors-grey-600);
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.25s var(--accordion-cubic-transition), opacity 0.25s var(--accordion-cubic-transition), visibility 0.25s var(--accordion-cubic-transition);
}

.wp-accordion-with-image .accordion-content .accordion-content-inner {
  padding-bottom: 2rem;
}

.wp-accordion-with-image .accordion .block__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wp-accordion-with-image .accordion-item.no-icon .accordion-header {
  min-height: var(--accordion-icon-width);
}

.wp-accordion-with-image .accordion-item.no-icon .accordion-content {
  padding-left: 0;
}

.wp-accordion-with-image .accordion-item.no-icon .accordion-input:checked + .accordion-action + .accordion-content {
  padding-top: 0.5rem;
}

.wp-accordion-with-image .cta-actions .btn-link {
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .wp-accordion-with-image .accordion-item .accordion-input:checked + .accordion-action + .accordion-content {
    padding-top: 0.75rem;
  }
}


/* ------------------------ */
/* Component: wpAccordionWithImage  */
/* ------------------------ */

.wp-simple-banner .block-banner {
  background: var(--active-bg);
  color: var(--active-text-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius-lg);
}

.wp-simple-banner .block-banner .icon {
  position: absolute;
  left: -20px;
  top: 30px;
}

.wp-simple-banner .block-banner .icon.wide {
  left: -60px;
}

.wp-simple-banner .block-banner .icon svg {
  width: 60px;
  height: auto;
  color: var(--active-accent-color);
}

.wp-simple-banner .block-banner .footnote {
  margin-top: 1rem;
}

.wp-simple-banner .block-banner .footnote * {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

@media (max-width: 767px) {
  .wp-simple-banner .block-banner.inner-block {
    padding-block: calc(var(--inner-block-padding) * 1.5);
  }
}

/* ----------------------------------- */
/* Component: wpBannerWithImageVideo  */
/* ----------------------------------- */
.wp-banner-with-image-video .wp-container[id] {
  scroll-margin-top: calc(var(--header-height) + var(--promo-height) + 30px);
}

.wp-banner-with-image-video .star-ratings {
  color: var(--colors-orange-400);
  display: flex;
  gap: 0.15rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.wp-banner-with-image-video .content.text-align-center { text-align: center }
.wp-banner-with-image-video .content.text-align-left { text-align: left }
.wp-banner-with-image-video .content.text-align-right { text-align: right }

@media (max-width: 767px) {
  .wp-banner-with-image-video .content.text-align-center-mob { text-align: center }
  .wp-banner-with-image-video .content.text-align-left-mob { 
    text-align: left;
    align-items: flex-start;
  }
  .wp-banner-with-image-video .content.text-align-right-mob { text-align: right }
}

@media (min-width: 768px) {
  .wp-banner-with-image-video .star-ratings {
    justify-content: flex-start;
  }

  .wp-banner-with-image-video .cta-actions {
    align-items: flex-start;
  }
}

.wp-banner-with-image-video .desc strong {
  color: var(--active-header-color);
}

.wp-banner-with-image-video .star-ratings svg {
  width: 18px;
  height: 18px;
}

.wp-banner-with-image-video .img-wrap svg {
  width: 100%;
  height: 100%;
}

.wp-banner-with-image-video .img-wrap.has-oval-mask {
  position: relative;
}

.wp-banner-with-image-video .img-wrap.has-oval-mask .ellipse {
  position: absolute;
  top: 3px;
  left: -20px;
  width: 100%;
  height: 100%;
}

.wp-banner-with-image-video .img-wrap.has-oval-mask .ellipse svg {
  width: 100%;
  height: 100%;
}

.wp-banner-with-image-video .img-wrap .icon {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 70px;
  height: 70px;
}

.wp-banner-with-image-video .img-wrap.has-oval-mask .icon {
  right: 10%;
}

@media (min-width: 1024px) {
  .wp-banner-with-image-video .img-wrap.has-oval-mask .icon {
    right: 100px;
  }

  .wp-banner-with-image-video .img-wrap .icon {
    width: 90px;
    height: 90px;
  }
}

.wp-banner-with-image-video .img-wrap.has-oval-mask .image img {
  border-radius: 50%;
}

.wp-banner-with-image-video .icon,
.wp-banner-with-image-video .ellipse {
  color: var(--active-accent-color)
}

/* --------------------------- */
/* Component: wpContentBlocks  */
/* --------------------------- */

.wp-content-blocks .blocks-wrapper {
  --block-bg: var(--colors-white);
  --block-padding: 2.25rem;

  display: grid;
  grid-template-columns: repeat(var(--items-to-show), minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 1024px) {
  .wp-content-blocks .blocks-wrapper {
    --block-padding: 3rem;

    gap: var(--container-padding);
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
  }
}

@media (min-width: 1400px) {
  .wp-content-blocks .blocks-wrapper {
    gap: 3rem;
  }
}

.wp-content-blocks .wp-content-heading-wrapper + .blocks-wrapper {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .wp-content-blocks .wp-content-heading-wrapper + .blocks-wrapper {
    margin-top: 3rem;
  }
}

.wp-content-blocks .blocks-wrapper > div {
  background: var(--block-bg);
  padding: var(--block-padding);
  border-radius: var(--border-radius-md);
}

.wp-content-blocks .blocks-wrapper .img-wrap {
  width: 28px;
  height: 28px;
  color: var(--active-accent-color);
}

.wp-content-blocks .blocks-wrapper .img-wrap svg {
  width: 100%;
  height: 100%;
}

.wp-content-blocks .blocks-wrapper .cta-actions {
  display: inline-flex;
  align-items: flex-start;
}

/* ----------------------------- */
/* Component: wpStickyMobileCta  */
/* ----------------------------- */

.wp-section-sticky-cta-bar {
  --cta-vertical-padding: 0.75rem;
  --cta-toggler-height: 64px;
  --cta-toggler-label-height: 20px;
  --cta-cubic-transition: cubic-bezier(0.4, 0, 0.2, 1);
  --cta-toggle-height-open-state: calc(var(--cta-toggler-height) - var(--cta-toggler-label-height));

  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  
  transition: transform 0.3s var(--cta-cubic-transition);
  transform: translateY(calc(100% - var(--cta-toggler-height)));
}

.wp-section-sticky-cta-bar .toggler {
  padding: 0 var(--container-padding);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  cursor: pointer;
  outline: none;
  height: var(--cta-toggler-height);
  color: var(--active-text-color);
  transition: height 0.3s ease-in-out;
}

.wp-section-sticky-cta-bar .toggler svg {
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

.wp-section-sticky-cta-bar .toggler .label {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  height: var(--cta-toggler-label-height);
  visibility: visible;
  opacity: 1;
  position: relative;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out, position 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.wp-section-sticky-cta-bar .content-wrapper {
  display: block;
  transform: translateY(100%);
  transition: transform 0.3s var(--cta-cubic-transition), opacity 0.5s var(--cta-cubic-transition), visibility 0.3s var(--cta-cubic-transition);
  transition-delay: 0.03s;
  visibility: hidden;
  opacity: 0;

  margin: 0 var(--container-padding) var(--cta-toggle-height-open-state);
  border-radius: var(--border-radius-lg);
  padding: var(--container-padding);
}

/* Open state */
.wp-section-sticky-cta-bar.open {
  transform: translateY(0);
}

.wp-section-sticky-cta-bar.open .toggler {
  height: var(--cta-toggle-height-open-state);
}

.wp-section-sticky-cta-bar.open .icon svg {
  transform: rotate(180deg);
}

.wp-section-sticky-cta-bar.open .label {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  height: var(--cta-toggler-label-height);
}

.wp-section-sticky-cta-bar.open .content-wrapper {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.wp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 99;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.3s var(--cta-cubic-transition);
}

.wp-overlay.active {
  opacity: 1;
}

/* ----------------------------- */
/* Component: wpHeroBanner  */
/* ----------------------------- */

.wp-hero-banner {
  --grid-gap: 1rem;
}

.wp-hero-banner .wp_option-checkbox {
  border-color: var(--active-accent-color);
  color: var(--active-accent-color);
}

.wp-hero-banner .wp_option-checkbox:checked {
  background-color: var(--active-accent-color);
}

.wp-hero-banner .wp-content-heading-wrapper {
  text-align: center;
}

.wp-hero-banner .option-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(2, 1fr);
}

.wp-hero-banner .actions {
  margin-top: var(--grid-gap);
}

@media (min-width: 1024px) {
  .wp-hero-banner {
    --grid-gap: 1.25rem;
  }

  .wp-hero-banner .option-grid {
    grid-template-columns: repeat(4, 1fr);
  }  
}

.wp-hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
}

main .wp-hero-banner .container {
  align-items: flex-start;
}

/* Left content */
.wp-hero-banner__content {
  width: 60%;
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.wp-hero-banner__text {
  font-size: 1.25rem;
  letter-spacing: 0;
  font-weight: var(--font-weight-bold);
  margin: 0;
  font-family: var(--body-font-family);
  color: var(--active-text-color)
}

/* Checkbox options */
.wp-hero-banner__options-form {
  margin: 0;
  width: 100%;
}

.wp-hero-banner__option-item {
  padding: 1.25rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: var(--border-radius-lg);
  background: var(--colors-white);
  box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  height: 100%;
}

.wp-hero-banner__option-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  align-self: stretch;
  margin-top: auto;
  justify-content: center;
}

.wp-hero-banner__option-item-content svg {
  width: 56px;
  height: 56px;
  color: var(--active-accent-color);
}

.wp-hero-banner__option-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.wp-hero-banner__option-icon {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
}

.wp-hero-banner__option-icon img {
  object-fit: contain;
  flex: 1;
}

.wp-hero-banner__option-label {
  text-align: center;
  font-family: var(--body-font-family);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  margin-top: auto;
  line-height: 1.1;
}

.wp-hero-banner__cta-button svg {
  margin-left: 10px;
}

/* Right side image and testimonial */
.wp-hero-banner__image-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 47%;
  z-index: 1;
}

.wp-hero-banner__image {
  height: 100%;
  width: 100%;
  object-fit: none;
  object-position: left 15%;
}

.wp-hero-banner__testimonial {
  position: absolute;
  bottom: var(--section-padding);
  right: 0;
  background: var(--colors-white);
  padding: 23px 50px 23px;
  border-radius: 50px 0 0 50px;
  max-width: 38%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wp-hero-banner__testimonial-header,
.wp-hero-banner__testimonial-text {
  max-width: 400px;
}

.wp-hero-banner__stars {
  display: flex;
  gap: 5px;
  color: var(--colors-yellow-400);
  align-items: center;
}

.wp-hero-banner__testimonial-author {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

.wp-hero-banner__testimonial-author-title {
  font-size: var(--font-size-xsmall);
  margin-left: 9px;
}

.wp-hero-banner__testimonial-text {
  font-size: var(--font-size-small);
  margin-bottom: 0;
  color: var(--colors-blue-800);
}

@media (min-width: 449px) {
  .wp-hero-banner__option-item {
    aspect-ratio: 1/1;
  }
}

@media (min-width: 1024px) {
  .wp-hero-banner__option-item {
    aspect-ratio: unset;
  }
}

@media (max-width: 1023px) {
  .wp-hero-banner__option-item-content .img-wrap {
    width: 35%;
    height: 100%;
  }

  .wp-hero-banner__option-item-content svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .wp-hero-banner__content {
      width: 100%;
  }
  
  .wp-hero-banner__image-container,
  .wp-hero-banner__testimonial {
      display: none;
  }
}

/* ----------------------------- */
/* Component: wpWhyGA  */
/* ----------------------------- */

.wp-why-ga {
  max-width: 1490px;
  margin: auto;
}

.wp-why-ga .inner-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wp-why-ga .inner-block {
    gap: 3rem;
  }
}

.wp-why-ga .wp-content-heading-wrapper {
  text-align: center;
}

.wp-why-ga .wp-why-ga__subheader {
  color: var(--active-text-color);
  font-family: var(--body-font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
  display: none;
}


@media (min-width: 768px) {
  .wp-why-ga .wp-why-ga__subheader {
    display: block;
  }
}

.wp-why-ga .wp-why-ga__cards {
  display: flex;
  gap: 1.875rem;
}

.wp-why-ga .wp-why-ga__card {
  border-radius: 15px;
  border: 1px solid rgba(var(--active-accent-color-rgb-alt), 0.25);
  background: var(--active-bg); 
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.wp-why-ga .wp-why-ga__card > img {
  width: 40px;
}

.wp-why-ga .wp-why-ga__card-column .wp-why-ga__card h3 {
  margin: 0;
}

.wp-why-ga .wp-why-ga__card-column {
  flex: 0 0 355px;
  gap: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wp-why-ga .wp-why-ga__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.wp-why-ga .wp-why-ga__card-content p:empty {
  display: none;
}

.wp-why-ga .wp-why-ga__card-content > h2 {
  margin: 0;
}

.wp-why-ga .wp-why-ga__card-content .video-wrap {
  flex: 1;
  width: 100%;
}

.wp-why-ga .wp-why-ga__card-content h3 {
  font-family: var(--headline-font-family);
  font-size: 2.25rem;
  font-weight: var(--font-weight-medium);
  margin: 0;
}

.wp-why-ga .wp-why-ga__card-content p {
  font-family: var(--body-font-family);
  font-size: var(--font-size-lg);
  margin: 0;
}

.wp-why-ga .wp-why-ga__form {
  display: flex;
  align-items: center;
  gap: 80px;
}

.wp-why-ga .wp-why-ga__form-content h2 {
  font-size: 2.125rem;
}

.wp-why-ga .wp-why-ga__form-content p {
  font-size: var(--font-size-lg);
  margin: 0;
}

.wp-why-ga .wp-why-ga__form .select-container {
  width: 100%;
  min-width: 200px;
  position: relative;
  font-family: var(--body-font-family);
}

.wp-why-ga .wp-why-ga__form .select-container #dropdown-toggle {
  display: none;
}

.wp-why-ga .wp-why-ga__form .select-container .select-header {
  background-color: var(--colors-grey-40);
  border-radius: 10px;
  border: 1px solid rgba(34, 34, 34, 0.20);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 2;
  font-size: var(--font-size-base);
}

.wp-why-ga .wp-why-ga__form .select-container .arrow {
  transition: transform 0.3s ease;
}

.wp-why-ga .wp-why-ga__form .select-container #dropdown-toggle:checked ~ .select-header .arrow {
  transform: rotate(180deg);
}

.wp-why-ga .wp-why-ga__form .select-container .select-options {
  background-color: var(--colors-white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wp-why-ga .wp-why-ga__form .select-container #dropdown-toggle:checked ~ .select-options {
  opacity: 1;
  visibility: visible;
}

.wp-why-ga .wp-why-ga__form .select-container .select-title {
  font-size: var(--font-size-base);
}

.wp-why-ga .wp-why-ga__form .select-container .option {
  display: flex;
  align-items: center;
}

.wp-why-ga .wp-why-ga__form .select-container .option:last-child {
  margin-bottom: 0;
}

.wp-why-ga .wp-why-ga__form .select-container .option-label {
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
  cursor: pointer;
  width: 100%;
}

.wp-why-ga .wp-why-ga__form .select-container .option-text {
  margin-left: 0;
}

.wp-why-ga .wp-why-ga__form .select-container .option input[type="checkbox"]:focus + label .custom-checkbox {
  box-shadow: 0 0 0 2px rgba(74, 105, 189, 0.5);
}

@media (min-width: 1024px) {
  .wp-why-ga .wp-why-ga__form .btn {
    flex: 0 0 355px;
  }
}

@media (max-width: 1024px) {
  .wp-why-ga .wp-why-ga__cards {
    flex-direction: column;
  }

  .wp-why-ga .wp-why-ga__card-column {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .wp-why-ga .wp-why-ga__card-content h3 {
    font-size: 1.375rem;
  }

  .wp-why-ga .wp-why-ga__card-content p {
    font-size: var(--font-size-small);
  }

  .wp-why-ga .wp-why-ga__card {
    padding: 1.25rem;
    gap: 0.625rem;
  }

  .wp-why-ga .wp-why-ga__card > img {
    width: 28px;
  }

  .wp-why-ga .wp-why-ga__form {
    gap: 15px;
  }

  .wp-why-ga .wp-why-ga__form form {
    gap: 10px;
  }

  .wp-why-ga .wp-why-ga__form,
  .wp-why-ga .wp-why-ga__form form {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .wp-why-ga .wp-why-ga__form .btn {
    width: 100%;
  }

  .wp-why-ga .wp-why-ga__form-content h2 {
    font-size: 1.625rem;
  }

  .wp-why-ga .wp-why-ga__form-content {
    width: 100%;
  }
}

/* ----------------------------- */
/* Component: wpLocationsMap  */
/* ----------------------------- */


.wp-locations-map-v2 .wp-content-heading-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.wp-locations-map-v2 .wp-content-heading-wrapper.subheader {
  margin-bottom: 2rem;
  text-align: left;
}

.wp-locations-map-v2 .wp-content-heading-wrapper.subheader .headline {
  font-weight: 400;
}

@media (min-width: 1400px) {
  .wp-locations-map-v2 .wp-content-heading-wrapper {
    margin-bottom: 4rem;
  }  
}

.wp-locations-map-v2 .footnote-wrapper {
  margin-bottom: 3.5rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .wp-locations-map-v2 .footnote-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 0;
    text-align: center;
  }  
}

.wp-locations-map-v2 .locations-map-column-heading {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 400;
  font-family: var(--headline-font-family);
  margin-bottom: 1.75rem;
}

.wp-locations-map-v2 .wp-locations-map-content {
  max-height: var(--locations-map-height, '750px');
}

.wp-locations-map-v2 .wp-locations-map-content {
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
  width: 100%;
}

.wp-locations-map-v2 .wp-locations-map-content .locations-map__state {
  width: calc(50% - 1.5rem);
}

@media (min-width: 1400px) {
  .wp-locations-map-v2 .wp-locations-map-content {
    gap: 1.5rem;
  }
  
  .wp-locations-map-v2 .wp-locations-map-content .locations-map__state {
    width: calc(33.33% - 1.5rem);
  }  
}

.wp-locations-map-v2 .wp-locations-map-content .block__title-link:hover {
  text-decoration: underline;
}

.wp-locations-map-v2 .wp-locations-map-content .locations-map__arrow {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 3px;
}

.wp-locations-map-v2 .wp-locations-map-content .locations-map__state h4 {
  font-family: var(--headline-font-family);
  display: inline-block;
}

.wp-locations-map-v2 .wp-locations-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wp-locations-map-v2 .wp-locations-map-wrapper > :last-child {
  width: 100%;
}

@media (min-width: 1024px) {
  .wp-locations-map-v2 .wp-locations-map-wrapper {
    flex-direction: row;
    gap: 4rem;
  }
}

@media (min-width: 1400px) {
  .wp-locations-map-v2 .wp-locations-map-wrapper {
    gap: 5rem;
  }
}

.wp-locations-map-v2 #data-maps-container {
  width: 100%;
  height: auto;
  position: relative;
}

.wp-locations-map-v2 #data-maps-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wp-locations-map-v2 .header-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem
}

.wp-locations-map-v2 .header-wrap h4 {
  font-weight: 400;
  margin: 0;
}

.wp-locations-map-v2 .header-wrap svg {
  width: 14px;
  height: 14px;
  color: var(--active-accent-color);
}

@media screen and (max-width: 767px) {
  .wp-locations-map-v2 #data-maps-container {
    padding-bottom: 60.25% !important;
  }
}

@media screen and (min-width: 1280px) {
  .wp-locations-map-v2 #data-maps-container {
    max-width: 500px;
    padding-bottom: 0 !important;
  }
}

@media screen and (min-width: 1400px) {
  .wp-locations-map-v2 #data-maps-container {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .wp-locations-map-v2 .locations-map-column-heading {
    font-weight: 400;
    font-size: 1.6rem;
  }
}

.wp-locations-map-v2 .hoverinfo {
  font-family: var(--body-font-family);
  transform: translate(-50%, -50%);
  padding: 0.3rem 0.55rem;
  border-radius: 999em;
  background-color: #FFF;
  box-shadow: none;
  font-size: 0.85rem;
  color: var(--active-header-color);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0px 3px rgba(255,255,255,0.25);
  white-space: nowrap;
}

.wp-locations-map-v2 .key {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--active-header-color);
  font-family: var(--body-font-family);
}

@media (min-width: 1024px) {
  .wp-locations-map-v2 .key {
    justify-content: center;
  } 
}

.wp-locations-map-v2 .key .dot {
  border-radius: 999em;
  width: 14px;
  height: 14px;
  background-color: var(--map-color-primary);
}

.wp-locations-map-v2 .key .dot.secondary {
  background-color: var(--map-color-secondary);
}

.wp-locations-map-v2 .key strong {
  font-size: 1.1rem;
}

.wp-locations-map-v2 .key div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wp-locations-map-v2 .key div svg {
  color: var(--active-accent-color-alt);
}

.wp-locations-map-v2.key div span {
  font-size: 0.9rem;
}


/* ----------------------------- */
/* Component: wpChecklistCard  */
/* ----------------------------- */

.wp-checklist-card .wp-container .content[class*="bg-"] {
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
}

.wp-checklist-card .wp-container .content {
  position: relative;
}

.wp-checklist-card .wp-container .icon {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 15px;
  top: -30px;
}

.wp-checklist-card .wp-container .icon svg {
  width: 100%;
  height: 100%;
  color: var(--active-accent-color);
}

.wp-checklist-card .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .wp-checklist-card .wp-container .content[class*="bg-"] {
    padding: 3rem;
  }
  
  .wp-checklist-card .content-wrapper {
    flex-direction: row;
    gap: 3.5rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .wp-checklist-card .wp-container .content[class*="bg-"] {
    padding: 3.5rem;
  }
  
  .wp-checklist-card .content-wrapper {
    gap: 4rem;
  }
}

@media (min-width: 1400px) {
  .wp-checklist-card .wp-container .content[class*="bg-"] {
    padding: 4rem;
  }
  
  .wp-checklist-card .content-wrapper {
    gap: 5rem;
  }
}

.wp-checklist-card .content-wrapper > * {
  flex: 1;
}

.wp-checklist-card .content-wrapper li {
  padding-bottom: 0.5rem;
}

.wp-checklist-card .logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.wp-checklist-card .logos-wrapper img {
  margin: 0 auto;
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .wp-checklist-card .logos-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .wp-checklist-card .wysiwyg ul {
    max-height: inherit;
    overflow-y: auto;  
    column-count: 2;
    column-gap: 4rem;
  }

  .wp-checklist-card .wysiwyg li {
    break-inside: avoid-column;
  }  
}

/* ----------------------------- */
/* Component: wpBenefitGrouping  */
/* ----------------------------- */

.wp-benefit-grouping {
  --group-cubic-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-benefit-grouping .wp-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.wp-benefit-grouping .blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wp-benefit-grouping .blocks-wrapper .inner-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  padding-block: 2.5rem;
  /* border: 1px solid rgba(var(--active-accent-color-rgb), 0.25); */
}

@media (min-width: 768px) {
  .wp-benefit-grouping .blocks-wrapper .inner-block {
    padding-inline: 3rem;
    padding-block: 3.5rem;
    border: 0;
  }
}

@media (min-width: 1024px) {
  .wp-benefit-grouping .blocks-wrapper .inner-block {
    gap: 5rem;
    padding-inline: 6rem;
    align-items: center;
    flex-direction: row;  
  }

  .wp-benefit-grouping .blocks-wrapper .inner-block:nth-child(even) {
    flex-direction: row-reverse;
  }  
}

@media (min-width: 1400px) {
  .wp-benefit-grouping .blocks-wrapper .inner-block {
    gap: 6rem;
    padding-inline: 8rem;
  }
}

.wp-benefit-grouping .blocks-wrapper .inner-block > * {
  flex: 1;
  width: 100%;
}

.wp-benefit-grouping .blocks-wrapper .content {
  text-align: center;
  gap: 1rem;
}

.wp-benefit-grouping .blocks-wrapper .content ul,
.wp-benefit-grouping .blocks-wrapper .content ol {
  text-align: left;
}

.wp-benefit-grouping .blocks-wrapper .cta-actions a {
  margin: 0 auto;
  flex: unset;
}

.wp-benefit-grouping .blocks-wrapper .img-wrap {
  position: relative;
  height: 100%;
}

.wp-benefit-grouping .blocks-wrapper .img-wrap .icon {
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: 20px;
  right: -60px;
  color: var(--active-accent-color);
}

.wp-benefit-grouping .blocks-wrapper .inner-block:nth-child(even) .img-wrap .icon {
  right: auto;
  left: -60px;
}

.wp-benefit-grouping .blocks-wrapper .img-wrap .icon svg {
  width: 100%;
  height: 100%;
}

.wp-benefit-grouping .blocks-wrapper .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .wp-benefit-grouping .cta-actions {
    margin-top: 0;
  }
}

.wp-benefit-grouping .drawer-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wp-benefit-grouping .drawer-item {
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.25);
  transition: all 0.2s var(--group-cubic-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.075);
  padding: 1.25rem 1.5rem;
  background: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.wp-benefit-grouping .drawer-item:hover {
  border-color: rgba(var(--active-accent-color-rgb), 0.75);
}

.wp-benefit-grouping .drawer-item > * {
  position: relative;
  z-index: 2;
}

.wp-benefit-grouping .drawer-item span {
  flex: 1;
  font-size: 0.95rem;
  font-family: var(--body-font-family);
  line-height: 1.25;
}

.wp-benefit-grouping .drawer-item svg {
  color: var(--active-accent-color-link);
}

.wp-benefit-grouping .drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 650px;
  height: 100%;
  background: #fff;
  z-index: 1001; /* Above overlay */
  transform: translateX(100%);
  transition: transform 0.2s var(--group-cubic-transition);
}

.wp-benefit-grouping .drawer.active {
  transform: translateX(0);
}

.wp-benefit-grouping .drawer-content {
  position: relative;
  height: 100%;
  padding: 2rem;
  padding-block: 4rem;
  overflow-y: auto;
  text-align: left;
}

@media (min-width: 768px) {
  .wp-benefit-grouping .drawer-content {
    padding: 3rem;
    padding-block: 6rem;
  }
}

@media (min-width: 1024px) {
  .wp-benefit-grouping .drawer-content {
    padding: 5rem;
    padding-block: 8rem;
  }
}


.wp-benefit-grouping .drawer-content .content {
  text-align: left;
  gap: 1.5rem;
}

.wp-benefit-grouping .drawer-content .content h1:not(.headline),
.wp-benefit-grouping .drawer-content .content h2:not(.headline),
.wp-benefit-grouping .drawer-content .content h3:not(.headline),
.wp-benefit-grouping .drawer-content .content h4:not(.headline),
.wp-benefit-grouping .drawer-content .content h5:not(.headline),
.wp-benefit-grouping .drawer-content .content h6:not(.headline) {
  color: var(--active-accent-color-alt);
  font-family: var(--body-font-family);
}

.wp-benefit-grouping .drawer-content .content * + h1,
.wp-benefit-grouping .drawer-content .content * + h2,
.wp-benefit-grouping .drawer-content .content * + h3,
.wp-benefit-grouping .drawer-content .content * + h4,
.wp-benefit-grouping .drawer-content .content * + h5,
.wp-benefit-grouping .drawer-content .content * + h6 {
  margin-top: 2.5rem;
}

.wp-benefit-grouping .drawer-content .content .desc {
  display: block;
}

.wp-benefit-grouping .drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 2rem;
  font-size: 30px;
  cursor: pointer;
  color: var(--colors-black);
}

@media (min-width: 1024px) {
  .wp-benefit-grouping .drawer-close {
    padding: 2rem 3rem;
  }
}

.wp-benefit-grouping .read-more-desc .full-text {
  display: none;
}

.wp-benefit-grouping .read-more-desc .truncated-text {
  display: block;
}

.wp-benefit-grouping .read-more-desc.expanded .full-text {
  display: block;
}

.wp-benefit-grouping .read-more-desc.expanded .truncated-text {
  display: none;
}

.wp-benefit-grouping .read-more-toggle {
  cursor: pointer;
  text-align: right;
  font-weight: 600;
  margin-top: 0.35rem;
  color: var(--active-header-color);
}

@media (min-width: 768px) {
  .wp-benefit-grouping .read-more-desc .full-text {
    display: block;
  }

  .wp-benefit-grouping .read-more-desc .truncated-text,
  .wp-benefit-grouping .read-more-toggle {
    display: none;
  }
}

/* ---------------------- */
/* Component: wpScheduleConsultationForm  */
/* ---------------------- */

.wp-schedule-consultation-form {
  --form-transition-effect: cubic-bezier(0.4, 0, 0.2, 1);
  scroll-margin-top: 95px;
}

.wp-schedule-consultation-form iframe {
  /* height: 800px; */
  border: none;
  display: block;
}

.wp-schedule-consultation-form-wrapper .consultation-form {
  position: relative;
}

.wp-schedule-consultation-form-wrapper .consultation-form .error {
  position: absolute;
  bottom: -35px;
  width: 100%;
  text-align: center;
  color: var(--active-accent-color);
  transition: opacity 0.25s var(--form-transition-effect);
  opacity: 0;
}

@media (min-width: 768px) {
  .wp-schedule-consultation-form-wrapper .consultation-form .error {
    bottom: -45px;
  }
}

.wp-schedule-consultation-form-wrapper .consultation-form .error.show {
  opacity: 1;
}

.wp-schedule-consultation-form-wrapper .consultation-form .error * {
  color: var(--active-accent-color);
  font-size: 1rem;
}

.wp-schedule-consultation-form-wrapper {
  margin-top: 1.5rem;
}

.wp-schedule-consultation-form .content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form-wrapper {
    margin-top: 0;
  }
    
  .wp-schedule-consultation-form .content {
    gap: 1.5rem;
  }
}

.wp-schedule-consultation-form .form-step .wp-content-heading-wrapper {
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form .form-step:not([data-step='4']) > div > :first-child {
    padding-top: 1rem;
  }
}

.wp-schedule-consultation-form .step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form .step-nav {
    margin-top: 1rem;
  }
}

.wp-schedule-consultation-form .step-nav .item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--active-accent-color-rgb-alt), 0.2);
  color: #fff;
  font-size: 30px;
  font-family: var(--headline-font-family);
  border-radius: 999em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form .step-nav .item {
    font-size: 40px;
    width: 60px;
    height: 60px;  
  }
}

.wp-schedule-consultation-form .step-nav .item.active {
  background: var(--active-accent-color);
}

.wp-schedule-consultation-form .step-nav .item.complete {
  pointer-events: unset;
}

.wp-schedule-consultation-form .step-nav .sep {
  width: 28px;
  height: 3px;
  background: rgba(var(--active-accent-color-rgb-alt2), 0.2);
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form .step-nav .sep {
    width: 40px;
  }
}

.wp-schedule-consultation-form .step-nav .complete {
  background: rgba(var(--active-accent-color-rgb-alt2), 1);
}

.wp-schedule-consultation-form .cta-actions {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form .cta-actions {
    margin-top: 1.5rem;
  }
}

.wp-schedule-consultation-form .main-desc p {
  display: none;
  margin: 0;
}

.wp-schedule-consultation-form .main-desc p.active {
  display: block;
}

.wp-schedule-consultation-form .wp-container {
  text-align: center;
}

.wp-schedule-consultation-form .form-step-wrapper {
  position: relative;
  transition: height 0.25s var(--form-transition-effect);
  overflow: hidden;
}

.wp-schedule-consultation-form .form-step-wrapper input[type='text'],
.wp-schedule-consultation-form .form-step-wrapper input[type='email'],
.wp-schedule-consultation-form .form-step-wrapper input[type='tel'],
.wp-schedule-consultation-form .form-step-wrapper select {
  background-color: var(--colors-white);
}

.wp-schedule-consultation-form .form-step {
  display: none;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.25s var(--form-transition-effect), transform 0.25s var(--form-transition-effect);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.wp-schedule-consultation-form .form-step.active {
  display: block;
  position: relative;
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.wp-schedule-consultation-form .form-step.slide-in-right {
  display: block;
  opacity: 1;
  transform: translateX(100%);
  animation: wp-slide-in-right 0.3s forwards var(--form-transition-effect);
}

.wp-schedule-consultation-form .form-step.slide-out-left {
  animation: wp-slide-out-left 0.3s forwards var(--form-transition-effect);
}

.wp-schedule-consultation-form .form-step.slide-in-left {
  display: block;
  opacity: 1;
  transform: translateX(-100%);
  animation: wp-slide-in-left 0.3s forwards var(--form-transition-effect);
}

.wp-schedule-consultation-form .form-step.slide-out-right {
  animation: wp-slide-out-right 0.3s forwards var(--form-transition-effect);
}

.wp-schedule-consultation-form .wp-container .form-step .img-wrap {
  position: relative;
}

.wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon {
  position: absolute;
  top: 70%;
}

.wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon-left {
  left: -40px;
  color: var(--brand-accent-green-mint);
}

.wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon-right {
  right: -30px;
  top: 10%;
  color: var(--active-accent-color);
}

@media (max-width: 767px) {
  .wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon-left {
    display: none;
  }

  .wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon-right {
    right: 0;
  }

  .wp-schedule-consultation-form .wp-container .form-step .img-wrap .icon-right svg {
    width: 70px;
    height: 70px;
  }
}

.wp-schedule-consultation-form .wp-container .headline { display: none }
.wp-schedule-consultation-form .wp-container.step-1 .headline.step-1,
.wp-schedule-consultation-form .wp-container.step-2 .headline.step-2,
.wp-schedule-consultation-form .wp-container.step-3 .headline.step-3,
.wp-schedule-consultation-form .wp-container.step-4 .headline.step-4,
.wp-schedule-consultation-form .wp-container.step-5 .headline.step-5 { display: block }

.wp-schedule-consultation-form .wp-container.step-4 .step-nav,
.wp-schedule-consultation-form .wp-container.step-5 .step-nav { display: none }
.wp-schedule-consultation-form .wp-container.step-4 .main-header-wrapper { display: none }

.wp-schedule-consultation-form .wp-container.step-4 .form-step .wp-content-heading-wrapper,
.wp-schedule-consultation-form .wp-container.step-5 .form-step .wp-content-heading-wrapper {
  padding: 0;
}

@media (max-width: 1023px) {
  .wp-schedule-consultation-form .wp-container .headline br {
    display: none;
  }
}

.shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes wp-slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes wp-slide-out-left {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes wp-slide-in-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes wp-slide-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ----------------------------- */
/* Component: wpTabbedContent  */
/* ----------------------------- */
.wp-tabbed-content__headline,
.wp-tabbed-content__subheader {
  width: 100%;
}

.wp-tabbed-content__tab-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.wp-tabbed-content {
  width: 100%;
}

.wp-tabbed-content__tabs-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.wp-tabbed-content__tabs-container::-webkit-scrollbar {
  display: none;
}

.wp-tabbed-content__tabs-nav {
  display: inline-flex;
  white-space: nowrap;
  gap: 2rem;
  border-bottom: 1px solid var(--colors-grey-400);
  margin-bottom: 30px;
}

.wp-tabbed-content__tabs-nav li {
  flex-shrink: 0;
}

.wp-tabbed-content__tabs-nav label {
  display: inline-block;
  padding: 5px 10px 10px 10px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

.wp-tabbed-content__tabs-nav label:hover {
  color: var(--active-accent-color);
}

.wp-tabbed-content__tabs-nav label::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.wp-tabbed-content__tab-content {
  display: none;
}

.wp-tabbed-content__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.85rem;
}

.wp-tabbed-content__card-grid > * {
  min-width: 0;
  max-width: 100%;
}

.wp-tabbed-content__card {
  border: 1px solid var(--active-accent-color);
  border-radius: 8px;
  padding: 40px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wp-tabbed-content__card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wp-tabbed-content__card-icon,
.wp-tabbed-content__card-icon svg {
  color: var(--active-accent-color);
  width: 34px;
  height: 34px;
}

.wp-tabbed-content__card h3 {
  font-size: 1.375rem;
  font-weight: var(--font-weight-semibold);
}

.wp-tabbed-content__card p {
  margin-bottom: 0;
}

/* Visually hidden elements for screen readers */
.wp-tabbed-content .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
.wp-tabbed-content__tab-input:focus-visible + label {
  outline: 2px solid var(--active-accent-color);
  outline-offset: 2px;
}

/* Scroll button */
.wp-tabbed-content__scroll-button {
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--colors-black);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: absolute;
  right: 0;
  z-index: 2;

  border-radius: 3px;
  background: rgba(233, 233, 233, 0.80);

  display: none;
}

.wp-tabbed-content__scroll-button:hover {
  background-color: var(--colors-grey-400);
}

.wp-tabbed-content__scroll-button svg {
  width: 20px;
  height: 20px;
}

.wp-tabbed-content__scroll-button--left {
  left: 0;
}

@media (max-width: 768px) {
  .wp-tabbed-content__tabs-nav {
    min-width: 200vw;
    margin-bottom: 15px;
  }

  .wp-tabbed-content__card-grid {
    gap: 0.625rem;
    grid-template-columns: 1fr;
  }

  .wp-tabbed-content__card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  .wp-tabbed-content__card h3 {
    font-size: var(--font-size-base);
  }

  .wp-tabbed-content__card p {
    display: none;
  }

  .wp-tabbed-content__card .btn--link {
    margin-left: auto;
  }

  .wp-tabbed-content__card .btn--link span {
    opacity: 0;
  }

  .wp-tabbed-content__card .btn--link:hover {
    opacity: 1;
  }

  .wp-tabbed-content__card .btn--link:hover span {
    opacity: 0;
  }

  .wp-tabbed-content__card:hover .wp-tabbed-content__card-icon svg path {
    stroke-width: 2;
  }
}

@media (min-width: 1040px) {
  .wp-tabbed-content__tabs-nav {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

/* ----------------------------- */
/* Component: wpClientSuccessCarousel  */
/* ----------------------------- */

.wp-client-success-carousel {
  overflow-x: hidden;
}

.wp-client-success-carousel__section {
  --cell-spacing: var(--container-padding);

  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
  position: relative;
}

.wp-client-success-carousel__content {
  flex: 1;
}

.wp-client-success-carousel__wrapper {
  position: relative;
  flex: 2;
}

/* Add a wrapper around the carousel */
.wp-client-success-carousel__viewport-wrapper {
  position: relative;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Stabilize overflow in Safari */
  overflow: hidden; /* Prevent scrolling */
}

.wp-client-success-carousel__carousel {
  width: 100%;
}

.wp-client-success-carousel__cell {
  padding: 1.25rem calc(var(--cell-spacing) / 2);
  aspect-ratio: 3/4;
  max-height: 500px;
  width: 85%;
  will-change: transform;
}

.wp-client-success-carousel__cell-inner {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: height 0.3s ease, transform 0.3s ease;
  background: rgba(var(--active-accent-color-rgb-alt), 0.1);
}

.wp-client-success-carousel__cell-inner .video-wrap,
.wp-client-success-carousel__cell-inner .img-wrap {
  height: 100%;
}

.wp-client-success-carousel__cell-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.9) 100%);
  padding: 3rem 1.5rem 2rem;
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.15rem
}

.wp-client-success-carousel__cell-text-overlay h3,
.wp-client-success-carousel__cell-text-overlay p {
  color: var(--colors-white);
  margin: 0;
}

.wp-client-success-carousel__cell-text-overlay h3 {
    font-size: 1.375rem;
}

.wp-client-success-carousel__cell-text-overlay p {
    font-size: 1rem;
}

@media (min-width: 768px) {
  .wp-client-success-carousel__section {
    flex-direction: row;
    gap: 2.5rem
  }

  .wp-client-success-carousel__cell {
    width: calc(60% + (var(--container-padding)/ 2));
  }

  .wp-client-success-carousel__carousel .flickity-viewport {
    overflow: visible;
    clip-path: inset(0 -100% 0 0);
  }
}

@media (min-width: 1024px) {
  .wp-client-success-carousel__cell {
    width: calc(48% + (var(--container-padding)/ 2));
  }
}

@media (min-width: 1400px) {
  .wp-client-success-carousel__cell.is-selected + .wp-client-success-carousel__cell .wp-client-success-carousel__cell-inner {
    height: 108%;
    transform: translateY(-4%);
  }

  .wp-client-success-carousel__cell {
    width: calc(33.333% + (var(--container-padding)/ 2));
  }
}

.wp-client-success-carousel__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

@media (min-width: 1400px) {
  .wp-client-success-carousel__buttons {
    margin-top: 1.75rem;
  }
}

.wp-client-success-carousel__buttons .wp-client-success-carousel__button {
    color: var(--brand-primary);
}

.wp-client-success-carousel__buttons .wp-client-success-carousel__button.btn--disabled {
    color: var(--colors-grey-500);
    cursor: not-allowed;
}

.wp-client-success-carousel__buttons .wp-client-success-carousel__button.wp-client-success-carousel__button--prev svg {
  transform: rotate(180deg);
} 

@media (max-width: 767px) {
  .wp-client-success-carousel__cell {
    padding-block: 1.25rem;
    padding-left: var(--cell-spacing);
  }

  .wp-client-success-carousel__cell:last-child {
    padding-right: var(--cell-spacing);
  }

  .wp-client-success-carousel__buttons,
  .wp-client-success-carousel__section .desc {
    display: none;
  }

  .wp-client-success-carousel__buttons,
  .wp-client-success-carousel__content {
    padding: 0 var(--container-padding);
  }
}

@media (max-width: 1399px) {
  .wp-client-success-carousel__cell.is-selected .wp-client-success-carousel__cell-inner {
    height: 110%;
    transform: translateY(-5%);
  }
}

/* ----------------------------- */
/* Component: wpImageContentSplit  */
/* ----------------------------- */

.wp-image-content-split {
  display: flex;
  flex-direction: row;
  max-width: 1600px;
  margin: 0 auto;
}

.wp-image-content-split .wp-image-content-split__content {
  flex: 1;
  padding: 60px 40px 60px 50px;
}

.wp-image-content-split .wp-image-content-split__image {
  flex: 1;
  overflow: hidden;
}

.wp-image-content-split .wp-image-content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-image-content-split .wp-image-content-split__heading {
  font-size: 2.5rem;
  font-family: var(--headline-font-family);
  margin: 0 0 20px 0;
}

.wp-image-content-split .wp-image-content-split__subheading {
  font-size: 1.56rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 15px 0;
}

.wp-image-content-split .wp-image-content-split__text {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--colors-grey-600);
  margin: 0 0 20px 0;
}

.wp-image-content-split .wp-image-content-split__tabs {
  position: relative;
  margin-top: 20px;
  display: grid;
}

.wp-image-content-split .wp-image-content-split__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wp-image-content-split .wp-image-content-split__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
}

.btn.btn--outline.wp-image-content-split__button {
    font-size: 0.9375rem;
    padding: 0 1.25rem;
}

.wp-image-content-split .wp-image-content-split__tab-content {
  grid-area: 2 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.wp-section .wp-image-content-split .cta-actions {
    align-items: flex-start;
}

@media (max-width: 767px) {
  .wp-image-content-split {
    flex-direction: column;
  }
  
  .wp-image-content-split .wp-image-content-split__content {
    padding: 43px 20px 40px;
  }
  
  .wp-image-content-split .wp-image-content-split__heading {
    font-size: 1.625rem;
  }
  
  .wp-image-content-split .wp-image-content-split__subheading {
    font-size: 1.375rem;
  }

  .wp-image-content-split .wp-image-content-split__buttons {
    gap: 5px;
    justify-content: space-around;
  }

  .btn.btn--outline.wp-image-content-split__button {
    padding: 0 0.875rem;
  }
}

/* ----------------------------- */
/* Component: wpResources  */
/* ----------------------------- */


.wp-resources-section .wp-resources__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.75rem;
}

.wp-resources-section .cta-actions {
  margin: 0;
}

.wp-resources-section .cta-actions a {
  color: var(--active-header-color);
  gap: 1.25rem
}

@media (max-width: 767px) {
  .wp-resources-section .cta-actions a > span {
    display: none;
  }
}

.wp-resources-section .wp-resources__title {
  font-size: 1.625rem;
  font-family: var(--headline-font-family);
  margin: 0;
}

.wp-resources-section .wp-resources__arrow-link {
  color: var(--colors-white);
  text-decoration: none;
}

.wp-resources-section .wp-resources__arrow {
  width: 21px;
  height: auto;
}

.wp-resources-section .wp-resources__cards {
  display: grid;
  gap: 1.5rem;
  color: var(--colors-black);
 }

.wp-resources-section .wp-resources__card {
  background-color: var(--colors-white);
  border-radius: 0.75rem;
  overflow: hidden;
  color: var(--colors-black);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  gap: 20px;
}

.wp-resources-section .wp-resources__card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
}

.wp-resources-section .wp-resources__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wp-resources-section .wp-resources__card:hover .wp-resources__card-image img {
  transform: scale(1.05);
}

.wp-resources-section .wp-resources__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  text-transform: uppercase;
}

.wp-resources-section .wp-resources__card-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(192, 192, 192, 0.25);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.22px;
}

.wp-resources-section .wp-resources__card-tag--secondary {
  background-color: rgba(var(--active-accent-color-rgb), 0.30);
}

.wp-resources-section .wp-resources__card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.wp-resources-section .wp-resources__card-title {
  font-size: 1.26rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  color: var(--colors-black);
  margin: 0;
}

.wp-resources-section .wp-resources__card-details {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
}

.wp-resources-section .wp-resources__card-separator {
  margin: 0 0.5rem;
}

.wp-resources-section .btn.btn-link.wp-resources__read-more {
  justify-content: flex-start;
}

.wp-resources-section .wp-resources__nav {
  display: none;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: center;
}

.wp-resources-section .wp-resources__nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--colors-white);
  text-decoration: none;
  font-size: var(--font-size-lg);
}

.wp-resources-section .wp-resources__nav-link svg {
  width: 1.5625rem;
  height: 1.5625rem;
}

.wp-resources-section .wp-resources__nav-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .wp-resources-section .wp-resources__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wp-resources-section .wp-resources__cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .wp-resources-section .wp-resources__cards {
      flex-direction: row;
      flex-wrap: wrap;
  }

  .wp-resources-section .wp-resources__card {
      flex: 1;
      min-width: 300px;
  }
  
  .wp-resources-section .wp-resources__card-image {
      height: 220px;
  }
  
  .wp-resources-section .wp-resources__card-title {
      font-size: 1.5625rem;
  }
}

@media (min-width: 1024px) {
  .wp-resources-section.container {
      padding: 0 3.125rem;
  }

  .wp-resources-section .wp-resources__cards {
      flex-wrap: nowrap;
  }

  .wp-resources-section .wp-resources__nav {
      display: flex;
  }

  .wp-resources-section .wp-resources__title {
      font-size: 2.5rem;
  }

  .wp-resources-section .wp-resources__arrow {
      width: 44px;
  }
  
  .wp-resources-section .wp-resources__card-image {
      height: 240px;
  }

  .wp-resources-section .wp-resources__card {
    padding: 40px;
  }
}

/* Alt layout */
.wp-resources-section .wp-resources__card-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wp-resources-section .wp-resources__card.is-alt-layout .info-bar {
  align-items: center;
  flex-wrap: nowrap;
}

.wp-resources-section .wp-resources__card.is-alt-layout .info-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.wp-resources-section .wp-resources__card.is-alt-layout .info-bar span {
  font-size: 1rem;
  color: var(--active-text-color);
}

.wp-resources-section .wp-resources__card.is-alt-layout .info-bar > span:first-child {
  flex: 1;
}

/* ----------------------------- */
/* Component: wpTestimonialCarousel  */
/* ----------------------------- */

.wp-testimonial-carousel {
  --carousel-gap: var(--container-padding);
  /* border-bottom: 1px solid rgba(var(--active-accent-color-rgb), 0.30); */
}

@media (min-width: 768px) {
  .wp-testimonial-carousel {
    --carousel-gap: calc(var(--container-padding) / 2);
  }
  
  .wp-testimonial-carousel .testimonial-carousel-wrapper {
    margin: 0 calc(var(--carousel-gap) * -1);
  }  
}

.wp-testimonial-carousel .testimonial-carousel .item {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0 var(--carousel-gap);
}

@media (min-width: 768px) {
  .wp-testimonial-carousel .testimonial-carousel .item {
    width: 50%;
    padding: 0 var(--carousel-gap);
  }  
}

@media (min-width: 1024px) {
  .wp-testimonial-carousel .testimonial-carousel .item {
    width: 33.333%;
  }  
}

.wp-testimonial-carousel .testimonial-carousel .item > * {
  flex: 1;
}

.wp-testimonial-carousel .testimonial-carousel .item .item-inner {
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.30);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .wp-testimonial-carousel .testimonial-carousel .item .item-inner {
    padding: 1.75rem;
  }  
}

.wp-testimonial-carousel .flickity-page-dots {
  display: none;
}

.wp-testimonial-carousel .wp-content-heading-wrapper + .testimonial-carousel-wrapper {
  margin-top: 2.5rem;
}

.wp-testimonial-carousel .headline {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--active-accent-color);
}

.wp-testimonial-carousel .wysiwyg * {
  font-size: 1rem;
}

.wp-testimonial-carousel .stars {
  display: flex;
  gap: 1px;
  color: var(--colors-yellow-400);
  align-items: center;
}

.wp-testimonial-carousel .stars svg {
  width: 12px;
  height: 12px;
}

.wp-testimonial-carousel .carousel-nav {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .wp-testimonial-carousel .carousel-nav {
    margin-top: 1rem;
  }  
}

.wp-testimonial-carousel .carousel-nav button {
  outline: 0;
  color: rgba(var(--active-accent-color-rgb), 0.25);
}

.wp-testimonial-carousel .carousel-nav :focus-visible {
  outline: 1px
}

.wp-testimonial-carousel .carousel-nav button:hover {
  color: var(--active-accent-color-alt);
}

.wp-testimonial-carousel .carousel-nav svg {
  width: 60px;
  height: 60px;
}

/* ----------------------------- */
/* Component: wpFaq              */
/* ----------------------------- */

.wp-faq .wp-content-heading-wrapper + .faqs-wrapper {
  margin-top: 2rem;
}

.wp-faq .content {
  padding-inline: var(--container-padding);
}  

@media (min-width: 768px) {
  .wp-faq .content {
    padding-inline: 0;
  }  
}

.wp-faq .tab-nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
}

.wp-faq .tab-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.wp-faq .tab-nav {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  scroll-snap-type: x mandatory;
  min-width: max-content;
  position: relative;
}

@media (min-width: 768px) {
  .wp-faq .tab-nav {
    gap: 1.5rem;
  }  
}

.wp-faq .tab-nav::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--active-accent-color-rgb-alt), 0.1);
}

.wp-faq .tab-nav li {
  line-height: 1;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.wp-faq .tab-nav a {
  display: block;
  padding: 1.2rem 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  box-shadow: inset 0 -5px 0 0 transparent;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 calc(var(--section-padding) / 2);
}

@media (min-width: 768px) {
  .wp-faq .tab-nav a {
    padding: 1.2rem 0.75rem;
    margin: 0;
  }  
}

.wp-faq .tab-nav .active a {
  color: var(--active-accent-color);
  box-shadow: inset 0 -5px 0 0 var(--active-accent-color);
}

.wp-faq .tab-pane {
  display: none;
  width: 100%;
}

.wp-faq .tab-content {
  position: relative;
}

.wp-faq .tab-pane.active {
  display: block;
}

.wp-faq .tab-inner {
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wp-faq .tab-content.nav-showing .tab-inner {
  padding-top: 2rem
}

@media (min-width: 768px) {
  .wp-faq .tab-inner {
    padding: 0;
  } 

  .wp-faq .tab-content.nav-showing .tab-inner {
    padding-top: 3rem
  }
}

.wp-faq .question-item {
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.3);
  padding: 0;
  border-radius: var(--border-radius-lg);
  gap: 0;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-faq .question-item.open,
.wp-faq .question-item:hover {
  border-color: rgba(var(--active-accent-color-rgb), 1);
  box-shadow: inset 0 0 0 1px var(--active-accent-color);
}

.wp-faq .question-item .headline {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--body-font-family);
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
}

@media (min-width: 768px) {
  .wp-faq .question-item .headline {
    font-size: 1.2rem;
  }  
}

@media (min-width: 1400px) {
  .wp-faq .question-item .headline {
    font-size: 1.3rem;
  }  
}

.wp-faq .question-item.open .headline {
  padding-bottom: 0.5rem;
}

.wp-faq .question-item .headline span {
  flex: 1;
}

.wp-faq .question-item .headline svg {
  width: 35px;
  height: 35px;
  color: rgba(var(--active-accent-color-rgb-alt), 0.3);
  transition: transform 0.2s ease;
  position: relative;
}

.wp-faq .question-item.open .headline svg {
  transform: rotate(180deg);
  top: -3px;
}

.wp-faq .question-item .desc {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, transform 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 2rem;
}

.wp-faq .question-item.open .desc {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding: 0 2rem 2rem;
}


/* -------------------------------------------- */
/* Component: wpScheduleConsultationFormBanner  */
/* -------------------------------------------- */

.wp-schedule-consultation-form-banner .wp-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wp-schedule-consultation-form-banner .wp-container > * {
  flex: 1;
}

.wp-schedule-consultation-form-banner .wysiwyg,
.wp-schedule-consultation-form-banner .wysiwyg a {
  font-size: var(--font-size-sm);
}

@media (min-width: 1024px) {
  .wp-schedule-consultation-form-banner .wp-container {
    gap: 5rem;
    flex-direction: row;
  }  

  .wp-schedule-consultation-form-banner .wp-container > .content-wrapper {
    flex: 2;
  }
}

@media (min-width: 1400px) {
  .wp-schedule-consultation-form-banner .wp-container {
    gap: 6rem;
  }  
}

.wp-schedule-consultation-form-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.wp-schedule-consultation-form-banner .content-wrapper.add-bottom-padding {
  padding-bottom: var(--section-padding);
}

.wp-schedule-consultation-form-banner .consultation-form {
  margin-top: 1.5rem;
}

.wp-schedule-consultation-form-banner .img-wrap {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .wp-schedule-consultation-form-banner .img-wrap img {
    max-height: 400px;
  }
}

/* ----------------------------- */
/* Newsletter                    */
/* ----------------------------- */

.wp-newsletter {
  width: 100%;
  border-top: 1px solid rgba(var(--active-accent-color-rgb), 0.2);
}

.wp-newsletter .wp-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.wp-newsletter .wp-container > * {
  flex: 1;
}

.wp-newsletter .wp-container > .logo-wrap img {
  width: 190px;
  height: auto;
}

.wp-newsletter .wp-container > .newsletter-wrap {
  flex: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wp-newsletter .wp-container > .newsletter-wrap .heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wp-newsletter .terms,
.wp-newsletter .terms a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--active-text-color);
  line-height: 1.25;
}

.wp-newsletter .terms-end,
.wp-newsletter .terms-end a {
  font-size: 0.8rem;
}

.wp-newsletter .terms a {
  text-decoration: underline;
}

.wp-newsletter .terms a:hover {
  text-decoration: none;
}

.wp-newsletter .headline {
  font-size: 1.4rem;
  color: var(--colors-blue-800);
}

.wp-newsletter .wp-container > .newsletter-wrap .form-fields {
  margin: 0;
}

.wp-newsletter .wp-container > .newsletter-wrap .form-fields .field {
  flex: unset;
}

.wp-newsletter .wp-container > .newsletter-wrap .form-fields > .field:first-child {
  flex: 1;
}

.wp-newsletter .wp-container > .newsletter-wrap button {
  width: auto;
}

.wp-newsletter .wp-container > .newsletter-wrap .form-fields + .wysiwyg {
  margin-top: 0.5rem;
}

.wp-newsletter .block__social-links ul {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .wp-newsletter {
    border-top: 0;
  }
  
  .wp-newsletter .wp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: center;
  }

  .wp-newsletter .headline {
    font-size: 1.3rem;
  }

  .wp-newsletter .wp-container > .logo-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .wp-newsletter .wp-container > .block__social-links {
    grid-column: 2;
    grid-row: 1;
  }

  .wp-newsletter .wp-container > .newsletter-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid rgba(var(--active-accent-color-rgb), 0.2);
    padding-top: var(--section-padding-sm);
    margin-top: calc(var(--section-padding-sm) / 2);
  }

  .wp-newsletter .block__social-links ul {
    justify-content: flex-end;
  }

  .wp-newsletter .block__social-links a {
    width: 2.5rem;
    height: 2.5rem;
  }

  .wp-newsletter .block__social-links a img {
    width: 24px;
  }
}

/* ----------------------------- */
/* Featured Article              */
/* ----------------------------- */

.wp-featured-article__container.wp-container {
  padding: 30px 50px 0;
  position: relative;
}

.wp-featured-article__container .crumbs {
  margin-bottom: 10px;
}

.wp-featured-article__content-wrapper {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 50px 0;
}

.wp-featured-article__grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  align-items: flex-start;
  grid-gap: 20px 30px;
}

.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark {
  background-color: var(--colors-white);
  color: var(--colors-black);
}

.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .wp-resource-card-title,
.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .wp-featured-article__meta,
.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .wp-featured-article__excerpt,
.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .wp-featured-article__tag:not(.wp-featured-article__tag--gray) {
  color: var(--colors-black);
}

.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .wp-featured-article__read-more {
  color: var(--active-accent-color-link);
}

.wp-featured-article__grid .wp-resource-card.wp-resource-card__dark .arrow-link::after {
  filter: unset;
}

.wp-featured-article__header {
  margin-bottom: 18px;
}

.wp-featured-article__title {
  color: var(--active-text-color);
  font-family: var(--headline-font-family);
  font-size: 5.875rem;
  font-weight: var(--font-weight-bold);
  line-height: 3.125rem;
  margin: 0 0 38px;
}

.wp-featured-article__category-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wp-featured-article__category-title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: var(--font-weight-medium);
  text-transform: capitalize;
}

.wp-featured-article__description {
  margin-bottom: 20px;
}

.wp-featured-article__nav {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.wp-featured-article__nav .cta-actions {
  margin-top: 0;
  flex-direction: row;
}

.wp-featured-article__nav .btn-link {
  text-transform: uppercase;
  font-size: 1.5rem;
}

.wp-featured-article__nav span.btn-link {
  cursor: initial;
}

.wp-featured-article__nav .btn-link:not(:last-child)::after {
  content: '|';
  display: block;
  color: var(--colors-black);
  margin-left: 0.5rem;
}

.wp-featured-article__nav-arrows {
  display: flex;
  margin-left: 10px;
  color: var(--colors-grey-100);
}

.wp-featured-article__nav-arrow:nth-child(2) {
  color: var(--brand-ruby);
}

.wp-featured-article__description p {
  margin-bottom: 0;
  font-size: var(--font-size-lg);
}

.wp-resources__search-container {
  position: relative;
  width: 100%;
  margin-left: auto;
}

.wp-resources__search-input {
  width: 100%;
  font-size: var(--font-size-base);
  outline: none;
  display: flex;
  padding: 15px 25px;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  border: 1px solid var(--colors-grey-45);
  background: var(--colors-white);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  font-family: var(--body-font-family);
}

.wp-resources__search-button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.wp-featured-article__section-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  margin: 30px 020px;
  display: none;
  text-align: center;
}

.wp-resource-card {
  background-color: var(--colors-white);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  height: 100%;
}

.wp-resource-card.wp-resource-card__dark {
  background-color: var(--primary-blue);
}

.wp-resource-card.wp-resource-card__dark .wp-resource-card-title,
.wp-resource-card.wp-resource-card__dark .wp-featured-article__meta,
.wp-resource-card.wp-resource-card__dark .wp-featured-article__read-more,
.wp-resource-card.wp-resource-card__dark .wp-featured-article__excerpt {
  color: var(--colors-white);
}

.wp-resource-card.wp-resource-card__dark .wp-featured-article__tag--gray {
  background-color: var(--colors-white);
}

.wp-resource-card.wp-resource-card__dark .arrow-link::after {
  filter: brightness(10000%);
}



.wp-resource-card.wp-resource-card--grid {
  gap: 20px;
}

.wp-resource-card--large {
  grid-column: 1;
  grid-row: 1 / span 3;
  height: 100%;
}

.wp-featured-article-module .wp-resource-card {
  padding: 40px;
}

.wp-featured-article-module .wp-resource-card:not(.wp-resource-card--large) {
  padding-top: 20px;
  height: auto;
  justify-content: center;
}

.wp-featured-article-module .wp-resource-card:not(.wp-resource-card--large) .wp-resource-card-title {
  max-height: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.wp-featured-article__content > article:not(.wp-resource-card--large) {
  grid-column: 2;
}

.wp-featured-article__tags {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.wp-featured-article__tag {
  padding: 12px 24px;
  border-radius: 20px;
  font-size: var(--font-size-xsmall);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  background-color: var(--active-muted-color);
}

.wp-featured-article__tag--gray {
  background: var(--brand-muted-gray);
}

.wp-featured-article__tag.brand-technology {
  color: var(--colors-white);
}

.wp-featured-article__download {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
}

.wp-resource-card-title {
  font-size: 1.56rem;
  font-weight: var(--font-weight-medium);
  font-family: var(--headline-font-family);
  margin: 0;
  line-height: 1.3;
  color: var(--colors-black);
}

.wp-resource-card--large .wp-resource-card-title {
  font-size: 2.25rem;
}

.wp-featured-article__meta {
  display: flex;
  align-items: center;
  font-size: var(--font-size-xsmall);
  font-weight: var(--font-weight-bold);
  margin-top: 5px;
}

.wp-resource-card--large .wp-featured-article__meta {
  margin-top: 15px;
}

.wp-featured-article__meta-separator {
  margin: 0 8px;
}

.wp-featured-article__excerpt {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--colors-grey-600);
  font-family: var(--body-font-family);
}

.wp-featured-article__image-container {
  margin-top: 5px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  will-change: transform;
  flex-grow: 1;
}

.wp-resource-card__grid-image-container.grid-image-container {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  width: 100%;
  display: flex;
}

.wp-featured-article__image, .wp-resource-card__grid-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.wp-featured-article__read-more {
  margin-top: auto;
}

.wp-resource-card .wp-featured-article__tags {
  gap: 0.5rem;
}

.wp-resource-card .wp-featured-article__tag {
  padding: 12px 20px;
}

@media (min-width: 1440px) {
  .wp-featured-article__content-wrapper {
    padding: 50px;
  }
}

@media (max-width: 1024px) {
  .wp-featured-article__title {
      font-size: 3.125rem;
      margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .wp-featured-article__container.wp-container {
      padding: 30px 20px;
  }

  .wp-featured-article__content-wrapper {
      padding: 20px 0 0;
  }

  .wp-featured-article__grid {
      grid-template-columns: 1fr;
      grid-gap: 20px;
  }

  .wp-resource-card {
      padding: 20px;
  }
  
  .wp-resource-card--large {
      grid-column: auto;
      grid-row: auto;
  }

  .wp-featured-article__content > article:not(.wp-resource-card--large) {
      grid-column: auto;
  }
  
  .wp-featured-article__search-container {
      margin: 0;
      max-width: 100%;
  }
  
  .wp-featured-article__title {
      font-size: 3.125rem;
      line-height: 1.2;
  }

  .wp-featured-article__category-title {
    font-size: 1.75rem;
  }
  
  .wp-featured-article__section-title {
      display: block;
  }

  .wp-featured-article__nav .btn-link {
      font-size: 1rem;
  }

  .wp-featured-article__tags--gray {
      gap: 5px;
  }

  .wp-resource-card--large .wp-resource-card-title,
  .wp-resource-card-title {
      font-size: 20px;
  }

  .wp-resource-card:not(.wp-resource-card--large) {
      height: auto;
  }

  .wp-featured-article__image-container {
      order: -1
  }

  .wp-featured-article__nav .btn-link:not(:last-child)::after {
    margin-left: 0;
  }

  .wp-featured-article__nav-arrows svg {
    width: 18px;
  }
}

@media (max-width: 480px) {    
  .wp-featured-article__description p {
      font-size: var(--font-size-base);
  }
}

@media (max-width: 320px) {    
  .wp-featured-article__nav-arrows {
    display: none;
  }

  .cta-actions {
    flex-wrap: wrap;
  }
}

/* ----------------------------- */
/* Component: wpExploreCenter  */
/* ----------------------------- */
.wp-explore-center__header {
  text-align: center;
  margin-bottom: 20px;
}

.wp-explore-center__title {
  font-size: 2.125rem;
  font-weight: var(--font-weight-medium);
  margin: 0;
  line-height: 1.35;
}

.wp-explore-center__grid {
  display: grid;
  gap: 20px;
}

.wp-explore-center__card {
  border-radius: 1rem;
  padding: 60px 40px 45px;
  color: var(--colors-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-color: var(--active-accent-color);
}

.wp-explore-center__card-title {
  font-size: 2.125rem;
  font-weight: var(--font-weight-medium);
  font-family: var(--headline-font-family);
  margin: 0;
  line-height: 1.2;
  color: var(--colors-white);
  min-height: 80px;
}

.wp-explore-center__card-description p {
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
  color: var(--colors-white);
  padding: 0 7px;
}

.wp-explore-center__card-icon {
  position: absolute;
  right: 30px;
}

.wp-explore-center__consultation {
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #D9D9D9;
  border-radius: 1rem;
  text-align: center;
  padding: 40px 40px 45px;
}

.wp-explore-center__consultation-title {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.wp-explore-center__consultation-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto 2px;
}

.wp-explore-center__consultation .cta-actions {
  margin-top: 0;
}

@media (min-width: 1400px) {
  .wp-explore-center-wrapper {
      padding: 0 75px;
  }
}

@media (min-width: 769px) {
  .wp-explore-center {
      padding: 25px 0 30px;
  }

  .wp-explore-center__grid {
      grid-template-columns: repeat(3, 1fr);
  }

  .wp-explore-center__card {
      min-height: 440px;
  }
}

@media (max-width: 1278px) {
  .wp-explore-center__grid {
      grid-template-columns: 1fr 1fr;
      justify-items: center;
  } 

  .wp-explore-center__card {
      max-width: 410px;
  }
}

@media (max-width: 768px) {
  .wp-explore-center {
      padding: 20px 0 30px;
      background: radial-gradient(circle at 100% 100%, var(--colors-green-100) 0%, var(--colors-blue-90) 30%, var(--colors-blue-100) 60%, var(--colors-green-100) 100%);
  }

  .wp-explore-center__grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .wp-explore-center__card {
      width: 100%;
      max-width: unset;
      min-height: auto;
      padding: 20px;
      flex-direction: row;
      align-items: center;
  }

  .wp-explore-center__card-title {
      font-size: 22px;
      margin-bottom: 0;
      min-height: unset;
  }

  .wp-explore-center__card-description {
      display: none;
  }

  .wp-explore-center__card-button {
      background-color: transparent !important;
      padding: 0;
      color: var(--colors-white) !important;
      justify-content: space-between;
      border-color: transparent !important;
  }

  .wp-explore-center__card-button.arrow-link::after {
      filter: brightness(10000%);
  }

  .wp-explore-center__card-button-text {
      visibility: hidden;
      width: 0;
  }

  .wp-explore-center__card-icon {
      display: none;
  }

  .wp-explore-center__consultation {
      margin-top: 15px;
      padding: 20px;
  }
}

/* ----------------------------- */
/* Component: wpContactForm  */
/* ----------------------------- */

.wp-contact-form .wp-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .wp-contact-form .wp-container {
    flex-direction: row;
    align-items: center;
  }  
}

.wp-contact-form .wp-container > :first-child {
  flex: 1;
}

.wp-contact-form .content-wrapper {
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.25);
  border-radius: 0 5rem;
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .wp-contact-form .content-wrapper {
    padding: 3rem;
  }  
}

@media (min-width: 1400px) {
  .wp-contact-form .content-wrapper {
    padding: 4rem;
  }  
}

.wp-contact-form .content-wrapper .form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wp-contact-form .form-wrapper .action-row {
  margin-top: 1.5rem;
}

.wp-contact-form .form-wrapper .action-row > :first-child {
  padding-right: 1.5rem;
}

.wp-contact-form .side-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.wp-contact-form .side-wrapper > * {
  flex: 1;
}

@media (min-width: 1024px) {
  .wp-contact-form .side-wrapper {
    flex-direction: column;
    gap: 4rem;
    min-width: 320px;
  }  
}

.wp-contact-form .side-wrapper h2 {
  margin: 0 0 0.5rem;
}

.wp-contact-form .side-wrapper .button {
  display: inline-flex;
  height: auto;
  text-align: left;
  justify-content: flex-start;
  padding: 0;
  font-size: .875rem;
  text-transform: lowercase;
  font-weight: 300;
  line-height: 1.5;
  width: auto;
}

/* ----------------------------- */
/* Component: wpContactFormV2  */
/* ----------------------------- */

.wp-contact-form-v2 .wp-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .wp-contact-form-v2 .wp-container {
    gap: 4rem;
    flex-direction: row;
  }
}

.wp-contact-form-v2 .wp-container > * {
  flex: 1;
}

.wp-contact-form-v2 .wp-container > .img-wrap {
  position: relative;
  margin: 0 auto;
}

.wp-contact-form-v2 .wp-container > .img-wrap .icon {
  position: absolute;
  color: var(--active-accent-color-alt);
}

.wp-contact-form-v2 .wp-container > .img-wrap .icon-1 {
  top: 30%;
  left: 40px;
}

.wp-contact-form-v2 .wp-container > .img-wrap .icon-2 {
  top: var(--section-padding);
  right: 0;
}

.wp-contact-form-v2 .wp-container > .img-wrap > div {
  height: 100%;
  /* padding-top: var(--section-padding); */
  display: flex;
  align-items: flex-end;
}

.wp-contact-form-v2 .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1.65;
}

.wp-contact-form-v2 .content-wrapper.apply-content-padding {
  padding: var(--section-padding) 0;
}

.sub-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sub-text-blocks * {
  margin: 0 !important;
  font-size: 1.4rem;
  color: var(--active-accent-color);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .wp-contact-form-v2 .wp-container > .img-wrap .icon-1 svg,
  .wp-contact-form-v2 .wp-container > .img-wrap .icon-2 svg {
    width: 100%;
  }

  .wp-contact-form-v2 .wp-container > .img-wrap .icon-1 {
    width: 11%;
  }

  .wp-contact-form-v2 .wp-container > .img-wrap .icon-2 {
    max-width: 20%;
    top: 5%;
    right: 5%;
  }
}

@media (min-width: 1024px) {
  .sub-text-blocks {
    row-gap: 2rem;
    column-gap: 5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    flex-direction: row;
  }
}

@media (min-width: 1400px) {
  .sub-text-blocks * {
    font-size: 1.5rem;
  }
}

.sub-text-blocks h1,
.sub-text-blocks h2,
.sub-text-blocks h3,
.sub-text-blocks h4,
.sub-text-blocks h5,
.sub-text-blocks h6 {
  color: var(--active-header-color);
  font-weight: 500;
}

.sub-text-blocks .btn-link {
  justify-content: flex-start;
  text-align: left;
}

/* ----------------------------- */
/* Component: wpLeadershipGrid  */
/* ----------------------------- */

.wp-leadership-grid {
  --grid-spacing: 1rem;
}

.wp-leadership-grid .wp-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wp-leadership-grid .person-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 calc((var(--grid-spacing) / 2) * -1);
}

.wp-leadership-grid .person-wrapper .person-item {
  flex: 0 1 calc(100% - var(--grid-spacing));
  max-width: calc(100% - var(--grid-spacing));
  display: flex;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: var(--border-radius-md);
}

.bg-white .wp-leadership-grid .person-wrapper .person-item {
  border: 1px solid rgba(var(--active-accent-color-rgb), 0.15);
}

.wp-leadership-grid .person-wrapper .person-item .img-wrap {
  width: 40%;
}

.wp-leadership-grid .person-wrapper .person-item .img-wrap > div {
  height: 100%;
}

.wp-leadership-grid .person-wrapper .person-item .img-wrap > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .wp-leadership-grid .person-wrapper .person-item {
    flex-direction: column;
  }  
  
  .wp-leadership-grid .person-wrapper .person-item .img-wrap {
    width: 100%;
  }
}

.wp-leadership-grid .person-wrapper .person-item .details-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wp-leadership-grid .person-wrapper .person-item .details {
  padding: 1.5rem;
  padding-bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

@media (min-width: 768px) {
  .wp-leadership-grid .person-wrapper .person-item .details {
    text-align: center;
  }
}

.wp-leadership-grid .person-wrapper .person-item .details .wysiwyg > * {
  font-size: 0.875rem;
  color: var(--active-header-color);
  font-weight: 500;
}

.wp-leadership-grid .person-wrapper .person-item .cta-actions {
  margin-top: auto;
  padding: 1.5rem;
}

@media (max-width: 767px) {
  .wp-leadership-grid .person-wrapper .person-item .cta-actions .btn {
    height: var(--elm-size-sm);
    min-height: var(--elm-size-sm);
  }
}

@media (min-width: 768px) {
  .wp-leadership-grid .person-wrapper .person-item {
    flex: 0 1 calc(33.333% - var(--grid-spacing));
    max-width: calc(33.333% - var(--grid-spacing));
  }
}

@media (min-width: 1024px) {
  .wp-leadership-grid .person-wrapper .person-item {
    flex: 0 1 calc(25% - var(--grid-spacing));
    max-width: calc(25% - var(--grid-spacing));
  }
}

@media (min-width: 1400px) {
  .wp-leadership-grid .person-wrapper .person-item {
    flex: 0 1 calc(20% - var(--grid-spacing));
    max-width: calc(20% - var(--grid-spacing));
  }
}

/* ----------------------------- */
/* Component: wpResourcesGrid  */
/* ----------------------------- */
.wp-resources-grid {
  scroll-margin-top: 100px;
}

.wp-resources-grid .resource-hidden {
  display: none;
}

.wp-resources-grid .wp-resources-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px 25px;
  grid-auto-flow: dense;
}

.wp-resources-grid .wp-resources-grid__items > * {
  min-width: 0;
  max-width: 100%;
}

.wp-resources-grid .wp-resources-grid__items .wp-resource-card__featured {
  grid-column: span 2;
}

.wp-resources-grid .wp-resources-grid__items .wp-resource-card__featured .wp-resource-card {
  background-color: var(--active-accent-color);
}

.wp-resources-grid.wp-resources-grid__load-more {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.wp-resources-grid .wp-resources-grid__header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
}

.wp-resources-grid .wp-resources-grid__header .wp-resources-grid__count {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  font-family: var( --headline-font-family);
}

.wp-resources-grid .wp-resources-grid__title {
  margin: 0;
}

.wp-resources-grid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-resources-grid__filters .btn-filter {
  background-color: var(--active-muted-color);
  color: var(--text-color);
  padding: 11px 28px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-size: var(--font-size-xsmall);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  border: 2px solid transparent;
}

.wp-resources-grid__filters .btn-filter.is-hidden {
  display: none;
}

.wp-resources-grid__filters .btn-filter[data-category-slug="technology"] {
  color: var(--colors-white);
}

.wp-resources-grid__filters .btn-filter.btn-format {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
}

.wp-resources-grid__filters .btn-filter.btn-transparent {
  background-color: transparent;
  color: var(--text-color);
  text-transform: none;
}

.wp-resources-grid__filters .btn-filter.btn-grey {
  background: rgba(192, 192, 192, 0.25);
  color: var(--text-color);
}

.wp-resources-grid__filters .btn-filter.is-active {
  border-color: var(--colors-grey-600);
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.wp-resources-grid__filters .btn-filter.is-active::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M368 368L144 144M368 144L144 368'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.wp-resources-grid__actions .wp-resources-grid__filters-toggle-button .filter-count {
  margin-left: 5px;
}

.wp-resources-grid__load-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.wp-resources-grid .wp-resources-grid__search-message {
  margin: 0.5rem 0;
  font-size: 1.375rem;
}

.wp-resources-grid .wp-resources-grid__search-message .search-query {
  font-weight: var(--font-weight-bold);
}

.wp-resources-grid .wp-resources-grid__search-message-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wp-resources-grid .wp-resources-grid__search-message-clear {
  width: 30px;
}

.wp-resources-grid .wp-resources-grid__search-message-clear:hover {
  color: var(--brand-ruby);
}

.wp-resources-grid .wp-resources-grid__search-message.wp-resources-grid__search-message--hidden {
  visibility: hidden;
}

.wp-resources-grid__items {
  position: relative;
}

.wp-resources-grid__items.loading:after {
  content: '';
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, rgb(238 238 238 / 60%) 8%, rgb(221 221 221 / 60%) 18%, rgb(238 238 238 / 60%) 33%);
  height: 100%;
  width: 100%;
  position: absolute;
  padding-top: 50px;
  -webkit-backface-visibility: hidden;
  left:0;
  right:0;
  top:0;
  bottom:0;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 100em 0;
  }
}

@media (max-width: 768px) {
  .wp-resources-grid .wp-resources-grid__items {
      grid-template-columns: 1fr;
  }

  .wp-resources-grid__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
      margin-bottom: 20px;
  }

  .wp-resources-grid .wp-resources-grid__items .wp-resource-card__featured {
    grid-column: span 1;
  }
}

/* ----------------------------- */
/* Component: wpResourcesFilters  */
/* ----------------------------- */
.site_header.has-alert-bar ~ main .wp-sticky-bar {
  top: 39px;
}

.site_header.has-promo-banner ~ main .wp-sticky-bar {
  top: calc(var(--promo-height) - 1px);
}

.wp-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 1;
}

.wp-sticky-bar.is-stuck {
  z-index: 99;
}

.wp-resources-grid__filters-wrapper {
  --bg-color: var(--colors-white);
  --text-color: var(--colors-black);
  --font-size: 1.375rem;
  background-color: var(--bg-color);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 33px;
  position: relative;
}

.wp-resources-grid__filters-wrapper.wp-featured-article__filters {
  --bg-color: var(--primary-blue);
  --text-color: var(--colors-white);
  --font-size: var(--font-size-lg);
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: 0;
  padding: 20px 50px;
}

.wp-resources-grid__filters-wrapper .wp-resources__search-container {
  max-width: 450px;
}

.wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources__search-container,
.wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources-grid__actions {
  max-width: 280px;
}

.wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources__search-input {
  color: var(--colors-black);
}

.wp-resources-grid__filters-wrapper .wp-resources__search-container {
  margin-left: 0;
}

.wp-resources-grid__actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
/* Filter and Sort Controls */
.wp-resources-grid__filters-sort-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-resources-grid__filters-sort-controls > * {
  flex: 1;
}

.wp-resources-grid__filters-wrapper .toggle-button:focus {
  outline: none;
}

.wp-resources-grid__filters-wrapper .toggle-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: var(--text-color);
  font-size: var(--font-size);
}

.wp-resources-grid__filters-wrapper .toggle-button .icon {
  margin-left: 8px;
  font-size: 20px;
}

.wp-resources-grid__filters-title {
  color: var(--text-color);
  font-family: var(--headline-font-family);
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5rem;
  text-align: center;
}

/* Sort Dropdown */
.wp-resources-grid__filters-wrapper .sort-button {
  position: relative;
}

.wp-resources-grid__filters-wrapper .sort-dropdown {
  position: absolute;
  top: 95%;
  left: 10%;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--colors-grey-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 220px;
  z-index: 10;
  margin-top: 5px;
  display: none;
  padding: 20px 25px;
  gap: 20px;
  flex-direction: column;
}

.wp-resources-grid__filters-wrapper .sort-dropdown.has-no-filters {
  left: 1%;
}

.wp-resources-grid__filters-wrapper .sort-dropdown.active {
  display: flex;
}

.wp-resources-grid__filters-wrapper .sort-option button {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

.wp-resources-grid__filters-wrapper .sort-option button:hover {
  background-color: #f8f8f8;
}

.wp-resources-grid__filters-wrapper .sort-icon {
  margin-right: 10px;
  font-size: 18px;
}

/* Filters Panel */
.wp-resources-grid__filters-wrapper .filters-panel {
  display: none;
  border-top: 1px solid var(--colors-grey-100);
  padding-top: 32px;
  margin-top: 14px;
  gap: 30px;
}

.wp-resources-grid__filters-wrapper .filters-panel.active {
  display: flex;
}

.wp-resources-grid__filters-wrapper .filter-category {
  margin-bottom: 10px;
  max-width: 40%;
}

.wp-resources-grid__filters-wrapper .category-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text-color);
}

.wp-resources-grid__filters-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


@media (max-width: 768px) {
  .site_header.has-promo-banner.open ~ main .wp-sticky-bar {
    z-index: 5;
  }

  .wp-sticky-bar {
    position: fixed;
    top: unset !important;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: transparent !important;
  }

  .wp-resources-grid__filters-wrapper.wp-featured-article__filters {
    margin-bottom: 0;
    padding: 10px 30px;
    max-height: 80vh;
    overflow: scroll;
    border-radius: 20px 20px 0 0;
  }

  .wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources-grid__filters-title {
    display: none;
  }

  .wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources-grid__filters-sort-controls {
    align-items: center;
  }

  .wp-resources-grid__filters-wrapper.wp-featured-article__filters .wp-resources__search-container {
    max-width: 100%;
  }

  .wp-resources-grid__filters-wrapper {
      padding: 20px;
  }

  .wp-resources-grid__filters-sort-controls {
      flex-direction: column;
      align-items: flex-start;
  }

  .wp-resources-grid__filters-wrapper .filters-panel {
      flex-direction: column;
      gap: 20px;
  }

  .wp-resources-grid__filters-wrapper .filter-category {
      max-width: 100%;
      margin-bottom: 0;
  }

  .wp-resources-grid__filters-wrapper .filter-category:not(:last-child) {
      border-bottom: 1px solid var(--colors-grey-100);
      padding-bottom: 20px;
  }

  .wp-resources-grid__filters {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
  
  .wp-resources-grid__filters .btn-filter {
      width: 100%;
  }

  .wp-resources-grid__filters .btn-filter.btn-transparent {
      padding: 0;
      width: auto;
  }

  .wp-resources-grid__filters-wrapper .sort-dropdown {
      position: initial;
      width: 100%;
      margin-top: 20px;
  }
}

/* ----------------------------- */
/* Component: wpMap     
/* ----------------------------- */


.wp-map .wp-layout-wrapper .desc strong {
  color: var(--active-header-color);
  font-weight: 500;
}


.wp-map .wp-layout-wrapper .desc h4 {
  line-height: 1.37
}

.wp-map .wp-layout-wrapper .desc a {
  font-weight: 500;
}

.wp-map .wp-layout-wrapper > .img-wrap img {
  border-radius: var(--border-radius-lg);
}

/* ----------------------------- */
/* Component: article-layout  */
/* ----------------------------- */
.article-layout--new .content-block {
  align-items: flex-start;
  padding: 0;
}

.article-layout--new .crumbs {
  flex-wrap: wrap;
  width: 100%;
}

.article-layout.article-layout--new .crumbs {
  padding: 30px 0 10px;
}

body.resources.article #page-wrapper.article-layout.article-layout--new .content-block.padding--default .block--stats, body.resources.article #page-wrapper.article-layout.article-layout--new .content-block.padding--default .block:not(.block--form) {
 padding-top: 1px;
 padding-bottom: 0;
}

body.resources.article #page-wrapper.article-layout.article-layout--new .content-block.padding--default .block.block--article-banner {
  padding-top: 40px;
}

.article-layout--new .crumbs li:last-child a {
  color: var(--brand-accent-blue-sky);
}

.article-layout--new .block--split-large {
  width: 100%;
  padding: 0 50px;
}

.article-layout--new .stickySidebar {
  gap: 1.875rem;
}

.article-layout--new .stickySidebar > .block--column:first-of-type {
  order: 2;
  top: 145px;
}

.article-layout--new .stickySidebar > .block--start {
  border: none;
}

.article-layout--new .block--split-large .block--column>* {
  max-width: 100%;
}

.article-layout--new .block--intro-byline .block__content {
  margin: 2rem 0;
}

main .article-layout--new .container {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .article-layout--new .block--split-large {
    padding: 0 20px;
  }

  .article-layout--new .stickySidebar {
    display: flex;
  }
}

body.resources.article #page-wrapper.article-layout.article-layout--new #related-resources .container {
  margin-top: 0;
}

.article-layout--new .block--split-large .block--column .block__media {
  width: 100%;
  margin: 0;
}

.article-layout.article-layout--new + .content-block.article-layout--new {
  padding-top: 0;
}

@media (max-width: 768px) {
  .article-layout--new .crumbs {
    padding: 20px 0 10px;
  }
}

@media (min-width: 768px) {
  .single-column.article-layout--new .block--simple,
  .single-column.article-layout--new .block--intro {
      width: 83.333333%;
      padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .single-column.article-layout--new .block--simple,
  .single-column.article-layout--new .block--intro {
      width: 75%;
      padding: 0 4rem;
  }
}

@media (min-width: 1200px) {
  .single-column.article-layout--new .block--simple,
  .single-column.article-layout--new .block--intro {
      width: 65%;
      max-width: 990px;
  }
}

.article-layout--new .block__content-wrapper .block__content ul li:before {
  color: inherit;
}

body.resources.article #page-wrapper.article-layout.article-layout--new {
  max-width: 100%;
}

/* ----------------------------- */
/* Component: article-banner  */
/* ----------------------------- */

  /* Article Banner Container */
.wp-article-banner {
  width: 100%;
  margin: 40px auto 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.wp-article-banner.narrow {
  max-width: 900px;
}

/* Title */
.wp-article-banner__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  margin: 0;
  color: var(--colors-black);
}

/* Subtitle */
.wp-article-banner__subtitle p {
    font-size: var(--font-size-lg);
    margin: 0;
}

/* Meta information */
.wp-article-banner__meta {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: var(--font-size-xsmal);
    font-weight: var(--font-weight-bold);
}

.wp-article-banner__date,
.wp-article-banner__read-time {
  font-weight: var(--font-weight-bold);
}

.wp-article-banner__separator {
    margin: 0 8px;
}

/* Social links */
.wp-article-banner__social {
    display: flex;
    margin-left: auto;
    gap: 1rem;
    margin-left: 40px;
}

.wp-article-banner__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--colors-white);
    background-color: var(--brand-ruby);
    text-decoration: none;
    transition: background-color 0.2s;
    padding: 6px;
}

.wp-article-banner__social-link:hover {
    background-color: var(--colors-red-500);
}

/* Image container */
.wp-article-banner__image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.wp-article-banner__image-container img {
  width: 100%;
}

.wp-article-banner__image {
    width: 100%;
    height: auto;
    display: block;
}

.wp-article-banner__default {
  padding-bottom: 0!important;
}

.wp-article-banner__default + section {
  padding-top: 10px;
}

@media (max-width: 1024px) {
  .wp-article-banner {
    padding: 20px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .wp-article-banner__title {
      font-size: 28px;
  }
  
  .wp-article-banner__meta {
      flex-wrap: wrap;
  }
  
  .wp-article-banner__social {
      margin-left: 0;
      margin-top: 12px;
      width: 100%;
  }
}

@media (max-width: 480px) {
    .wp-article-banner__title {
        font-size: 24px;
    }
    
    .wp-article-banner__tags {
        flex-wrap: wrap;
    }
}

/* ----------------------------- */
/* Component: wpRelatedResources  */
/* ----------------------------- */

.wp-related-resources {
  padding: 50px;
  /* background-color: var(--active-bg); */
  background-color: var(--colors-blue-800);
}

.wp-related-resources__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.wp-related-resources__heading-link {
  display: none;
  margin-top: 5px;
}

.wp-related-resources h2 {
  font-size: 2.125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  color: var(--colors-white);
  margin: 0 0 1.875rem;
}

.wp-related-resources .wp-related-resources__grid {
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .wp-related-resources .wp-related-resources__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wp-related-resources {
    padding: 30px 20px;
  }

  .wp-related-resources h2 {
    margin-bottom: 1.56rem;
    font-size: 1.625rem;
  }

  .wp-related-resources__heading-link {
    display: block;
  }

  .wp-related-resources .wp-related-resources__grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------- */
/* Component: Article sidebar  */
/* ----------------------------- */
.article-layout--new {
  margin-bottom: 2rem;
}

.article-layout--new .stickySidebar > .block--column:first-of-type {
  padding: 0;
  background: initial;
  box-shadow: none;
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .block__content-wrapper {
  border-radius: 15px;
  padding: 40px 0;
  margin-bottom: 30px;
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .block__content-wrapper,
.article-layout--new .stickySidebar > .block--column:first-of-type .wp-join-list-sidebar,
.article-layout--new .stickySidebar > .block--column:first-of-type .wp-sidebar-download-section {
  background: radial-gradient(circle at 100% 100%, var(--colors-green-100) 0%, var(--colors-blue-90) 30%, var(--colors-blue-100) 60%, var(--colors-green-100) 100%);
}

.article-layout--new .stickySidebar.block--split-large .block--simple {
  margin: 0;
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block__content .waypointToggle {
  margin-left: 0;
}

.article-layout--new .stickySidebar > .block--column:first-of-type h2 {
  padding: 0 40px;
  font-family: var(--headline-font-family);
  font-size: 1.3125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.23;
  margin: 0 0 10px;
}

.article-layout--new .stickySidebar > .block--column:first-of-type h2,
.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a,
.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a.currently {
  color: var(--colors-black);
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a {
  transform: none;
  padding: 10px 55px;
  position: relative;
  margin-bottom: 0;
  font-size: var(--font-size-small);
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a.currently {
  transform: none;
  font-weight: var(--font-weight-bold);
  background: rgba(255, 255, 255, 0.50);
  color: var(--brand-accent-blue-sky);
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a::before {
  content: "•";
  background: transparent;
  position: absolute;
  left: 35px;
  top: calc(50% - 14px);
}

.article-layout--new .stickySidebar > .block--column:first-of-type .block__content a.currently::before {
  content: "▸";
}

@media (max-width: 1024px) {
  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .block__content-wrapper {
    margin-bottom: 0;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple {
    position: fixed;
    top: initial;
    bottom: -1px;
    margin-bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 77px;
    overflow: hidden;
    background: var(--colors-blue-800);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    transition: max-height 0.3s ease;
    z-index: 1000;
    padding: 14px 20px 11px;
    border-radius: 20px 20px 0px 0px;
  }

  /* Estado abierto: deja que crezca lo que necesites */
  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple.is-open {
    max-height: unset;      /* O el valor que necesites para mostrar todo */
  }

  /* Dale estilo al “header” que siempre se ve */
  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .sidebar-header {
    height: 77px;
    line-height: 48px;
    padding: 0 1rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 6.747px;
    margin-bottom: 15px;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .sidebar-header span {
    font-size: var(--font-size-base);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    color: var(--colors-white);
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple.is-open {
    padding: 20px 20px 15px;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple.is-open .sidebar-header {
    height: auto;
  }

  /* Icono flecha (puedes usar tu propio SVG o font-icon) */
  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple .sidebar-header .chevron {
    transition: transform 0.3s ease;
    display: block;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple.is-open .sidebar-header .chevron {
    transform: rotate(180deg);
    margin-bottom: 15px;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type .block.block--simple.is-open .sidebar-header-title {
    display: none;
  }

  .article-layout--new .stickySidebar > .block--column:first-of-type {
    order: initial;
    position: static;
  }
}
/* ----------------------------- */
/* Component: wpJoinListSidebar  */
/* ----------------------------- */

.wp-join-list-sidebar {
  padding: 30px;
  width: 100%;
  border-radius: 15px;
}

.wp-join-list-sidebar .wp-join-list-sidebar__content {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: var(--colors-white);
  border-radius: 15px;
}

.wp-join-list-sidebar .wp-join-list-sidebar__title {
  display: flex;
  width: 90%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.wp-join-list-sidebar .wp-join-list-sidebar__title h2 {
  font-size: 1.875rem;
  font-weight: var(--font-weight-medium);
  line-height: 0.8;
  margin: 0 !important;
}

.wp-join-list-sidebar .wp-join-list-sidebar__title p {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin: 0 !important;
}

.wp-join-list-sidebar .wp-join-list-sidebar__form,
.wp-join-list-sidebar .wp-join-list-sidebar__form form,
.wp-join-list-sidebar .wp-join-list-sidebar__form .btn {
  width: 100%;
}

.wp-join-list-sidebar .wp-join-list-sidebar__form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

@media (max-width: 768px) {
  .wp-join-list-sidebar {
    margin: 0 -20px;
    width: 100vw;
    max-width: unset !important;
    border-radius: 0;
  }
}

/* ----------------------------- */
/* Component: wpPostHighlightCard  */
/* ----------------------------- */
.wp-post-highlight-card__container {
  background-color: var(--colors-blue-800);
  border-radius: 20px;
  padding: 40px 60px;
  color: var(--colors-white);
  position: relative;
  margin: 20px auto 40px;
}

.wp-post-highlight-card__heading {
  font-size: 2.125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  margin: 0 0 13px;
  max-width: 90%;
  color: var(--colors-white);
}

.wp-post-highlight-card__text {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0 0 13px;
  max-width: 80%;
}

.wp-post-highlight-card__text p {
    margin: 0;
    color: var(--colors-white);
}

.wp-post-highlight-card__container .btn-link {
    color: var(--colors-white);
}

.wp-post-highlight-card__decoration {
    position: absolute;
    top: 70px;
    right: -25px;
    width: 66px;
    height: 42px;
}

@media (max-width: 768px) {
  .wp-post-highlight-card__container {
    padding: 42px 30px 32px;
  }

  .wp-post-highlight-card__heading {
    font-size: 1.75rem;
    max-width: 100%;
    text-align: center;
  }

  .wp-post-highlight-card__text {
    font-size: var(--font-size-lg);
    max-width: 100%;
    text-align: center;
  }

  .wp-post-highlight-card__decoration {
    width: 80px;
    height: 80px;
    top: 16px;
    right: unset;
    left: -12px;
  }

  .wp-post-highlight-card__container .cta-actions {
    display: flex;
    justify-content: center;
  }
}

/* ----------------------------- */
/* Component: wpPostQuote  */
/* ----------------------------- */

.wp-post-quote {
  padding: 40px 14px;
  margin: 40px auto;
  border-width: 5px 0;
  border-color: var(--colors-grey-45);
  width: 100%;
}

.wp-post-quote p,
.wp-post-quote p a {
  color: var(--colors-green-600);
  font-family: var(--headline-font-family);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  margin: 0 !important;
}

.wp-post-quote p a {
  text-decoration: underline;
}

/* ----------------------------- */
/* Component: wpPostCalloutBanner  */
/* ----------------------------- */
.wp-post-callout-banner {
  margin: 1.5rem 0;
  border-radius: 15px;
  border: 1px solid rgba(73, 197, 177, 0.25);
  display: flex;
  width: 100%;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wp-post-callout-banner .wp-post-callout-banner__description {
  max-width: 85%;
}

.wp-post-callout-banner .wp-post-callout-banner__description p {
  color: var(--colors-grey-600);
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin: 0 0 1rem !important;
}

/* ----------------------------- */
/* Component: wpPostHero  */
/* ----------------------------- */

.wp-post-hero {
  background: var(--active-bg);
  position: relative;
  overflow: hidden;
}

.wp-post-hero__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 50px 0 35px;
  position: relative;
}

.wp-post-hero__content {
  flex: 1.5;
  min-width: 300px;
}

.wp-post-hero__image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.wp-post-hero__image-wrapper {
  position: relative;
  max-width: 400px;
}

.wp-post-hero__image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.wp-post-hero__content-wrapper {
  max-width: 95%;
}

.wp-post-hero__title {
  font-size: 3.375rem;
  line-height: 1.1;
  margin: 0 0 52px;
  color: var(--colors-black);
}

.wp-post-hero__subtitle {
  font-size: 2.125rem;
  margin-bottom: 27px;
  color: var(--colors-black);
  font-family: var(--body-font-family);
  font-weight: var(--font-weight-bold);
}

.wp-post-hero__description {
  margin-bottom: 15px;
  font-size: var(--font-size-lg);
  line-height: 1.5;
}

.wp-post-hero__description p {
  margin: 0;
}

.wp-post-hero__complementary-content {
  margin: 30px 0 0;
  display: none;
}

.wp-post-hero__form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wp-post-hero__form-headline {
  font-size: var(--font-size-lg);
  margin: 0;
}

.wp-post-hero__form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.wp-post-hero__name-fields {
  display: flex;
  gap: 10px;
}

.wp-post-hero__input {
  border-color: rgba(0, 0, 0, 0.20);
}

.wp-post-hero__disclaimer p,
.wp-post-hero__disclaimer a,
.wp-post-hero__disclaimer > * {
  font-size: var(--font-size-xsmall);
  margin: 0;
}

.wp-post-hero__submit .wp-post-hero__submit-text-mobile {
  display: none;
}

.wp-post-hero__form .success p {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--colors-blue-800);
}

@media (max-width: 768px) {
  .wp-post-hero__container {
      flex-direction: column;
      gap: 20px;
      padding: 36px 0;
  }

  .wp-post-hero__content {
      order: 1;
      min-width: unset;
  }

  .wp-post-hero__image-container {
      order: 3;
      margin: auto;
      min-width: unset;
  }

  .wp-post-hero__title {
      font-size: 1.875rem;
      margin-bottom: 13px;
  }

  .wp-post-hero__subtitle {
      font-size: 1.4rem;
      line-height: 2;
      margin-bottom: 12px;
  }

  .wp-post-hero__description,
  .wp-post-hero__form-headline {
      display: none;
  }

  .wp-post-hero__content-wrapper {
      max-width: 100%;
  }

  .wp-post-hero__complementary-content {
      display: block;
  }

  .wp-post-hero__disclaimer {
      order: 2;
  }

  .wp-post-hero__form {
      order: 2;
  }

  .wp-post-hero__form .btn {
      margin: 15px 0;
  }

  .wp-post-hero__form-fields input[type='email'] {
      order: 2;
  }

  .wp-post-hero__name-fields {
      flex-direction: column;
  }

  .wp-post-hero__button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      border-radius: 0;
      z-index: 100;
      padding: 15px;
  }

  .wp-post-hero__button span {
      margin-right: 5px;
  }

  .wp-post-hero__image-wrapper {
      max-width: 250px;
  }

  .wp-post-hero__disclaimer p {
      text-align: center;
      padding: 0 12px;
  }

  .wp-post-hero__submit {
      width: 100%;
  }

  .wp-post-hero__submit .wp-post-hero__submit-text-mobile {
      display: inline-block;
  }

  .wp-post-hero__submit .wp-post-hero__submit-text {
      display: none;
  }
  
  .wp-post-hero__submit .arrow-link::after {
      transform: rotate(90deg);
  }
}

/* ----------------------------- */
/* Component: wpClientStories  */
/* ----------------------------- */
.wp-client-stories-section {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.wp-client-stories-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
}

.wp-client-stories-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

.wp-client-stories-item {
  display: flex;
  flex-direction: column;
  width: 31%;
  padding: 25px;
  background-color: white;
  border-radius: 15px;
  justify-content: flex-start;
  gap: 1rem;
}

.wp-client-stories-item.position-top .wp-client-stories-item-inner,
.wp-client-stories-item.position-middle .wp-client-stories-item-title,
.wp-client-stories-item.position-bottom .wp-client-stories-tags {
    order: 1;
}

.wp-client-stories-item.position-top .wp-client-stories-tags,
.wp-client-stories-item.position-middle .wp-client-stories-item-inner,
.wp-client-stories-item.position-bottom .wp-client-stories-item-title {
    order: 2;
}

.wp-client-stories-item.position-top .wp-client-stories-item-title,
.wp-client-stories-item.position-middle .wp-client-stories-tags,
.wp-client-stories-item.position-bottom .wp-client-stories-item-inner {
    order: 3;
}

.wp-client-stories-item.is-selected .wp-client-stories-item-inner {
    transform: scale(1.1);
    margin: 0 14px;
}

.wp-client-stories-item-inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  height: 400px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .wp-client-stories-item-inner {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .wp-client-stories-item {
    padding: 30px;
  }

  .wp-client-stories-item-inner {
    height: 320px;
  }
}

@media (min-width: 1140px) {
  .wp-client-stories-item-inner {
    height: 450px;
  }
}

.wp-client-stories-item-inner .video-wrap,
.wp-client-stories-item-inner .img-wrap {
  height: 100%;
  border-radius: var(--border-radius-lg);
}

.wp-client-stories-item-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 41%, #000 100%);
    padding: 40px 1.85rem 1.85rem 1.85rem;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.wp-client-stories-item-text-overlay * {
  margin: 0;
}

.wp-client-stories-item-text-overlay h3,
.wp-client-stories-item-text-overlay p {
    color: var(--colors-white);
}

.wp-client-stories-item-text-overlay h3 {
    font-size: 1.375rem;
}

.wp-client-stories-item-text-overlay p {
    font-size: var(--font-size-base);
}

.wp-client-stories-item .wp-client-stories-item-title,
.wp-client-stories-item .wp-client-stories-item-title a {
  font-family: var(--headline-font-family);
  font-weight: var(--font-weight-medium);
  line-height: 1.25;
  margin: 0;
  color: var(--active-header-color);
}

.wp-client-stories .wp-client-stories-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  text-transform: uppercase;
}

.wp-client-stories .wp-client-stories-tag {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  background: rgba(192, 192, 192, 0.25);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.22px;
}

.wp-client-stories .wp-client-stories-tag--secondary {
  background-color: rgba(var(--active-accent-color-rgb), 0.30);
}

@media (max-width: 1024px) {
  .wp-client-stories-item {
    width: 47%;
  }
}

@media (max-width: 768px) {
  .mobile-fixed-btn {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px;
      background: var(--active-bg);
      z-index: 1000;
  }
}

/* ----------------------------- */
/* Component: wpImageWithContent  */
/* ----------------------------- */

.wp-image-with-content.wp-container {
  padding: 0;
}

.wp-image-with-content__container {
  display: grid;
  gap: 50px;
}

.wp-image-with-content__content {
padding: 20px 20px 30px;
}

.wp-image-with-content__image {
display: none;
width: 100%;
height: auto;
overflow: hidden;
}

.wp-image-with-content__img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.wp-image-with-content__heading {
  font-size: 1.875rem;
  margin: 0 0 20px;
  line-height: 1.2;
}

.wp-image-with-content__text p {
  margin: 0 0 15px;
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.wp-image-with-content__container .wp-featured-article__tags {
  margin-bottom: 20px;
}

@media screen and (min-width: 767px) {
  .wp-image-with-content__container {
    grid-template-columns: 1fr 1fr;
  }

  .wp-image-with-content__content {
    flex: 1;
    padding: 30px 0 90px 50px;
  }

  .wp-image-with-content__image {
    display: block;
    flex: 1;
    height: 100%;
  }

  .wp-image-with-content__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wp-image-with-content__heading {
    font-size: 2.5rem;
  }

  .wp-image-with-content__text p {
    font-size: var(--font-size-lg);
  }

  .wp-featured-article__tags {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .wp-client-stories-item {
    width: 100%;
    padding: 20px;
  }

  .wp-client-stories-item.position-bottom .wp-client-stories-item-inner,
  .wp-client-stories-item.position-top .wp-client-stories-item-inner,
  .wp-client-stories-item.position-middle .wp-client-stories-item-inner {
    order: 1;
  }

  .wp-client-stories-item.position-bottom .wp-client-stories-tags,
  .wp-client-stories-item.position-top .wp-client-stories-tags,
  .wp-client-stories-item.position-middle .wp-client-stories-tags {
    order: 2;
  }

  .wp-client-stories-item.position-bottom .wp-client-stories-item-title,
  .wp-client-stories-item.position-top .wp-client-stories-item-title,
  .wp-client-stories-item.position-middle .wp-client-stories-item-title {
    order: 3;
  }
}

/* ----------------------------- */
/* Component: wpLoginCtaGrid    
/* ----------------------------- */

.wp-login-cta-grid-contaniner .headline {
  margin-bottom: 1.75rem;
}
    
.wp-login-cta-grid-contaniner .cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wp-login-cta-grid-contaniner .cta-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.wp-login-cta-grid-contaniner .cta-card-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

.wp-login-cta-grid-contaniner .cta-buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wp-login-cta-grid-contaniner .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border: 1px solid var(--brand-primary);;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: black;
}

.wp-login-cta-grid-contaniner .cta-button a {
  white-space: nowrap;
}

.wp-login-cta-grid-contaniner .cta-arrow {
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
  flex: 0 0 14px;
  transition: transform 0.3s ease;
}

.wp-login-cta-grid-contaniner .cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .wp-login-cta-grid-contaniner .cta-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------- */
/* Component: wpIconBlocks    
/* ----------------------------- */

.wp-icon-blocks .blocks-wrapper {
  --icon-size: 70px;
  --item-padding: 2rem;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wp-icon-blocks .blocks-wrapper.has-icons {
  padding-top: calc(var(--icon-size) / 2);
  gap: calc(var(--icon-size) / 1.25);
}

.wp-icon-blocks .blocks-wrapper.inner-block[class*="bg-"].has-icons {
  padding-top: calc(var(--inner-block-padding) + var(--icon-size) / 2);
}

.wp-icon-blocks .block-item {
  flex: 1;
  border: 1px solid rgba(var(--active-accent-color-rgb-alt), 0.15);
  border-radius: var(--border-radius-lg);
  padding: var(--item-padding);
  text-align: center;
  position: relative;
}

.wp-icon-blocks .block-item.has-icon {
  padding-top: calc(var(--item-padding) + calc(var(--icon-size) / 2));
}

.wp-icon-blocks .block-item .desc.wysiwyg ul {
  text-align: left;
}

@media (min-width: 1024px) {
  .wp-icon-blocks .blocks-wrapper {
    flex-direction: row;
    gap: 1.5rem;
  }

  .wp-icon-blocks .blocks-wrapper.has-icons {
    gap: 1.5rem;
  }
}

@media (min-width: 1400px) {
  .wp-icon-blocks .blocks-wrapper {
    --item-padding: 2.5rem;
  }
}

.wp-icon-blocks .block-item .img-wrap {
  text-align: center;
  height: var(--icon-size);
  width: var(--icon-size);
  background: var(--active-accent-color);
  color: var(--active-bg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999em;
  position: absolute;
  top: calc((var(--icon-size) / 2) * -1);
  left: calc(50% - (var(--icon-size) / 2));
}

.wp-icon-blocks .block-item .img-wrap svg {
  width: calc(var(--icon-size) / 1.75);
  height: calc(var(--icon-size) / 1.75);
}

/* ----------------------------- */
/* Component: wpLogin    
/* ----------------------------- */

.wp-login .block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.wp-login .block-wrapper > * {
  flex: 1;
}

.wp-login .block-wrapper .img-wrap,
.wp-login .block-wrapper .img-wrap img {
  border-radius: var(--border-radius-lg);
}

.wp-login .ending-actions {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wp-login .ending-actions .btn-link {
  gap: 0.4rem;
}

.wp-login .ending-actions .icon {
  width: 20px;
  height: 20px;
  color: var(--active-header-color);
  flex-shrink: 0;
}

.wp-login .ending-actions a span {
  color: var(--active-header-color);
}

@media (max-width: 767px) {
  .wp-login .ending-actions a span {
    white-space: unset;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .wp-login .block-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 1400px) {
  .wp-login .block-wrapper {
    gap: 4rem;
  }
}

/* ----------------------------- */
/* Component: wpSidebarDownloadSection    
/* ----------------------------- */

.article-layout--new .stickySidebar > .block--column .wp-sidebar-download-section {
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.article-layout--new .stickySidebar > .block--column .wp-sidebar-download-section .wp-sidebar-download-section__content h2 {
  padding: 0;
}

.article-layout--new .stickySidebar > .block--column .wp-sidebar-download-section .wp-sidebar-download-section__content p {
  font-size: 0.9375rem;
}

.wp-sidebar-download-section .arrow-link::after {
  filter: brightness(10000%);
  transform: rotate(90deg);
}

.wp-sidebar-download-section .btn {
  max-width: 100%;
  width: 100%;
}

body.resources.article #page-wrapper.article-layout.article-layout--new .content-block.padding--default .block.copy-block {
  padding-bottom: 4rem;
}

/* ----------------------------- */
/* Component: wpJoinEmailListBanner    
/* ----------------------------- */
.wp-join-email-banner {
  background: var(--active-bg);
  padding: 120px 20px 70px;
}

.wp-join-email-banner .wp-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 1;
}

.wp-join-email-banner .wp-container::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: var(--colors-white);
  border-radius: 16px;
  z-index: -1;
}

.wp-join-email-banner__image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-join-email-banner__image {
  max-width: 100%;
  height: auto;
  display: block;
}

.wp-join-email-banner__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wp-join-email-banner__title {
  font-size: 3.375rem;
  font-weight: var(--font-weight-medium);
  margin: 0 0 5px;
  color: var(--colors-black);
}

.wp-join-email-banner__description {
  font-size: var(--font-size-lg);
  color: var(--colors-grey-600);
  margin: 0 0 5px;
}

.wp-join-email-banner__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .wp-join-email-banner .wp-container::before {
      height: 100%;
  }
}

@media (max-width: 768px) {
  .wp-join-email-banner {
    flex-direction: column;
    padding-top: 37px;
    padding-bottom: 37px;
  }

  .wp-join-email-banner__image-container {
    display: none;
  }

  .wp-join-email-banner__content {
    padding: 32px 0;
  }

  .wp-join-email-banner__title {
    font-size: 1.875rem;
    text-align: center;
  }

  .wp-join-email-banner__description {
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .wp-join-email-banner__content {
    margin-top: 70px;
  }
}

/* ----------------------------- */
/* Component: wpCompareTable    
/* ----------------------------- */

.wp-compare-table .bg-white {
  --active-accent-color: var(--colors-red-400);
  --active-accent-color-alt: var(--brand-denim);
}

.wp-compare-table {
  --cell-bg-standout: var(--brand-lightest-grey);
  --cell-bg: #fcfcfc;
  --cell-border: rgba(0, 0, 0, 0.065);
  --cell-bg-empty: #fff;
  --cell-padding: 1.25rem;
  --cell-label-svg-size: 44px;

  --popular-pill-height: 46px;

  font-family: var(--body-font-family);
}

.wp-compare-table .wp-content-heading-wrapper {
  padding-inline: var(--inner-block-padding);
  /* margin-bottom: var(--inner-block-padding); */
  margin-bottom: 1rem;
}

.wp-compare-table .inner-block[class*="bg-"] {
  overflow: visible;
  padding-inline: 0;
}

.wp-compare-table .wp-content-heading-wrapper .key {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--active-header-color);
  font-family: var(--body-font-family);
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .wp-compare-table .wp-content-heading-wrapper .key {
    margin-top: 0.5rem;
    display: none;
  }
}

.wp-compare-table .key strong {
  font-size: 1.1rem;
}

.wp-compare-table .key div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wp-compare-table .key div svg {
  color: var(--active-accent-color-alt);
}

.wp-compare-table .key div span {
  font-size: 0.9rem;
}

.wp-compare-table .comparison .row.header .key {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  color: var(--active-header-color);
  font-family: var(--body-font-family);
  margin-bottom: 0.25rem;
  padding-block: calc(var(--cell-padding) * 1.5);
  text-align: left;
}

.wp-compare-table .comparison .row.header .key.va-center {
  justify-content: center;
}

.wp-compare-table .comparison .row.header .key.va-top {
  justify-content: flex-start;
}

@media (min-width: 1400px) {
  .wp-compare-table .comparison .row.header .key {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .wp-compare-table .comparison .row.header .key.va-center {
    align-items: center;
  }
  
  .wp-compare-table .comparison .row.header .key.va-top {
    align-items: flex-start;
  }
}

.wp-compare-table .comparison {
  padding-inline: var(--inner-block-padding-x);
}

.wp-compare-table .comparison .row {
  gap: 0.5rem;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) repeat(3, 1fr);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .row {
    border-bottom: 1px solid var(--cell-border);
    gap: 0;
  }

  .wp-compare-table .comparison {
    padding-left: calc(var(--inner-block-padding-x) + var(--cell-label-svg-size));
  }  
}

@media (min-width: 1140px) {
  .wp-compare-table .comparison .row {
    grid-template-columns: minmax(15rem, 1fr) repeat(3, 1fr);
  }
}

.wp-compare-table .comparison .row.row-headline {
  border-bottom: 0;
}

.wp-compare-table .comparison.header {
  box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--cell-border);
}

.wp-compare-table .comparison.header.is-sticky {
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  background: var(--cell-bg-empty);
  padding-block: var(--cell-padding);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison.header.is-sticky {
    /* background: var(--active-bg); */
    padding-bottom: 0;
  }  
}

.wp-compare-table .comparison.header .row {
  border-bottom: 0;
}

.wp-compare-table .comparison .cell {
  text-align: center;
  position: relative;
  height: 100%;
}

.wp-compare-table .comparison .cell .inner-cell {
  border: 1px solid var(--cell-border);
  padding: var(--cell-padding);
  height: 100%;
  color: var(--active-header-color);
  margin: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  border-radius: var(--border-radius-lg);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .cell .inner-cell {
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    margin: 0 0.25rem;
  }
}

.wp-compare-table .comparison.body .cell:not(.label) .inner-cell {
  color: var(--active-accent-color-alt);
}

.wp-compare-table .comparison .cell:first-child .inner-cell {
  margin-left: 0;
}

.wp-compare-table .comparison .cell:last-child .inner-cell {
  margin-right: 0;
}

.wp-compare-table .comparison .cell.label .inner-cell {
  border: 0;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-left: 0;
}

.wp-compare-table .comparison.header .row .cta-mobile {
  display: none;
}

.wp-compare-table .comparison.header .row.mobile-cta {
  grid-template-columns: repeat(1, 1fr);
}

.wp-compare-table .comparison.header.is-stuck .desc {
  display: none !important;
}

.wp-compare-table .comparison.header.is-stuck .cta-actions {
  margin-top: 0;
}

.wp-compare-table .comparison .cell.label .inner-cell.cell-type-headingLabel svg {
  width: var(--cell-label-svg-size);
  height: var(--cell-label-svg-size);
  object-fit: contain;
  color: var(--active-accent-color);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .cell.label .inner-cell.cell-type-headingLabel svg {
    position: absolute;
    left: calc(var(--cell-label-svg-size) * -1.4);
  }

  .wp-compare-table .comparison.header .row.mobile-cta {
    display: none;
  }
}

.wp-compare-table .comparison .row.brand-default .cell.label .inner-cell svg {
  color: var(--active-header-color);
}

.wp-compare-table .comparison .cell:not(.label) .inner-cell {
  background: var(--cell-bg);
}

.wp-compare-table .comparison .cell .inner-cell.spotlight {
  background-color: var(--cell-bg-standout);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .cell .inner-cell.spotlight {
    box-shadow: 0 1px 0 0 var(--cell-border); /* darken row border */
  } 
  
  .wp-compare-table .comparison.body .row:first-child .cell .inner-cell {
    padding-top: calc(var(--cell-padding) * 2);
  }
}

/* Row Header */
.wp-compare-table .comparison .row.header .cell .inner-cell {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--cell-border);
  flex-direction: column;
  align-items: center;
}

.wp-compare-table .comparison .row.header .cell .inner-cell:not(.spotlight) {
  background-color: var(--cell-bg);
}

.wp-compare-table .comparison .row.header .cell .inner-cell .desc,
.wp-compare-table .comparison .row.header .cell .inner-cell .cta-actions {
  display: none;
}

.wp-compare-table .comparison .row.header .cell .inner-cell .desc {
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.wp-compare-table .comparison .row.header .cell .inner-cell .desc strong {
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .row.header .cell .inner-cell {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border-bottom: 0;
    justify-content: flex-end;
  }

  .wp-compare-table .comparison .row.header .cell .inner-cell .cta-actions {
    display: block;
  }

  .wp-compare-table .comparison .row.header .cell .inner-cell .desc {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .wp-compare-table .comparison .row.header .cell .inner-cell {
    padding-bottom: calc(var(--cell-padding) * 1.5);
  }
}

/* Row headline */
.wp-compare-table .comparison .row.row-headline .cell .inner-cell {
  border-top: 0;
  border-bottom: 0;
  padding-bottom: calc(var(--cell-padding) / 1.5);
}

.wp-compare-table .comparison .row + .row.row-headline .cell .inner-cell {
  padding-top: calc(var(--cell-padding) * 2);
}

/* Row End */
@media (min-width: 1024px) {
  .wp-compare-table .comparison.body .row:last-child {
    border-bottom: 0;
  }
  
  .wp-compare-table .comparison.body .row:last-child .cell:not(.label) .inner-cell {
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    border-bottom: 1px solid var(--cell-border);
    box-shadow: none;
  }
}

/* Type */
.wp-compare-table .comparison .headline,
.wp-compare-table .comparison p {
  margin: 0;
  color: var(--active-header-color);
}

.wp-compare-table .comparison strong {
  font-weight: 700;
}

.wp-compare-table .comparison .actions {
  margin-top: 0.5rem;
}

.wp-compare-table .comparison p {
  font-size: 1rem;
  line-height: 1.35;
}

.wp-compare-table .comparison p strong {
  color: var(--active-header-color);
}

.wp-compare-table .comparison .headline {
  font-size: 1.25rem;
}

@media (max-width: 1023px) {
  .wp-compare-table .comparison .cta-actions a {
    font-size: 0.8rem;
    gap: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .headline {
    font-size: 1.75rem;
  }
}

@media (min-width: 1400px) {
  .wp-compare-table .comparison .headline {
    font-size: 2.25rem;
  }

  .wp-compare-table .comparison p {
    font-size: 1.1rem;
  }
}

.wp-compare-table .comparison .popular-pill {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 1.125rem;
  background-color: var(--cell-bg);
  border-radius: 9999em;
  font-size: 0.85rem;
  display: none;
  align-items: center;
  margin-bottom: 0.5rem;
  width: min-content;
  max-width: 100%;
  justify-content: center;
  color: var(--active-accent-color-alt);
  line-height: 1.1;
  background-color: var(--active-bg);
  height: var(--popular-pill-height);
}

@media (min-width: 1024px) {
  .wp-compare-table .comparison .popular-pill {
    display: inline-flex;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .wp-compare-table .comparison .popular-pill {
    width: 175px;
  }
}

/* Tooltip Styles */
.wp-compare-table .tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.wp-compare-table .tooltip-icon {
  vertical-align: middle;
  transition: color 0.2s ease;
  cursor: pointer;
}

.wp-compare-table .tooltip-icon:hover,
.wp-compare-table .tooltip-icon:focus {
  color: var(--active-accent-color);
}

.wp-compare-table .tooltip-content {
  display: block;
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: #fff;
  color: var(--active-header-color);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  z-index: 10;
  width: max-content;
  max-width: 550px;
  min-width: 300px;
  border: 1px solid rgba(var(--active-accent-color-rgb-alt2), 0.75);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.wp-compare-table .tooltip-content > *:not(:last-child) {
  margin: 0 0 0.75rem;
}

.wp-compare-table .tooltip-content h1,
.wp-compare-table .tooltip-content h2,
.wp-compare-table .tooltip-content h3,
.wp-compare-table .tooltip-content h4,
.wp-compare-table .tooltip-content h5,
.wp-compare-table .tooltip-content h6 {
  font-weight: 500;
}

.wp-compare-table .tooltip-content * {
  color: var(--active-header-color);
  margin-bottom: 0.25rem;
}

.wp-compare-table .tooltip-content :last-child {
  margin: 0;
}

.wp-compare-table .tooltip-content,
.wp-compare-table .tooltip-content p, 
.wp-compare-table .tooltip-content ul, 
.wp-compare-table .tooltip-content li,
.wp-compare-table .tooltip-content a {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

.wp-compare-table .tooltip-content a {
  text-decoration: underline;
}

.wp-compare-table .tooltip-content ul {
  list-style: disc inside;
}

.wp-compare-table .tooltip-wrapper:hover .tooltip-content,
.wp-compare-table .tooltip-content.active,
.wp-compare-table .tooltip-icon:focus + .tooltip-content,
.wp-compare-table .tooltip-icon.focus-visible + .tooltip-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .wp-compare-table .cell-type-headingLabel {
    font-size: 1.05rem;
  }

  .wp-compare-table .comparison.header {
    box-shadow: none;
    border: 0;
  }

  .wp-compare-table .comparison.header.is-sticky::after {
    content: "";
    height: var(--cell-padding);
    position: absolute;
    bottom: calc(var(--cell-padding) * -1);
    left: 0;
    right: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .wp-compare-table .comparison.header .cell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .wp-compare-table .comparison.header .row .cta-mobile {
    display: none;
  }

  .wp-compare-table .comparison.header .cell .cta-mobile .btn-link {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .wp-compare-table .tooltip-content {
    max-width: 100%;
  }

  .wp-compare-table .comparison .row {
    grid-template-columns: repeat(3, 1fr);
  }  

  .wp-compare-table .comparison .row .cell.label {
    grid-column: 1 / -1;
  }

  .wp-compare-table .comparison .row.header .cell.label {
    display: none;
  }

  .wp-compare-table .comparison .row.row-headline {
    grid-template-columns: repeat(1, 1fr);
  }

  .wp-compare-table .comparison .row.row-headline .cell:not(.label) {
    display: none;
  }

  .wp-compare-table .comparison .row.row-headline .cell.label .inner-cell {
    margin: 0;
    padding-inline: 0;
    padding-bottom: 0;
    flex-direction: row-reverse;
    border-radius: 0;
  }

  .wp-compare-table .comparison .row.row-headline:not(:first-child) .cell.label .inner-cell {
    border-top: 1px solid var(--cell-border);
    padding-top: 0;
    padding-bottom: var(--cell-padding);
    margin-top: calc(var(--cell-padding) * 2);
  }

  .wp-compare-table .comparison .row.row-headline .cell.label strong {
    margin-right: auto;
  }

  .wp-compare-table .comparison .row:not(.row-headline) .cell.label .inner-cell {
    margin: 0;
    text-align: center;
    padding-inline: 0;
    justify-content: center;
    padding-bottom: calc(var(--cell-padding) / 1.5);
    /* padding-top: calc(var(--cell-padding) * 1.5); */
  }

  .wp-compare-table .tooltip-wrapper {
    position: static;
  }

  .wp-compare-table .tooltip-content {
    left: 0;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .wp-compare-table .tooltip-content {
    width: 100%;
  }
}

/* ----------------------------------- */
/* Old component overwrites
/* ----------------------------------- */

#cards .block__card {
  gap: 1.5rem;
  align-items: center;
}

#cards .block__card img {
  height: 135px;
  object-fit: contain;
  object-position: center;
}

.block--cards-quarter .block__card .block__card-content .block__content .callout {
  margin-top: 0;
}

.block--cards-quarter .block__card .block__card-content .block__content .callout,
.block--cards-quarter .block__card .block__card-content .block__content h4 {
  text-align: center;
}