@charset "UTF-8";
/* stylelint-disable */
:root {
  /* colors */
  --brand-grey: #bebebe;
  --white: #fff;
  --light-grey: #efecec;
  --graphite: #3d3b42;
  --dark-grey: #35333a;
  --yellow-dark: #fab900;
  --light-dark-grey: #595858;
  --black: #17161a;
  --shadow-stroke: #0000000d;
  --shadow-stroke-inset: #d1d5db;
  --dark-grey-search-field: #312f36;
  --input-field-border-dark: rgba(255, 255, 255, 0.2);
  --footer-border-light: rgba(53, 51, 58, 0.1019607843);
  /* fixed colors (will not change in dark or inverted modes) */
  --fixed-white: #fff;
  --fixed-dark-grey: #35333a;
  --fixed-brand-yellow: #fab900;
  --light-gray-searchfield: #fcf9f9;
  --overlay-dark: rgba(53, 51, 58, 70%);
  --gradient-dark: linear-gradient(180deg, #35333a00 50%, #35333a 100%);
  --insights-picture-overlay-gradient: linear-gradient(
    180deg,
    rgba(16, 16, 20, 0%) 0%,
    rgba(16, 16, 20, 0%) 25%,
    rgba(16, 16, 20, 28%) 45%,
    rgba(16, 16, 20, 38%) 65%,
    rgba(16, 16, 20, 58%) 72%,
    rgba(16, 16, 20, 75%) 80%,
    rgba(16, 16, 20, 85%) 90%,
    rgba(16, 16, 20, 90%) 100%
  );
  --insights-picture-overlay-gradient-desktop: linear-gradient(
    180deg,
    rgba(16, 16, 20, 0%) 0%,
    rgba(16, 16, 20, 0%) 30%,
    rgba(16, 16, 20, 38%) 45%,
    rgba(16, 16, 20, 75%) 60%,
    rgba(16, 16, 20, 100%) 80%,
    rgba(16, 16, 20, 100%) 100%
  );
  /* dark-mode OR inverted */
  /* dark-mode AND inverted */
  /* fonts */
  --body-font-family: "TWKBurns-Light", TWKBurns-fallback;
  --body-strong-font-family: "TWKBurns-Medium", TWKBurns-fallback;
  --heading-font-family: "TWKBurns-Bold", TWKBurns-fallback;
  --fixed-font-family: "Roboto Mono", menlo, consolas, "Liberation Mono", monospace;
  /* body sizes */
  --text-size-regular: 18px;
  --text-size-small: 16px;
  --text-size-xsmall: 14px;
  --text-size-xxsmall: 12px;
  /* heading sizes */
  --heading-font-size-4xl: 250px;
  --heading-font-size-xxxl: 128px;
  --heading-font-size-3xl: 150px;
  --heading-font-size-xxl: 64px;
  --heading-font-size-xll: 56.74px;
  --heading-font-size-xl: 48px;
  --heading-font-size-l: 40px;
  --heading-font-size-m: 36px;
  --heading-font-size-s: 20px;
  --heading-font-size-xs: 18px;
  /* line heights */
  --body-line-height: 1.6;
  --heading-line-height: 1.2;
  /* text decoration */
  --text-underline-offset: 10px;
  /* font weights */
  --light-font-weight: 300;
  --medium-font-weight: 500;
  --bold-font-weight: 700;
  /* header height */
  --header-height-mobile: 80px;
  --header-height-desktop: 88px;
  --header-height-mobile-adobe: 5rem;
  --header-height-tablet-adobe: 6rem;
  --header-height-desktop-adobe: 5.5rem;
  /* nav height */
  --nav-height: 64px;
  /* border radius */
  --border-radius: 24px;
  /* spacing */
  --spacing-xsmall: 8px;
  --spacing-small: 16px;
  --spacing-medium: 24px;
  --spacing-large: 32px;
  --spacing-xlarge: 36px;
  --spacing-xxlarge: 64px;
  --spacing-xxxlarge: 128px;
  --spacing-xxlarge-percentage: 5%;
}
:root .dark-mode,
:root .inverted {
  --dark-grey: #fff;
  --white: #35333a;
  --yellow-dark: #35333a;
  --light-gray-searchfield: #312f36;
  --footer-border-light: rgba(255, 255, 255, 0.2);
}
:root .dark-mode .inverted {
  --white: #fff;
  --dark-grey: #35333a;
  --yellow-dark: #fab900;
}

/* stylelint-disable */
a.button,
button,
.button {
  font-family: var(--body-font-family);
  font-size: var(--text-size-regular);
  line-height: var(--heading-line-height);
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 7px var(--spacing-small);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  color: var(--fixed-dark-grey);
  background-color: var(--fixed-brand-yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: var(--border-radius);
  gap: var(--spacing-xsmall);
  position: relative;
}
@media (min-width: 1024px) {
  a.button,
  button,
  .button {
    border-radius: clamp(var(--border-radius), 1.5vw, 42px);
  }
}
a.button:hover,
button:hover,
.button:hover {
  background-color: var(--dark-grey);
  color: var(--yellow-dark);
}
a.button.primary,
button.primary,
.button.primary {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
a.button.primary::before,
button.primary::before,
.button.primary::before {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
}
a.button.primary:hover::before,
button.primary:hover::before,
.button.primary:hover::before {
  background-color: var(--yellow-dark);
}
a.button.secondary,
button.secondary,
.button.secondary {
  background-color: unset;
  border: 1px solid;
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
a.button.secondary:hover,
button.secondary:hover,
.button.secondary:hover {
  opacity: 0.5;
}
a.button.light-grey,
button.light-grey,
.button.light-grey {
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
}
a.button.light-grey:hover, a.button.light-grey:focus-visible, a.button.light-grey:focus,
button.light-grey:hover,
button.light-grey:focus-visible,
button.light-grey:focus,
.button.light-grey:hover,
.button.light-grey:focus-visible,
.button.light-grey:focus {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button.small,
button.small,
.button.small {
  font-size: var(--text-size-xsmall);
  padding: 3px 12px;
}
@media (min-width: 1024px) {
  a.button.small,
  button.small,
  .button.small {
    font-size: clamp(14px, 0.7vw, 18px);
  }
}
a.button.arrow-right,
button.arrow-right,
.button.arrow-right {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: unset;
  width: fit-content;
  border: 1px solid;
  color: inherit;
}
a.button.arrow-right::after,
button.arrow-right::after,
.button.arrow-right::after {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-right:hover::after,
button.arrow-right:hover::after,
.button.arrow-right:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-right:focus::after, a.button.arrow-right:hover,
button.arrow-right:focus::after,
button.arrow-right:hover,
.button.arrow-right:focus::after,
.button.arrow-right:hover {
  color: var(--brand-grey);
}
a.button.arrow-down,
button.arrow-down,
.button.arrow-down {
  float: right;
  display: inline-flex;
  color: inherit;
  background-color: unset;
  border: 1px solid;
  justify-content: space-between;
  flex-shrink: 0;
  width: fit-content;
}
a.button.arrow-down::after,
button.arrow-down::after,
.button.arrow-down::after {
  content: "";
  mask-image: url("../icons/arrow-down.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-down:hover::after,
button.arrow-down:hover::after,
.button.arrow-down:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-down:focus::after, a.button.arrow-down:hover,
button.arrow-down:focus::after,
button.arrow-down:hover,
.button.arrow-down:focus::after,
.button.arrow-down:hover {
  color: var(--brand-grey);
}
a.button__category-pill,
button__category-pill,
.button__category-pill {
  font-family: var(--body-strong-font-family);
  float: right;
  display: inline-flex;
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
  padding: 4px 16px;
  height: 40px;
  border: 2px solid transparent;
  line-height: var(--body-line-height);
  width: fit-content;
}
a.button__category-pill::after,
button__category-pill::after,
.button__category-pill::after {
  content: attr(data-count);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--fixed-dark-grey);
  font-size: var(--text-size-xxsmall);
  height: 24px;
  width: 24px;
}
a.button__category-pill:hover,
button__category-pill:hover,
.button__category-pill:hover {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button__category-pill:hover::after,
button__category-pill:hover::after,
.button__category-pill:hover::after {
  border: 2px solid var(--fixed-white);
}
a.button__category-pill--active,
button__category-pill--active,
.button__category-pill--active {
  background-color: var(--dark-grey);
  color: var(--white);
}
a.button__category-pill--active::after,
button__category-pill--active::after,
.button__category-pill--active::after {
  border: 2px solid var(--white);
}

button:disabled,
button:disabled:hover {
  background-color: var(--white);
  cursor: unset;
}

.default-content-wrapper .button-container a {
  text-decoration: none;
}

/*
  * Adds the styles for an animated 'X' button to the element.
  * Exact positioning should be defined in the corresponding element, based on each use-case.
  * @param $pathToButton: the path as url(...) from where the asset should be loaded
 */
/*
  * Hides the default 'X' button added by the Chromium-based browsers on input[type="search"] and makes the input look regular.
*/
@keyframes scale-in-ver-top {
  0% {
    transform: scaleY(0);
    transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes blink {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes floatFade {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
}
@keyframes bannerReveal {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes embed-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
a.link {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 400;
  font-size: var(--text-size-regular);
  line-height: var(--body-line-height);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  color: var(--dark-grey);
  width: fit-content;
  padding: 7px var(--spacing-small);
  cursor: pointer;
  white-space: nowrap;
  gap: var(--spacing-xsmall);
}
a.link:hover {
  color: var(--fixed-brand-yellow);
}
a.link--small {
  font-size: var(--text-size-small);
  font-weight: 300;
  text-decoration-line: underline;
  text-underline-position: from-font;
}
a.link--menu {
  line-height: var(--heading-line-height);
  font-size: var(--heading-font-size-xl);
  font-weight: 300;
}
a.link--agile-consulting {
  padding: 8px 0;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  font-size: var(--text-size-xsmall);
}
a.link--agile-consulting:hover, a.link--agile-consulting:focus {
  border-top: 1px solid var(--dark-grey);
  border-bottom: 1px solid var(--dark-grey);
  color: var(--dark-grey);
  padding: 10px 0;
}
a.link--bold {
  font-family: var(--heading-font-family);
  font-size: var(--heading-font-size-m);
  font-weight: 700;
  line-height: var(--heading-line-height);
  text-decoration-line: underline;
  text-underline-position: from-font;
}

/* stylelint-disable */
/* stylelint-disable */
a.button,
button,
.button {
  font-family: var(--body-font-family);
  font-size: var(--text-size-regular);
  line-height: var(--heading-line-height);
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 7px var(--spacing-small);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  color: var(--fixed-dark-grey);
  background-color: var(--fixed-brand-yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: var(--border-radius);
  gap: var(--spacing-xsmall);
  position: relative;
}
@media (min-width: 1024px) {
  a.button,
  button,
  .button {
    border-radius: clamp(var(--border-radius), 1.5vw, 42px);
  }
}
a.button:hover,
button:hover,
.button:hover {
  background-color: var(--dark-grey);
  color: var(--yellow-dark);
}
a.button.primary,
button.primary,
.button.primary {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
a.button.primary::before,
button.primary::before,
.button.primary::before {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
}
a.button.primary:hover::before,
button.primary:hover::before,
.button.primary:hover::before {
  background-color: var(--yellow-dark);
}
a.button.secondary,
button.secondary,
.button.secondary {
  background-color: unset;
  border: 1px solid;
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
a.button.secondary:hover,
button.secondary:hover,
.button.secondary:hover {
  opacity: 0.5;
}
a.button.light-grey,
button.light-grey,
.button.light-grey {
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
}
a.button.light-grey:hover, a.button.light-grey:focus-visible, a.button.light-grey:focus,
button.light-grey:hover,
button.light-grey:focus-visible,
button.light-grey:focus,
.button.light-grey:hover,
.button.light-grey:focus-visible,
.button.light-grey:focus {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button.small,
button.small,
.button.small {
  font-size: var(--text-size-xsmall);
  padding: 3px 12px;
}
@media (min-width: 1024px) {
  a.button.small,
  button.small,
  .button.small {
    font-size: clamp(14px, 0.7vw, 18px);
  }
}
a.button.arrow-right,
button.arrow-right,
.button.arrow-right {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: unset;
  width: fit-content;
  border: 1px solid;
  color: inherit;
}
a.button.arrow-right::after,
button.arrow-right::after,
.button.arrow-right::after {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-right:hover::after,
button.arrow-right:hover::after,
.button.arrow-right:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-right:focus::after, a.button.arrow-right:hover,
button.arrow-right:focus::after,
button.arrow-right:hover,
.button.arrow-right:focus::after,
.button.arrow-right:hover {
  color: var(--brand-grey);
}
a.button.arrow-down,
button.arrow-down,
.button.arrow-down {
  float: right;
  display: inline-flex;
  color: inherit;
  background-color: unset;
  border: 1px solid;
  justify-content: space-between;
  flex-shrink: 0;
  width: fit-content;
}
a.button.arrow-down::after,
button.arrow-down::after,
.button.arrow-down::after {
  content: "";
  mask-image: url("../icons/arrow-down.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-down:hover::after,
button.arrow-down:hover::after,
.button.arrow-down:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-down:focus::after, a.button.arrow-down:hover,
button.arrow-down:focus::after,
button.arrow-down:hover,
.button.arrow-down:focus::after,
.button.arrow-down:hover {
  color: var(--brand-grey);
}
a.button__category-pill,
button__category-pill,
.button__category-pill {
  font-family: var(--body-strong-font-family);
  float: right;
  display: inline-flex;
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
  padding: 4px 16px;
  height: 40px;
  border: 2px solid transparent;
  line-height: var(--body-line-height);
  width: fit-content;
}
a.button__category-pill::after,
button__category-pill::after,
.button__category-pill::after {
  content: attr(data-count);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--fixed-dark-grey);
  font-size: var(--text-size-xxsmall);
  height: 24px;
  width: 24px;
}
a.button__category-pill:hover,
button__category-pill:hover,
.button__category-pill:hover {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button__category-pill:hover::after,
button__category-pill:hover::after,
.button__category-pill:hover::after {
  border: 2px solid var(--fixed-white);
}
a.button__category-pill--active,
button__category-pill--active,
.button__category-pill--active {
  background-color: var(--dark-grey);
  color: var(--white);
}
a.button__category-pill--active::after,
button__category-pill--active::after,
.button__category-pill--active::after {
  border: 2px solid var(--white);
}

button:disabled,
button:disabled:hover {
  background-color: var(--white);
  cursor: unset;
}

.default-content-wrapper .button-container a {
  text-decoration: none;
}

/*
  * Adds the styles for an animated 'X' button to the element.
  * Exact positioning should be defined in the corresponding element, based on each use-case.
  * @param $pathToButton: the path as url(...) from where the asset should be loaded
 */
/*
  * Hides the default 'X' button added by the Chromium-based browsers on input[type="search"] and makes the input look regular.
*/
.sidebar {
  position: absolute;
  max-width: 0;
  max-height: 0;
  width: 400px;
  z-index: 10;
}
@media (min-width: 1024px) {
  .sidebar {
    position: relative;
    left: 0;
  }
}
.sidebar--is-open {
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1024px) {
  .sidebar--is-open {
    position: relative;
    max-width: 400px;
    overflow: hidden;
  }
}
.sidebar__toggle-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
}
.sidebar__toggle-icon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  display: block;
  width: 24px;
  height: 24px;
  mask: url("../icons/filter.svg") no-repeat center;
  mask-size: 24px;
  background-color: var(--fixed-dark-grey);
}
.sidebar__toggle-icon:hover, .sidebar__toggle-icon:focus {
  background-color: var(--white);
}
.dark-mode .sidebar__toggle-icon {
  background-color: var(--fixed-dark-grey);
}
.dark-mode .sidebar__toggle-icon::before {
  background-color: var(--fixed-white);
}
.sidebar__toggle {
  font-size: 18px;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  opacity: 1;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall);
  width: 176px;
  height: 64px;
  line-height: 64px;
  background-color: var(--light-grey);
  border-radius: 100px;
  cursor: pointer;
}
.dark-mode .sidebar__toggle {
  background-color: var(--graphite);
}
.sidebar--is-open .sidebar__toggle {
  transform: translate3d(var(--spacing-medium), var(--spacing-medium), 0) scale(1.11);
}
.sidebar__toggle:hover .sidebar__toggle-icon {
  background-color: var(--fixed-dark-grey);
}
.sidebar__toggle:hover .sidebar__toggle-icon::before {
  background-color: var(--fixed-brand-yellow);
}
.dark-mode .sidebar__toggle:hover .sidebar__toggle-icon {
  background-color: var(--fixed-white);
}
.dark-mode .sidebar__toggle:hover .sidebar__toggle-icon::before {
  background-color: var(--fixed-dark-grey);
}
.sidebar__toggle--hidden {
  opacity: 0;
}
@media (min-width: 1024px) {
  .search-landing .sidebar__toggle {
    pointer-events: none;
  }
}
.sidebar__container {
  background-color: var(--light-grey);
  opacity: 0;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: paint;
  transition: transform 500ms ease, opacity 500ms ease;
}
@media (min-width: 1024px) {
  .sidebar__container {
    border-radius: var(--border-radius);
  }
}
.dark-mode .sidebar__container {
  background-color: var(--graphite);
}
.sidebar--is-open .sidebar__container {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  width: 100%;
  padding: var(--spacing-large);
}
@media (min-width: 1024px) {
  .sidebar--is-open .sidebar__container {
    width: 400px;
  }
}
@media (min-width: 1024px) {
  .search-landing .sidebar__container {
    width: 400px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.sidebar__header {
  min-width: 235px;
}
@media (min-width: 768px) {
  .sidebar__header {
    min-width: 335px;
  }
}
.sidebar__header.sidebar__categories-section {
  position: relative;
  height: 65px;
  padding-top: 0;
  padding-bottom: var(--spacing-medium);
}
.sidebar__header-close {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  right: -10px;
}
.sidebar__header-close::before {
  content: "";
  mask-image: url("../icons/close-sidebar.svg");
  background-color: var(--dark-grey);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 45%;
  left: 40%;
  transition: transform 300ms ease;
}
.sidebar__header-close:hover::before {
  transform: rotate(90deg);
}
@media (min-width: 1024px) {
  .search-landing .sidebar__header-close {
    opacity: 0;
    pointer-events: none;
  }
}
.sidebar__categories {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  overflow-y: auto;
  text-transform: capitalize;
  max-height: fit-content;
}
.sidebar__categories::-webkit-scrollbar {
  width: 5px;
}
.sidebar__categories::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar__categories::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .sidebar__categories {
    max-height: 1000px;
  }
}
.sidebar--scrollable .sidebar__categories {
  padding-right: 30px;
  margin-right: -30px;
}
.sidebar__categories-firstLevel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--body-strong-font-family);
  min-width: 230px;
}
@media (min-width: 768px) {
  .sidebar__categories-firstLevel {
    min-width: 335px;
  }
}
.sidebar__categories-firstLevel label {
  font-weight: var(--bold-font-weight);
}
.sidebar__categories-first-level-toggle {
  width: 14px;
  height: 8px;
  mask-image: url("../icons/chevron-up-sidebar.svg");
  background-color: var(--fixed-dark-grey);
  mask-repeat: no-repeat;
  mask-size: contain;
  cursor: pointer;
  transform: rotate(180deg);
  transition: transform 300ms ease;
}
.dark-mode .sidebar__categories-first-level-toggle {
  background-color: var(--fixed-white);
}
.sidebar__categories-second-level {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsmall);
  min-width: 235px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: var(--spacing-small);
  padding-top: 0;
  transition: max-height 450ms ease, opacity 500ms ease, padding-top 500ms ease;
}
@media (min-width: 768px) {
  .sidebar__categories-second-level {
    min-width: 335px;
  }
}
.sidebar__categories-second-level label {
  font-size: var(--text-size-xsmall);
}
.sidebar__category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.sidebar__category-count {
  margin-left: auto;
  text-align: left;
  color: var(--light-dark-grey);
  font-size: 14px;
  font-weight: 400;
}
.dark-mode .sidebar__category-count {
  color: var(--light-grey);
}
.sidebar__categories-section {
  padding: var(--spacing-medium) 0;
  border-bottom: 1px solid var(--brand-grey);
}
.sidebar__categories-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar__categories-section label {
  display: flex;
  align-items: center;
  gap: var(--spacing-xsmall);
  line-height: 1.4;
}
.sidebar__categories-section input[type=checkbox] {
  appearance: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--brand-grey);
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-right: var(--spacing-xsmall);
}
.sidebar__categories-section input[type=checkbox]:checked {
  background-color: var(--fixed-brand-yellow);
  border: none;
}
@media (min-width: 1440px) {
  .sidebar__categories-section input[type=checkbox]:not(:checked):hover {
    background-color: var(--fixed-brand-yellow);
    opacity: 0.2;
  }
}
.sidebar__categories-section input[type=checkbox]:checked::after, .sidebar__categories-section input[type=checkbox]:hover::after {
  content: "✔";
  font-size: 14px;
  color: var(--fixed-dark-grey);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (-webkit-hyphens: none) {
  .sidebar__categories-section input[type=checkbox]:checked::after, .sidebar__categories-section input[type=checkbox]:hover::after {
    font-size: 20px;
  }
}
@media (max-width: 1439.98px) {
  .sidebar__categories-section input[type=checkbox]:not(:checked):hover::after {
    content: "";
  }
}
.sidebar__categories-section--expanded .sidebar__categories-first-level-toggle {
  transform: rotate(0deg);
}
.sidebar__categories-section--expanded .sidebar__categories-second-level {
  max-height: 5000px;
  opacity: 1;
  padding-top: var(--spacing-xsmall);
}
.sidebar__categories-all {
  min-width: 235px;
}
@media (min-width: 768px) {
  .sidebar__categories-all {
    min-width: 335px;
  }
}
.sidebar__categories-all label {
  font-family: var(--body-strong-font-family);
}
.sidebar__appliedCategories {
  opacity: 0;
  max-height: 0;
}
.sidebar__appliedCategories--is-open {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  opacity: 1;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
}
.sidebar__appliedCategories--is-open::-webkit-scrollbar {
  width: 5px;
}
.sidebar__appliedCategories--is-open::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar__appliedCategories--is-open::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.sidebar__appliedCategories-container {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: opacity 400ms ease, transform 400ms ease, max-height 400ms ease, border-bottom-color 50ms ease, padding-bottom 400ms ease;
}
.sidebar__appliedCategories-container--has-children {
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
  padding-bottom: var(--spacing-small);
  border-bottom: 1px solid var(--brand-grey);
}
.sidebar__appliedCategories-container--has-children .sidebar__appliedCategories {
  margin-top: var(--spacing-xsmall);
}
.sidebar__appliedCategories-title {
  font-family: var(--body-strong-font-family);
  opacity: 0;
  max-height: 0;
  min-width: 235px;
  transform: translateY(8px);
  padding-top: 0;
  transition: opacity 400ms ease, max-height 400ms ease, transform 400ms ease, padding-top 400ms ease;
}
@media (min-width: 768px) {
  .sidebar__appliedCategories-title {
    min-width: 335px;
  }
}
.sidebar__appliedCategories-title--visible {
  opacity: 1;
  max-height: 60px;
  transform: translateY(0);
  padding-top: var(--spacing-medium);
}
.sidebar__appliedCategories-clear {
  background-color: transparent;
  text-decoration: underline;
  font-size: var(--text-size-xsmall);
  opacity: 1;
  transition: opacity 50ms ease;
}
.sidebar__appliedCategories-clear:hover, .sidebar__appliedCategories-clear:focus {
  background-color: transparent;
  color: var(--yellow-dark);
}
.dark-mode .sidebar__appliedCategories-clear {
  color: var(--fixed-white);
}
.dark-mode .sidebar__appliedCategories-clear:hover, .dark-mode .sidebar__appliedCategories-clear:focus {
  color: var(--fixed-brand-yellow);
}
.sidebar__appliedCategories-clear--fade-out {
  opacity: 0;
}
.sidebar__appliedCategory.button {
  text-transform: capitalize;
  background-color: var(--fixed-white);
  font-size: var(--text-size-xxsmall);
  margin-right: var(--spacing-xsmall);
  margin-bottom: var(--spacing-xsmall);
  transition: all 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dark-mode .sidebar__appliedCategory.button {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
.dark-mode .sidebar__appliedCategory.button:hover, .dark-mode .sidebar__appliedCategory.button:focus {
  background-color: var(--fixed-white);
  color: var(--fixed-dark-grey);
}
.sidebar__appliedCategory.button::after {
  content: "x";
  margin-left: var(--spacing-xsmall);
}
.sidebar__appliedCategory.button--enter {
  opacity: 1;
  transform: translateY(0);
}
.sidebar__footer {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-large);
}
@media (min-width: 1024px) {
  .sidebar__footer {
    display: none;
  }
}
.sidebar__footer-apply-button {
  width: 237px;
}
.search-landing .sidebar:not(.sidebar--is-open) {
  margin-top: calc(-1 * var(--spacing-small));
}

/* stylelint-disable */
/* stylelint-disable */
a.button,
button,
.button {
  font-family: var(--body-font-family);
  font-size: var(--text-size-regular);
  line-height: var(--heading-line-height);
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 7px var(--spacing-small);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  color: var(--fixed-dark-grey);
  background-color: var(--fixed-brand-yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: var(--border-radius);
  gap: var(--spacing-xsmall);
  position: relative;
}
@media (min-width: 1024px) {
  a.button,
  button,
  .button {
    border-radius: clamp(var(--border-radius), 1.5vw, 42px);
  }
}
a.button:hover,
button:hover,
.button:hover {
  background-color: var(--dark-grey);
  color: var(--yellow-dark);
}
a.button.primary,
button.primary,
.button.primary {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
a.button.primary::before,
button.primary::before,
.button.primary::before {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
}
a.button.primary:hover::before,
button.primary:hover::before,
.button.primary:hover::before {
  background-color: var(--yellow-dark);
}
a.button.secondary,
button.secondary,
.button.secondary {
  background-color: unset;
  border: 1px solid;
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
a.button.secondary:hover,
button.secondary:hover,
.button.secondary:hover {
  opacity: 0.5;
}
a.button.light-grey,
button.light-grey,
.button.light-grey {
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
}
a.button.light-grey:hover, a.button.light-grey:focus-visible, a.button.light-grey:focus,
button.light-grey:hover,
button.light-grey:focus-visible,
button.light-grey:focus,
.button.light-grey:hover,
.button.light-grey:focus-visible,
.button.light-grey:focus {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button.small,
button.small,
.button.small {
  font-size: var(--text-size-xsmall);
  padding: 3px 12px;
}
@media (min-width: 1024px) {
  a.button.small,
  button.small,
  .button.small {
    font-size: clamp(14px, 0.7vw, 18px);
  }
}
a.button.arrow-right,
button.arrow-right,
.button.arrow-right {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: unset;
  width: fit-content;
  border: 1px solid;
  color: inherit;
}
a.button.arrow-right::after,
button.arrow-right::after,
.button.arrow-right::after {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-right:hover::after,
button.arrow-right:hover::after,
.button.arrow-right:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-right:focus::after, a.button.arrow-right:hover,
button.arrow-right:focus::after,
button.arrow-right:hover,
.button.arrow-right:focus::after,
.button.arrow-right:hover {
  color: var(--brand-grey);
}
a.button.arrow-down,
button.arrow-down,
.button.arrow-down {
  float: right;
  display: inline-flex;
  color: inherit;
  background-color: unset;
  border: 1px solid;
  justify-content: space-between;
  flex-shrink: 0;
  width: fit-content;
}
a.button.arrow-down::after,
button.arrow-down::after,
.button.arrow-down::after {
  content: "";
  mask-image: url("../icons/arrow-down.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-down:hover::after,
button.arrow-down:hover::after,
.button.arrow-down:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-down:focus::after, a.button.arrow-down:hover,
button.arrow-down:focus::after,
button.arrow-down:hover,
.button.arrow-down:focus::after,
.button.arrow-down:hover {
  color: var(--brand-grey);
}
a.button__category-pill,
button__category-pill,
.button__category-pill {
  font-family: var(--body-strong-font-family);
  float: right;
  display: inline-flex;
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
  padding: 4px 16px;
  height: 40px;
  border: 2px solid transparent;
  line-height: var(--body-line-height);
  width: fit-content;
}
a.button__category-pill::after,
button__category-pill::after,
.button__category-pill::after {
  content: attr(data-count);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--fixed-dark-grey);
  font-size: var(--text-size-xxsmall);
  height: 24px;
  width: 24px;
}
a.button__category-pill:hover,
button__category-pill:hover,
.button__category-pill:hover {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button__category-pill:hover::after,
button__category-pill:hover::after,
.button__category-pill:hover::after {
  border: 2px solid var(--fixed-white);
}
a.button__category-pill--active,
button__category-pill--active,
.button__category-pill--active {
  background-color: var(--dark-grey);
  color: var(--white);
}
a.button__category-pill--active::after,
button__category-pill--active::after,
.button__category-pill--active::after {
  border: 2px solid var(--white);
}

button:disabled,
button:disabled:hover {
  background-color: var(--white);
  cursor: unset;
}

.default-content-wrapper .button-container a {
  text-decoration: none;
}

/*
  * Adds the styles for an animated 'X' button to the element.
  * Exact positioning should be defined in the corresponding element, based on each use-case.
  * @param $pathToButton: the path as url(...) from where the asset should be loaded
 */
/*
  * Hides the default 'X' button added by the Chromium-based browsers on input[type="search"] and makes the input look regular.
*/
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.insights-search {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-small);
  padding: var(--spacing-small) var(--spacing-medium);
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--brand-grey);
  box-shadow: 0 0 0 1px var(--light-grey) inset;
  width: 100%;
  background-color: var(--light-gray-searchfield);
}
.insights-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.insights-search:focus-within {
  outline: 2px solid var(--yellow-dark);
  outline-offset: 4px;
}
.insights-search__input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: var(--text-size-regular);
  font-weight: 400;
  font-family: var(--body-font-family);
  color: var(--dark-grey);
}
.insights-search__input::placeholder {
  color: var(--brand-grey);
}
.insights-search__clear {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-grey);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.insights-search__clear:hover {
  background: var(--light-grey);
}
.insights-search--has-value .insight-search__clear {
  opacity: 1;
  pointer-events: auto;
}
.insights-search__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: var(--spacing-small);
  background: var(--white);
  background-color: var(--light-gray-searchfield);
  padding: 0 var(--spacing-medium) var(--spacing-small) var(--spacing-medium);
  max-height: 320px;
  overflow-y: auto;
  width: 95%;
  z-index: 20;
  margin-right: 8px;
  margin-left: 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-grey) transparent;
}
.insights-search__suggestions ::-webkit-scrollbar-thumb:vertical {
  margin-right: 204px;
}
.insights-search__suggestions::-webkit-scrollbar {
  width: 6px;
}
.insights-search__suggestions::-webkit-scrollbar-track {
  background: transparent;
}
.insights-search__suggestions::-webkit-scrollbar-thumb {
  background-color: var(--brand-grey);
}
.insights-search__suggestions::-webkit-scrollbar-thumb:hover {
  background-color: var(--light-dark-grey);
}
.insights-search__suggestions--outer {
  height: 373px;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: var(--spacing-small);
  background-color: var(--light-gray-searchfield);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-stroke) 0 0 0 1px, var(--shadow-stroke-inset) 0 0 0 1px inset;
  padding: 0 var(--spacing-medium) var(--spacing-small);
  width: 100%;
  z-index: 20;
}
.insights-search__group {
  padding: var(--spacing-xsmall) 0 var(--spacing-small);
}
.insights-search__group + .insights-search__group {
  border-top: 1px solid var(--brand-grey);
  margin-top: var(--spacing-xsmall);
  padding-top: var(--spacing-small);
}
.insights-search__group-title {
  font-size: var(--text-size-xxsmall);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-grey);
  margin-bottom: var(--spacing-xsmall);
}
.insights-search__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  padding: 6px 0;
  cursor: pointer;
  border-radius: 0;
}
.insights-search__item:hover {
  background: var(--light-grey);
}
.insights-search__label {
  font-size: var(--text-size-small);
  color: var(--dark-grey);
  text-align: left;
}
.insights-search__highlight {
  background: var(--fixed-brand-yellow);
  color: var(--fixed-dark-grey);
  padding: 0 2px;
  border-radius: 2px;
}
.insights-search__count {
  min-width: 40px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--light-grey);
  font-size: var(--text-size-xxsmall);
  color: var(--light-dark-grey);
  text-align: center;
}
.insights-search__icon svg {
  width: 27px;
  height: 27px;
  display: block;
  opacity: 0.3;
  fill: var(--dark-grey);
}
.insights-search__no-results-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .insights-search__no-results-wrapper {
    width: 100vw;
  }
}
.insights-search__no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--spacing-large);
}
.insights-search__no-results-title {
  font-size: var(--heading-font-size-m);
}
@media (min-width: 768px) {
  .insights-search__no-results-title {
    font-size: var(--heading-font-size-l);
  }
}
.insights-search__no-results-text {
  text-align: center;
}
.insights-search__no-results-chips {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: var(--spacing-xsmall);
  row-gap: var(--spacing-small);
}
@media (min-width: 768px) {
  .insights-search__no-results-chips {
    column-gap: var(--spacing-small);
  }
}
.insights-search__chip {
  background-color: var(--light-grey);
}

.insights__footer-bar {
  display: flex;
  padding: var(--Units-unit-16, 16px) var(--Units-unit-32, 32px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall, --spacing-xsmall);
  align-self: stretch;
  margin: var(--spacing-medium);
  border-top: 1px solid var(--footer-border-light);
}
@media (min-width: 375px) {
  .insights__footer-bar {
    gap: var(--spacing-large, 12px);
  }
}
.insights__footer-bar.search-landing--no-results, .insights--no-results .insights__footer-bar {
  display: none;
}
.insights__button-container-left {
  display: flex;
  align-items: center;
  flex: 1 0 0;
}
.insights__button-container-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 0 0;
}
.insights__previous-button.button.secondary, .insights__next-button {
  display: flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 4px var(--spacing-small);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall);
}
@media (min-width: 768px) {
  .insights__previous-button.button.secondary, .insights__next-button {
    width: auto;
    height: auto;
  }
}
.insights__previous-button.button.secondary::before {
  content: "";
  mask-image: url("../../icons/arrow-left.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
  flex-shrink: 0;
}
.insights__previous-button.button.secondary:hover {
  background-color: var(--white);
}
.insights__previous-button.button.secondary:disabled {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  border: none;
  opacity: 0.5;
}
.insights__previous-button.button.secondary:disabled::before {
  background-color: var(--dark-grey);
}
.insights__next-button::before {
  display: none;
}
.insights__next-button::after {
  content: "";
  mask-image: url("../../icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
  flex-shrink: 0;
}
.insights__next-button:hover::after {
  background-color: var(--yellow-dark);
}
.insights__next-button:disabled {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  opacity: 0.5;
}
.insights__next-button:disabled:hover {
  background-color: var(--light-grey);
  color: var(--dark-grey);
}
.insights__next-button:disabled::after {
  background-color: var(--dark-grey);
}
.insights__page-number {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.insights__page-number-container {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xxs, 2px);
}
.insights__page-number__text {
  color: var(--dark-grey);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  text-decoration-skip-ink: none;
}
.insights__page-number__text--selected {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: var(--spacing-2xl, 20px);
  background: var(--Colors-yellow, #fab900);
  text-decoration-line: none;
  font-weight: 500;
  font-size: 18px;
  color: var(--fixed-dark-grey);
  text-align: center;
}
.insights__page-number__text--selected.insights__page-number__text {
  color: var(--fixed-dark-grey);
}
.insights__page-number__text:not(.insights__page-number__text--selected) {
  cursor: pointer;
}
.dark-mode .insights__previous-button.button.secondary:disabled, .dark-mode .insights__next-button:disabled {
  background-color: var(--light-dark-grey);
  color: var(--light-grey);
  opacity: 0.5;
}
.dark-mode .insights__previous-button.button.secondary:disabled::before, .dark-mode .insights__next-button:disabled::before {
  background-color: var(--light-grey);
}

.insights__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-bottom: var(--spacing-xlarge);
}
@media (min-width: 768px) {
  .insights__hero {
    flex-flow: row wrap;
    width: 100%;
    column-gap: var(--spacing-xxlarge);
    align-content: flex-start;
  }
}
.insights__hero-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-small);
  padding-bottom: var(--spacing-small);
  order: 2;
}
@media (min-width: 1024px) {
  .insights__hero-text-container {
    width: 50%;
    gap: var(--spacing-medium);
    padding-left: clamp(var(--spacing-xlarge), 2.5vw, var(--spacing-xxlarge));
    flex: 1 1 520px;
    min-width: 320px;
    order: 1;
  }
}
.insights__hero-headline {
  margin: 0;
  word-wrap: break-word;
  font-size: var(--heading-font-size-l);
}
@media (min-width: 1024px) {
  .insights__hero-headline {
    hyphens: none;
    word-wrap: unset;
    font-size: var(--heading-font-size-xxl);
  }
}
.insights__hero-description p {
  hyphens: none;
}
.insights__hero-image-container {
  width: 100vw;
  margin-bottom: var(--spacing-xlarge);
}
@media (min-width: 768px) {
  .insights__hero-image-container {
    width: 65%;
    margin-bottom: var(--spacing-small);
  }
}
@media (min-width: 1024px) {
  .insights__hero-image-container {
    width: 50%;
    margin-bottom: unset;
    flex: 1 1 520px;
    min-width: 320px;
    order: 2;
  }
}
.insights__hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights__hero-picture--dark {
  display: none;
}
.insights__hero-button {
  width: fit-content;
}
.insights__hero-button:focus-visible::after {
  border-color: var(--dark-grey);
}
.insights-search__no-results-wrapper {
  flex: 0 0 100%;
  width: 100%;
  order: 3;
  position: static;
  inset: auto;
}
.insights__filters {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .insights__filters {
    flex-direction: row;
  }
}
@media (max-width: 1023.98px) {
  .insights__filters {
    opacity: 1;
    transition: opacity 200ms ease;
  }
  .insights__results-sidebar-container.is-open .insights__filters {
    opacity: 0;
  }
}
.search-landing__types .insights__filters {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  gap: var(--spacing-large);
}
@media (max-width: 1023.98px) {
  .search-landing__types .insights__filters {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--spacing-small);
  }
}
.insights__scroll-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xsmall);
}
@media (min-width: 768px) {
  .insights__scroll-wrapper {
    align-items: flex-start;
  }
}
.insights__scroll-wrapper button {
  text-transform: capitalize;
}
.search-landing__types .insights__scroll-wrapper {
  min-width: 0;
  overflow: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .insights__categories {
    display: flex;
    overflow-x: scroll;
    cursor: grab;
    margin-inline: calc(-1 * var(--spacing-small));
    padding-inline: var(--spacing-small);
  }
  .insights__categories::-webkit-scrollbar {
    display: none;
  }
}
.search-landing__types .insights__categories {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}
@media (min-width: 768px) {
  .search-landing__types .insights__categories {
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .search-landing__types .insights__categories {
    justify-content: flex-end;
  }
}
.insights__category.button.light-grey {
  padding: var(--spacing-xsmall) var(--spacing-small);
  background: var(--light-grey);
  color: var(--dark-grey);
  text-transform: capitalize;
}
.insights__category.button.light-grey:hover {
  background: var(--dark-grey);
  color: var(--white);
}
.dark-mode .insights__category.button.light-grey {
  background: var(--graphite);
}
.dark-mode .insights__category.button.light-grey:hover {
  background: var(--fixed-white);
  color: var(--fixed-dark-grey);
}
.insights__category--active {
  pointer-events: none;
}
.insights__category--active.button.light-grey {
  background: var(--dark-grey);
  color: var(--fixed-white);
  cursor: default;
}
.dark-mode .insights__category--active.button.light-grey {
  background-color: var(--dark-grey);
  color: var(--white);
}
.insights__items {
  width: 100%;
  margin-block: 24px;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .insights__items:not(.insights__items--initial) {
    animation: scale-in-ver-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
}
.insights__picture-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #101014;
}
.insights__picture {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .insights__picture {
    transform: translate3d(0, 75px, 0) scale3d(1.5, 1.5, 1);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.insights__picture::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: var(--insights-picture-overlay-gradient);
}
@media (min-width: 1024px) {
  .insights__picture::after {
    background: var(--insights-picture-overlay-gradient-desktop);
  }
}
.insights__picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .insights__picture img {
    aspect-ratio: auto;
  }
}
.insights__tags {
  position: absolute;
  top: var(--spacing-small);
  left: var(--spacing-small);
  right: var(--spacing-small);
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
  z-index: 2;
  pointer-events: auto;
  cursor: default;
  bottom: unset;
}
.insights__tag {
  background-color: var(--black);
  color: var(--fixed-white);
  pointer-events: none;
  cursor: default;
}
.insights__overlay {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: column;
  flex: 1 0 0;
  position: absolute;
  inset: 1px 0;
  z-index: 2;
  padding: var(--spacing-small);
  color: var(--light-grey);
  border-radius: 0;
  transition: padding 1000ms cubic-bezier(0.22, 1, 0.36, 1), background 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.insights__category-text {
  display: flex;
  top: var(--spacing-small);
  left: var(--spacing-small);
  z-index: 2;
  color: var(--fixed-brand-yellow);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  font-size: 16px;
  position: static;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
}
@media (min-width: 1024px) {
  .insights__category-text {
    transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.insights__post-card .insights__category-text {
  text-transform: uppercase;
}
.insights__title {
  font-family: "TWK Burns", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  font-size: var(--heading-font-size-s);
}
@media (min-width: 1024px) {
  .insights__title {
    transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.insights__description {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--fixed-white);
  font-size: var(--text-size-regular);
  max-height: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  will-change: opacity, transform;
  backface-visibility: hidden;
  height: auto;
  z-index: 2;
  position: absolute;
  bottom: 1rem;
  padding: 0;
  margin: 0 1rem;
  line-height: normal;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .insights__description {
    transition: opacity 200ms ease, transform 1000ms ease;
  }
}
.insights__post-card {
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  align-items: flex-start;
  border-radius: var(--border-radius);
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  background-color: #17161a;
}
@media (min-width: 1024px) {
  .insights__post-card.is-description-active .insights__category-text,
  .insights__post-card.is-description-active .insights__title {
    transform: translateY(-55px);
  }
}
@media (min-width: 1024px) {
  .insights__post-card.is-description-active .insights__picture {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}
.insights__post-card.is-description-active .insights__picture img {
  border-radius: 0;
}
@media (min-width: 1024px) {
  .insights__post-card.is-description-active .insights__description {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }
}
@media (min-width: 1024px) {
  .insights__post-card:hover .insights__category-text,
  .insights__post-card:hover .insights__title {
    transform: translateY(-55px);
  }
}
@media (min-width: 1024px) {
  .insights__post-card:hover .insights__picture {
    transform: translateY(0) scale(1);
  }
}
.insights__post-card:hover .insights__picture img {
  border-radius: 0;
}
@media (min-width: 1024px) {
  .insights__post-card:hover .insights__description {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.insights__post-card__tall {
  height: 350px;
}
.insights__post-card__short {
  height: 300px;
}
.insights__bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--spacing-xsmall);
  height: auto;
  transform: none;
  overflow: visible;
  max-height: none;
  opacity: 1;
  margin-top: var(--spacing-small);
}
@media (min-width: 1024px) {
  .insights__bottom-row {
    transition: none;
  }
}
.insights__post-info {
  display: none;
}
@media (min-width: 1024px) {
  .insights__post-info {
    display: block;
    font-size: var(--text-size-xxsmall);
    color: var(--fixed-white);
    opacity: 0.8;
    line-height: var(--body-line-height);
    max-width: calc(100% - 50px);
    flex: 1;
  }
}
.insights__button {
  width: fit-content;
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}
.insights__button:focus-visible, .insights__button:focus {
  outline: 2px solid var(--yellow-dark);
}
@media (max-width: 1023.98px) {
  .insights__loadmore {
    opacity: 1;
    transition: opacity 200ms ease;
  }
  .insights__results-sidebar-container.is-open .insights__loadmore {
    opacity: 0;
  }
}
.insights__loadmore-container {
  transform: translateX(176px);
  transition: transform 350ms ease;
  will-change: transform;
  display: flex;
  flex: 0 0 auto;
  padding-left: var(--spacing-small);
  height: 64px;
  align-items: center;
  width: fit-content;
}
@media (max-width: 440px) {
  .insights__loadmore-container {
    transform: translateX(0);
    margin-top: 64px;
  }
}
.insights__filter-bar {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-small);
  justify-content: space-between;
  opacity: 1;
}
@media (min-width: 1024px) {
  .insights__filter-bar {
    flex-direction: row;
    height: 64px;
    align-items: center;
    align-content: center;
  }
}
.insights__filter-bar--hidden {
  opacity: 0;
}
.insights__results-sidebar-container {
  position: relative;
  display: block;
  padding: 0;
  height: auto;
  min-height: unset;
}
@media (min-width: 1024px) {
  .insights__results-sidebar-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-self: flex-start;
  }
}
@media (min-width: 1024px) {
  .insights__results-sidebar-container.is-open {
    gap: 24px;
    flex-wrap: wrap;
  }
}
.insights__results-sidebar-container.is-open .insights__loadmore-container {
  transform: translateX(0);
  padding-left: 0;
}
@media (max-width: 1439.98px) {
  .insights__results-sidebar-container.is-open .insights__filter-bar {
    flex-direction: column;
    height: unset;
    align-items: unset;
    align-content: unset;
  }
}
.insights--no-results .insights__results-sidebar-container {
  display: none;
}
.insights__results-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  height: 100%;
  max-width: 100%;
  flex: 1 0 0;
  transform: translate3d(0, 0, 0);
  transition: transform 500ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .insights__results-container {
    transform: translate3d(0, 0, 0);
  }
}
.is-open .insights__results-container {
  margin-left: -400px;
  transform: translate3d(400px, 0, 0);
  max-width: calc(100% - 400px);
}
.insights__button-container-left {
  display: flex;
  align-items: center;
  flex: 1 0 0;
}
.insights__button-container-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 0 0;
}

.dark-mode .insights__hero-picture--light {
  display: none;
}
.dark-mode .insights__hero-picture--dark {
  display: block;
}

.editor-mode .insights__hero {
  min-height: auto;
}

.insights__tag.is-hidden {
  display: none !important;
}

.search-landing__footer-bar {
  display: flex;
  padding: var(--Units-unit-16, 16px) var(--Units-unit-32, 32px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall, --spacing-xsmall);
  align-self: stretch;
  margin: var(--spacing-medium);
  border-top: 1px solid var(--footer-border-light);
}
@media (min-width: 375px) {
  .search-landing__footer-bar {
    gap: var(--spacing-large, 12px);
  }
}
.search-landing__footer-bar.search-landing--no-results, .search-landing--no-results .search-landing__footer-bar {
  display: none;
}
.search-landing__button-container-left {
  display: flex;
  align-items: center;
  flex: 1 0 0;
}
.search-landing__button-container-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 0 0;
}
.search-landing__previous-button.button.secondary, .search-landing__next-button {
  display: flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 4px var(--spacing-small);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall);
}
@media (min-width: 768px) {
  .search-landing__previous-button.button.secondary, .search-landing__next-button {
    width: auto;
    height: auto;
  }
}
.search-landing__previous-button.button.secondary::before {
  content: "";
  mask-image: url("../icons/arrow-left.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
  flex-shrink: 0;
}
.search-landing__previous-button.button.secondary:hover {
  background-color: var(--white);
}
.search-landing__previous-button.button.secondary:disabled {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  border: none;
  opacity: 0.5;
}
.search-landing__previous-button.button.secondary:disabled::before {
  background-color: var(--dark-grey);
}
.search-landing__next-button::before {
  display: none;
}
.search-landing__next-button::after {
  content: "";
  mask-image: url("../icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
  flex-shrink: 0;
}
.search-landing__next-button:hover::after {
  background-color: var(--yellow-dark);
}
.search-landing__next-button:disabled {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  opacity: 0.5;
}
.search-landing__next-button:disabled:hover {
  background-color: var(--light-grey);
  color: var(--dark-grey);
}
.search-landing__next-button:disabled::after {
  background-color: var(--dark-grey);
}
.search-landing__page-number {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.search-landing__page-number-container {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xxs, 2px);
}
.search-landing__page-number__text {
  color: var(--dark-grey);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  text-decoration-skip-ink: none;
}
.search-landing__page-number__text--selected {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: var(--spacing-2xl, 20px);
  background: var(--Colors-yellow, #fab900);
  text-decoration-line: none;
  font-weight: 500;
  font-size: 18px;
  color: var(--fixed-dark-grey);
  text-align: center;
}
.search-landing__page-number__text--selected.insights__page-number__text {
  color: var(--fixed-dark-grey);
}
.search-landing__page-number__text:not(.search-landing__page-number__text--selected) {
  cursor: pointer;
}
.dark-mode .search-landing__previous-button.button.secondary:disabled, .dark-mode .search-landing__next-button:disabled {
  background-color: var(--light-dark-grey);
  color: var(--light-grey);
  opacity: 0.5;
}
.dark-mode .search-landing__previous-button.button.secondary:disabled::before, .dark-mode .search-landing__next-button:disabled::before {
  background-color: var(--light-grey);
}

.search-landing {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
  min-height: 200vh;
}
.search-landing mark {
  background-color: var(--fixed-brand-yellow);
  color: var(--fixed-dark-grey);
  padding: 0 2px;
  border-radius: 2px;
}
.search-landing__content {
  max-width: 600px;
  margin: 0 auto var(--spacing-large);
}
.search-landing__input-wrapper {
  margin-bottom: var(--spacing-medium);
}
.search-landing__search {
  position: relative;
  width: 100%;
}
.search-landing__search-form {
  display: flex;
  align-items: center;
  height: 56px;
  gap: var(--spacing-xsmall);
  padding-inline: var(--spacing-small);
  border-radius: 100px;
  border: 1px solid var(--brand-grey);
  background: var(--light-gray-searchfield);
  width: 100%;
  padding-right: 50px;
}
.search-landing__search-form::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-xsmall);
  mask-image: url("../icons/search.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--dark-grey);
}
.search-landing__search-form:focus-within {
  outline: 2px solid var(--fixed-brand-yellow);
  outline-offset: 4px;
}
.search-landing__search-form-delete {
  opacity: 0;
}
.search-landing__search-form--filled .search-landing__search-form-delete {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 4px;
  right: 10px;
  opacity: 1;
}
.search-landing__search-form--filled .search-landing__search-form-delete::before {
  content: "";
  mask-image: url("../icons/close-sidebar.svg");
  background-color: var(--dark-grey);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 45%;
  left: 40%;
  transition: transform 300ms ease;
}
.search-landing__search-form--filled .search-landing__search-form-delete:hover::before {
  transform: rotate(90deg);
}
.dark-mode .search-landing__search-form {
  border: 1px solid var(--input-field-border-dark);
  background: var(--dark-grey-search-field);
}
.dark-mode .search-landing__search-form::before {
  background-color: var(--fixed-white);
}
.search-landing__search-input {
  -webkit-appearance: textfield;
  appearance: textfield;
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--dark-grey);
}
.search-landing__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-landing__search-input::-webkit-search-decoration {
  display: none;
}
.search-landing__search-input::-webkit-search-results-button {
  display: none;
}
.search-landing__search-input::-webkit-search-results-decoration {
  display: none;
}
.search-landing__search-input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.search-landing__search-input::-webkit-search-decoration, .search-landing__search-input::-webkit-search-cancel-button {
  margin: 0;
}
.search-landing__search-input:focus {
  outline: none;
}
.search-landing__search-input::placeholder {
  opacity: 0.7;
}
.dark-mode .search-landing__search-input {
  color: var(--fixed-white);
}
.dark-mode .search-landing__search-input::placeholder {
  color: var(--fixed-white);
}
.search-landing__search-suggestions {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: var(--spacing-small);
  border-radius: var(--border-radius);
  border: 1px solid var(--brand-grey);
  background: var(--light-grey);
  box-shadow: 2px 4px 8px 2px var(--dark-grey);
  max-height: 320px;
  overflow-y: auto;
  width: 100%;
  z-index: 20;
  scrollbar-width: none;
}
.search-landing__search-suggestions::-webkit-scrollbar {
  display: none;
}
.search-landing__search-suggestions--visible {
  display: block;
}
.search-landing__search-suggestions:not(:has(li)) {
  display: none;
}
.dark-mode .search-landing__search-suggestions {
  background: var(--dark-grey-search-field);
  border-color: var(--brand-grey);
  box-shadow: 2px 4px 8px 2px var(--fixed-dark-grey);
}
.search-landing__search-suggestions ul {
  padding: 0 var(--spacing-medium);
}
.search-landing__search-suggestions ul,
.search-landing__search-suggestions li {
  list-style: none;
}
.search-landing__search-suggestions-title {
  font-size: var(--text-size-small);
  font-weight: var(--medium-font-weight);
  color: var(--dark-grey);
  padding: var(--spacing-small) var(--spacing-xsmall) 0;
  margin-left: var(--spacing-medium);
}
.dark-mode .search-landing__search-suggestions-title {
  color: var(--fixed-white);
}
.search-landing__search-suggestion-item {
  padding: var(--spacing-xxsmall) 0;
}
.search-landing__search-suggestion-link {
  display: block;
  padding: var(--spacing-xsmall);
  color: var(--dark-grey);
  text-decoration: none;
  border-radius: 4px;
}
.search-landing__search-suggestion-link:hover {
  background: var(--brand-grey);
}
.search-landing__search-suggestion-link mark {
  background-color: var(--fixed-brand-yellow);
  color: var(--fixed-dark-grey);
}
.dark-mode .search-landing__search-suggestion-link {
  color: var(--fixed-white);
}
.dark-mode .search-landing__search-suggestion-link:hover {
  background: var(--fixed-dark-grey);
}
.search-landing__title {
  font-size: var(--heading-font-size-xxl);
  font-weight: var(--bold-font-weight);
  line-height: var(--heading-line-height);
  margin: 0;
  text-align: left;
  padding-bottom: var(--spacing-small);
}
@media (min-width: 768px) {
  .search-landing__title {
    text-align: center;
  }
}
.search-landing__text {
  font-size: var(--text-size-regular);
  line-height: var(--body-line-height);
  margin-bottom: var(--spacing-large);
  color: var(--dark-grey);
}
.dark-mode .search-landing__text {
  color: var(--fixed-white);
}
.search-landing__results {
  flex: 1;
  min-width: 0;
}
.search-landing__results ul {
  padding-inline-start: 0;
  margin-top: var(--spacing-medium);
}
@media (min-width: 1024px) {
  .search-landing__results ul {
    margin-top: var(--spacing-small);
  }
}
.search-landing__results ul,
.search-landing__results li {
  list-style: none;
  gap: var(--spacing-medium);
}
.search-landing__results a {
  text-decoration: none;
  color: var(--dark-grey);
}
.search-landing__results a:hover {
  text-decoration: underline;
}
.dark-mode .search-landing__results a {
  color: var(--fixed-white);
}
.search-landing__results p {
  margin: 0;
  font-size: var(--text-size-small);
  color: var(--dark-grey);
}
.dark-mode .search-landing__results p {
  color: var(--fixed-white);
}
.search-landing__results-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-medium);
}
.search-landing__results-item {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--brand-grey);
}
.search-landing__results-item:hover {
  background: var(--light-grey);
}
.dark-mode .search-landing__results-item {
  background: var(--fixed-dark-grey);
  border-color: var(--brand-grey);
}
.dark-mode .search-landing__results-item:hover {
  background: var(--graphite);
}
.search-landing__result-category {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 var(--spacing-small);
  border-radius: 4px;
  font-size: var(--text-size-xxsmall);
  background: var(--fixed-dark-grey);
  color: var(--fixed-brand-yellow);
  margin-bottom: var(--spacing-xsmall);
}
.dark-mode .search-landing__result-category {
  background: var(--fixed-white);
  color: var(--fixed-dark-grey);
}
.search-landing__result-tags {
  margin-top: var(--spacing-small);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xsmall);
}
.search-landing__result-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 var(--spacing-small);
  border-radius: 20px;
  font-size: var(--text-size-xxsmall);
  background: var(--light-grey);
  border: 1px solid var(--brand-grey);
  color: var(--dark-grey);
}
.dark-mode .search-landing__result-tag {
  background: var(--fixed-dark-grey);
  color: var(--fixed-white);
  border-color: var(--brand-grey);
}
.search-landing__result-title {
  font-size: var(--heading-font-size-s);
  font-weight: var(--bold-font-weight);
}
.dark-mode .search-landing__result-title {
  color: var(--fixed-white);
}
.search-landing__result-description {
  font-size: var(--text-size-regular);
  font-weight: var(--light-font-weight);
}
.dark-mode .search-landing__result-description {
  color: var(--fixed-white);
}
.search-landing .search-no-results {
  margin-top: var(--spacing-xxlarge);
  padding: 0 var(--spacing-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-medium);
}
.search-landing .search-no-results__icon {
  width: 72px;
  height: 72px;
  mask-image: url("../icons/search.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--dark-grey);
}
.search-landing .search-no-results__title {
  margin: 0;
  font-size: var(--heading-font-size-m);
  line-height: var(--heading-line-height);
}
.dark-mode .search-landing .search-no-results__title {
  color: var(--fixed-white);
}
.search-landing .search-no-results__text {
  margin: 0;
  max-width: 640px;
  font-size: var(--heading-font-size-xs);
  line-height: var(--body-line-height);
  color: var(--dark-grey);
  text-wrap-style: balance;
}
.dark-mode .search-landing .search-no-results__text {
  color: var(--fixed-white);
}
.search-landing .search-no-results__query {
  font-weight: var(--medium-font-weight);
}
.search-landing .search-no-results__suggestions {
  margin-top: var(--spacing-medium);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-small);
}
.search-landing--no-results .search-no-results {
  display: none;
}
.search-landing__loadmore {
  opacity: 1;
  transition: opacity 200ms ease;
}
.insights__results-sidebar-container.is-open .search-landing__loadmore {
  opacity: 0;
}
@media (min-width: 768px) {
  .search-landing__loadmore {
    opacity: 1;
    transition: none;
  }
  .insights__results-sidebar-container.is-open .search-landing__loadmore {
    opacity: 1;
  }
}
.search-landing__loadmore-container {
  transition: transform 350ms ease;
  will-change: transform;
  display: flex;
  flex: 0 0 auto;
  padding-top: 3px;
  align-items: center;
  width: fit-content;
  margin-top: var(--spacing-xxlarge);
}
@media (min-width: 768px) {
  .search-landing__loadmore-container {
    margin-top: 0;
    transform: translateX(176px);
    padding-left: var(--spacing-small);
  }
}
@media (min-width: 1024px) {
  .search-landing__loadmore-container {
    transform: translateX(0);
    padding: 0;
  }
}
.search-landing__filter-bar {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-xlarge);
  justify-content: space-between;
  opacity: 1;
  left: 0;
}
@media (min-width: 1024px) {
  .search-landing__filter-bar {
    gap: var(--spacing-small);
  }
}
@media (min-width: 1440px) {
  .search-landing__filter-bar {
    flex-direction: row;
    height: 64px;
    align-items: center;
    align-content: center;
  }
}
.search-landing__filter-bar--hidden {
  opacity: 0;
}
.search-landing__next-button {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 4px var(--spacing-small);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xsmall);
}
@media (min-width: 768px) {
  .search-landing__next-button {
    width: auto;
    height: auto;
  }
}
.search-landing__next-button::before {
  display: none;
}
.search-landing__next-button::after {
  content: "";
  mask-image: url("../icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
  flex-shrink: 0;
}
.search-landing__next-button:hover::after {
  background-color: var(--yellow-dark);
}
.search-landing__next-button:disabled {
  background-color: var(--light-grey);
  color: var(--dark-grey);
}
.search-landing__next-button:disabled:hover {
  background-color: var(--light-grey);
  color: var(--dark-grey);
}
.search-landing__next-button:disabled::after {
  background-color: var(--dark-grey);
}
.dark-mode .search-landing__next-button:disabled {
  background-color: var(--light-dark-grey);
  color: var(--light-grey);
  opacity: 0.5;
}
.dark-mode .search-landing__next-button:disabled::before {
  background-color: var(--light-grey);
}

/* stylelint-disable */
.editor-mode .editor-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--brand-grey);
  background-color: var(--light-grey);
  border-radius: var(--border-radius);
  min-height: 80px;
  width: 100%;
  box-sizing: border-box;
}
.editor-mode .editor-placeholder__label {
  font-family: var(--body-font-family);
  font-size: var(--text-size-small);
  color: var(--light-dark-grey);
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.editor-mode .editor-placeholder--image, .editor-mode .editor-placeholder--video {
  min-height: 200px;
}
@media (min-width: 768px) {
  .editor-mode .editor-placeholder--image, .editor-mode .editor-placeholder--video {
    min-height: 300px;
  }
}
.editor-mode .editor-placeholder--headline {
  min-height: 60px;
}
@media (min-width: 768px) {
  .editor-mode .editor-placeholder--headline {
    min-height: 80px;
  }
}
.editor-mode .editor-placeholder--text {
  min-height: 80px;
}
@media (min-width: 768px) {
  .editor-mode .editor-placeholder--text {
    min-height: 100px;
  }
}
.editor-mode .editor-placeholder--cta {
  min-height: 40px;
  max-width: 200px;
}

:root {
  color-scheme: light dark;
}

@media (min-width: 768px) {
  :root {
    --heading-font-size-xxxl: 200px;
  }
}
* {
  box-sizing: border-box;
}

html {
  hyphens: auto;
}

body {
  display: none;
  font-family: var(--body-font-family);
  font-size: var(--text-size-regular);
  font-weight: var(--light-font-weight);
  line-height: var(--body-line-height);
  color: var(--dark-grey);
  background-color: var(--white);
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
body.appear {
  display: block;
  overflow-x: hidden;
}
body.has-overlay {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.has-overlay {
    overflow: scroll;
  }
}

@supports (-webkit-touch-callout: none) {
  body.appear {
    min-height: -webkit-fill-available;
  }
}
header {
  height: var(--header-height-mobile);
}
@media (min-width: 1024px) {
  header {
    height: var(--header-height-desktop);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family), sans-serif;
  font-weight: 600;
  line-height: var(--heading-line-height);
  margin-top: 1em;
  margin-bottom: 0.5em;
  scroll-margin: calc(var(--nav-height) + 1em);
  hyphens: manual;
}

/* h1 - bold */
h1 {
  font-size: var(--heading-font-size-m);
  font-weight: var(--medium-font-weight);
}
@media (min-width: 768px) {
  h1 {
    font-size: var(--heading-font-size-xxl);
  }
}

/* h2 - light */
h2 {
  font-family: TWKBurns-Light, sans-serif;
  font-size: var(--heading-font-size-l);
  font-weight: var(--light-font-weight);
}
@media (min-width: 768px) {
  h2 {
    font-size: var(--heading-font-size-xl);
  }
}

/* h3 - bold */
h3 {
  font-size: var(--heading-font-size-m);
  font-weight: var(--medium-font-weight);
}

/* h4 - bold */
h4 {
  font-size: var(--heading-font-size-s);
  font-weight: var(--medium-font-weight);
}

h5 {
  font-size: var(--heading-font-size-xs);
}

h6 {
  font-size: var(--text-size-small);
}

/* XL type - bold */
.xl-headline {
  font-size: var(--heading-font-size-xxxl);
  font-weight: var(--medium-font-weight);
  line-height: 1;
}

@media (min-width: 768px) {
  .xl-headline {
    font-size: var(--heading-font-size-xxxl);
    line-height: var(--heading-line-height);
  }
}
p,
dl,
pre,
blockquote {
  list-style: none;
  margin: 0;
  padding: 0;
}

p,
div,
span {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

b,
strong {
  font-family: var(--body-strong-font-family);
  font-weight: var(--medium-font-weight);
}

code,
pre {
  font-family: var(--fixed-font-family);
  font-size: var(--text-size-small);
}

code {
  padding: 0.125em;
}

main pre {
  background-color: var(--light-color);
  padding: 1em;
  border-radius: 0.25em;
  overflow: scroll;
  white-space: pre;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--fixed-brand-yellow);
}

/* Default Content styles */
.default-content-wrapper {
  /* Titles Centered */
}
.default-content-wrapper a {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .default-content-wrapper h1,
  .default-content-wrapper h2,
  .default-content-wrapper h3,
  .default-content-wrapper h4,
  .default-content-wrapper h5,
  .default-content-wrapper h6 {
    text-align: center;
  }
}

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

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

svg {
  fill: currentColor;
}

/* Horizontal alignment for images smaller than picture tag */
p:has(> picture) {
  text-align: center;
}

/* Highlight yellow */
.highlight-yellow {
  color: var(--fixed-brand-yellow);
}

/* Vertical yellow line left of text */
.vertical-line-yellow {
  display: inline-block;
  width: 100%;
  border-left: 2px solid var(--fixed-brand-yellow);
  padding-left: 18px;
}
@media (min-width: 1024px) {
  .vertical-line-yellow {
    padding-left: 28px;
  }
}

/* Styling for program tag on RichText */
.program-line-class p {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.program-line-class p strong {
  margin-bottom: 0.5rem;
}
.program-line-class .program-text > ul {
  padding-left: 1.1rem;
}
@media (min-width: 1024px) {
  .program-line-class p {
    display: grid;
    grid-template-columns: 150px 1fr; /* Left column for <strong>, right for .program-text */
    gap: 20px; /* Space between columns */
    align-items: start;
  }
  .program-line-class .program-text > p {
    display: flex !important;
    flex-direction: column;
  }
}

/* Sections */
main .section {
  padding: var(--spacing-xxlarge) var(--spacing-small);
  position: relative;
  background-color: var(--white);
  color: var(--dark-grey);
}
@media (min-width: 768px) {
  main .section {
    padding: var(--spacing-xxlarge) var(--spacing-large);
    z-index: 1;
  }
}
main .section::-webkit-scrollbar {
  display: none;
}

/* Elements to be centered in the desktop page */
@media (min-width: 1440px) {
  .desktop-centered {
    max-width: 46.67%;
    margin-inline: auto;
  }
}

/* Accessibility */
.button:focus-visible,
button:not(.open-cookiebanner, .chatbot__icon-container):focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: unset;
}
.button:focus-visible::after,
button:not(.open-cookiebanner, .chatbot__icon-container):focus-visible::after,
input:focus-visible::after,
textarea:focus-visible::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid var(--white);
  border-radius: 22px;
  pointer-events: none;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.0625rem var(--white), 0 0 0 0.3125rem var(--dark-grey);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Custom alert box */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.custom-alert__box {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  border: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 87%;
}
@media (min-width: 768px) {
  .custom-alert__box {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .custom-alert__box {
    width: 30%;
  }
}
@media (min-width: 1440px) {
  .custom-alert__box {
    width: 25%;
  }
}
@media (min-width: 1980px) {
  .custom-alert__box {
    width: 20%;
  }
}
.custom-alert__message {
  margin-bottom: var(--spacing-xsmall);
  font-weight: var(--bold-font-weight);
}
.custom-alert__button:hover {
  background-color: var(--dark-grey);
  color: var(--yellow-dark);
}

.hero__scroll-hint {
  position: fixed;
  bottom: var(--spacing-small);
  left: 50%;
  transform: translate(-50%, 0);
  width: 64px;
  height: 64px;
  margin-left: calc(var(--spacing-large) * -1);
  pointer-events: none;
  animation: floatFade 2s ease-in-out infinite;
  background-color: var(--dark-grey);
  mask-image: url("../icons/chevron-down-small.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../icons/chevron-down-small.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
@media (max-width: 1023.98px) {
  .hero__scroll-hint {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
