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

.mqf-site-main {
  min-height: 100vh;
}

.mqf-hero {
  --mqf-hero-red: #e20917;
  --mqf-hero-red-dark: #bd0712;
  --mqf-hero-ink: #17191c;
  --mqf-hero-muted: #5b6269;
  --mqf-hero-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: calc(var(--mqf-header-height, 92px) + 24px) 24px 64px;
  color: var(--mqf-hero-ink);
  background: #ffffff;
}

.mqf-hero__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  column-gap: 52px;
  row-gap: 0;
  width: min(100%, 1480px);
  min-height: 600px;
  margin: 0 auto;
}

.mqf-hero__content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 540px;
  margin-top: 44px;
  animation: mqf-hero-copy-enter 520ms var(--mqf-hero-ease) 40ms both;
}

.mqf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eef0f2;
  color: #59616a;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.mqf-hero__title {
  max-width: none;
  margin: 0;
  font-size: 40px;
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.mqf-hero__title span {
  display: inline;
  margin-left: 0.18em;
  color: var(--mqf-hero-red);
}

.mqf-hero__summary {
  max-width: 38ch;
  margin: 26px 0 0;
  color: var(--mqf-hero-muted);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.mqf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  animation: mqf-hero-actions-enter 480ms var(--mqf-hero-ease) 150ms both;
}

.mqf-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--mqf-hero-ease);
}

.mqf-hero__button--primary {
  color: #ffffff;
  background: var(--mqf-hero-red);
  border-color: var(--mqf-hero-red);
}

.mqf-hero__button--primary:hover {
  background: var(--mqf-hero-red-dark);
  border-color: var(--mqf-hero-red-dark);
  box-shadow: 0 10px 22px rgba(226, 9, 23, 0.18);
  transform: translateY(-2px);
}

.mqf-hero__button--secondary {
  color: var(--mqf-hero-ink);
  background: #ffffff;
  border-color: #cfd4d8;
}

.mqf-hero__button--secondary:hover {
  background: #f2f4f5;
  border-color: #aeb5ba;
  transform: translateY(-2px);
}

.mqf-hero__button:focus-visible,
.mqf-category-panel__link:focus-visible {
  outline: 3px solid rgba(226, 9, 23, 0.34);
  outline-offset: 3px;
}

.mqf-hero__button-icon {
  width: 18px;
  height: 18px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease-out;
}

.mqf-hero__button--primary:hover .mqf-hero__button-icon {
  transform: translateX(2px);
}

.mqf-category-showcase {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 0;
  animation: mqf-hero-showcase-enter 560ms var(--mqf-hero-ease) 90ms both;
}

.mqf-hero-context {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  width: 100%;
  max-width: 520px;
  min-height: 154px;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-top: 19px;
  border-top: 1px solid #dfe3e6;
  overflow: hidden;
}

.mqf-hero-context::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--mqf-hero-red);
  content: "";
}

.mqf-hero-context__item {
  position: absolute;
  inset: 19px 0 auto;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 340ms ease,
    transform 460ms var(--mqf-hero-ease),
    visibility 0s linear 460ms;
}

.mqf-hero-context__item.is-active {
  position: relative;
  inset: auto;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 90ms;
}

.mqf-hero-context__index {
  padding-top: 2px;
  color: var(--mqf-hero-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.mqf-hero-context__body {
  min-width: 0;
}

.mqf-hero-context__eyebrow,
.mqf-hero-context__title,
.mqf-hero-context__description {
  margin: 0;
  letter-spacing: 0;
}

.mqf-hero-context__eyebrow {
  color: #6a7178;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.mqf-hero-context__title {
  margin-top: 6px;
  color: var(--mqf-hero-ink);
  font-size: 19px;
  font-weight: 790;
  line-height: 1.2;
  text-wrap: balance;
}

.mqf-hero-context__description {
  max-width: 46ch;
  margin-top: 7px;
  color: var(--mqf-hero-muted);
  font-size: 14px;
  font-weight: 480;
  line-height: 1.42;
}

.mqf-hero-context__controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 15px 0 0 48px;
}

.mqf-hero-context__control {
  position: relative;
  width: 32px;
  height: 34px;
  padding: 0;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.mqf-hero-context__control::before,
.mqf-hero-context__control::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  content: "";
}

.mqf-hero-context__control::before {
  background: #d7dbde;
  transition: background-color 180ms ease;
}

.mqf-hero-context__control::after {
  background: #4f565c;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--mqf-hero-ease);
}

.mqf-hero-context__control:hover::before {
  background: #9da4aa;
}

.mqf-hero-context__control.is-active::after {
  transform: scaleX(1);
}

.mqf-hero-context__control:focus-visible {
  outline: 3px solid rgba(226, 9, 23, 0.3);
  outline-offset: -2px;
}

.mqf-category-accordion {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: 596px;
}

.mqf-category-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: #17191c;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  isolation: isolate;
  transition:
    flex-grow 400ms var(--mqf-hero-ease),
    background-color 240ms ease;
}

.mqf-category-accordion.is-auto-transition .mqf-category-panel {
  transition:
    flex-grow 680ms var(--mqf-hero-ease),
    background-color 300ms ease;
}

.mqf-category-accordion.is-auto-transition .mqf-category-panel__visual {
  transition:
    filter 420ms ease,
    transform 680ms var(--mqf-hero-ease);
}

.mqf-category-accordion[data-count="2"] .mqf-category-panel.is-active {
  flex-grow: 2.125;
}

.mqf-category-accordion[data-count="3"] .mqf-category-panel.is-active {
  flex-grow: 2.55;
}

.mqf-category-accordion[data-count="4"] .mqf-category-panel.is-active {
  flex-grow: 5;
}

.mqf-category-accordion[data-count="5"] .mqf-category-panel.is-active {
  flex-grow: 3.4;
}

.mqf-category-accordion[data-count="6"] .mqf-category-panel.is-active {
  flex-grow: 3.77;
}

.mqf-category-panel__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  filter: saturate(0.74) brightness(0.68) blur(1.8px);
  transform: scale(1.045);
  transform-origin: center;
  transition:
    filter 300ms ease,
    transform 400ms var(--mqf-hero-ease);
}

.mqf-category-panel.is-active .mqf-category-panel__visual {
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1);
}

.mqf-category-panel__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mqf-category-panel--heavy .mqf-category-panel__image {
  object-position: 50% 54%;
}

.mqf-category-panel--light .mqf-category-panel__image {
  object-position: 50% 58%;
}

.mqf-category-panel--investment .mqf-category-panel__image {
  object-position: 52% 50%;
}

.mqf-category-panel--about .mqf-category-panel__image {
  object-position: 50% 58%;
}

.mqf-category-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.72) 0, rgba(10, 12, 14, 0.3) 70px, transparent 138px),
    linear-gradient(0deg, rgba(10, 12, 14, 0.78) 0, rgba(10, 12, 14, 0.2) 28%, transparent 56%);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.mqf-category-panel.is-active .mqf-category-panel__shade {
  opacity: 1;
}

.mqf-category-panel__trigger {
  position: absolute;
  z-index: 4;
  inset: 0 auto 0 0;
  display: flex;
  width: min(74px, 100%);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 12px 18px;
  color: #ffffff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mqf-category-panel__trigger:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -5px;
}

.mqf-category-panel__vertical-label {
  display: block;
  min-height: 0;
  margin-bottom: 0;
  overflow: visible;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.mqf-category-panel__icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: var(--mqf-hero-red);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(20, 22, 24, 0.2);
  transition:
    background-color 180ms ease,
    transform 220ms var(--mqf-hero-ease);
}

.mqf-category-panel__icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mqf-category-panel:hover .mqf-category-panel__icon,
.mqf-category-panel__trigger:focus-visible .mqf-category-panel__icon {
  background: var(--mqf-hero-red-dark);
  transform: translateY(-2px);
}

.mqf-category-panel__details {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  visibility: hidden;
  opacity: 1;
  pointer-events: none;
  transform: none;
  transition: visibility 0s linear 300ms;
}

.mqf-category-panel.is-active .mqf-category-panel__details {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 400ms;
}

.mqf-category-accordion.is-auto-transition .mqf-category-panel.is-active .mqf-category-panel__details {
  transition-delay: 680ms;
}

.mqf-category-panel__summary {
  display: -webkit-box;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.56);
  text-wrap: wrap;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 260ms ease,
    transform 300ms var(--mqf-hero-ease);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mqf-category-panel.is-active .mqf-category-panel__summary {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 620ms;
}

.mqf-category-accordion.is-auto-transition .mqf-category-panel.is-active .mqf-category-panel__summary {
  transition-delay: 900ms;
}

.mqf-category-panel__link {
  display: inline-flex;
  margin-left: 72px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--mqf-hero-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 220ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 260ms var(--mqf-hero-ease);
}

.mqf-category-panel.is-active .mqf-category-panel__link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 400ms, 0s, 0s, 400ms;
}

.mqf-category-accordion.is-auto-transition .mqf-category-panel.is-active .mqf-category-panel__link {
  transition-delay: 680ms, 0s, 0s, 680ms;
}

.mqf-category-panel__link:hover {
  color: #ffffff;
  background: var(--mqf-hero-red);
  transform: translateY(-2px);
}

.mqf-category-panel__link svg {
  display: block;
  width: 17px;
  height: 17px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease-out;
}

.mqf-category-panel__link:hover svg {
  transform: translateX(2px);
}

.mqf-page-continuation {
  min-height: 32vh;
  background: #ffffff;
}

@keyframes mqf-hero-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mqf-hero-actions-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mqf-hero-showcase-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1281px) {
  .mqf-hero__inner {
    grid-template-columns: minmax(460px, 0.7fr) minmax(720px, 1.3fr);
    column-gap: 32px;
  }
}

@media (min-width: 1100px) {
  .mqf-category-panel {
    flex-basis: 74px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

@media (min-width: 1400px) {
  .mqf-hero {
    padding-inline: 18px;
  }

  .mqf-hero__inner {
    width: min(90%, 1480px);
  }
}

@media (max-width: 1280px) and (min-width: 1100px) {
  .mqf-hero__inner {
    grid-template-columns: minmax(390px, 0.86fr) minmax(570px, 1.14fr);
    column-gap: 36px;
  }

  .mqf-hero__title {
    font-size: 36px;
  }
}

@media (min-width: 1100px) and (max-height: 780px) {
  .mqf-hero {
    padding-top: calc(var(--mqf-header-height, 92px) + 14px);
    padding-bottom: 38px;
  }

  .mqf-hero__inner {
    min-height: 520px;
  }

  .mqf-hero__content {
    margin-top: 34px;
  }

  .mqf-hero-context {
    margin-bottom: 5px;
  }

  .mqf-hero__title {
    font-size: 38px;
  }

  .mqf-hero__summary {
    margin-top: 20px;
    font-size: 19px;
  }

  .mqf-hero__actions {
    margin-top: 26px;
  }

  .mqf-category-accordion {
    height: 510px;
  }
}

@media (min-width: 1100px) and (min-height: 641px) and (max-height: 800px) {
  .mqf-hero {
    padding-top: calc(var(--mqf-header-height, 92px) + 24px);
    padding-bottom: 36px;
  }

  .mqf-hero__inner {
    min-height: 0;
  }

  .mqf-hero__content {
    margin-top: 30px;
  }

  .mqf-hero__eyebrow {
    min-height: 28px;
    margin-bottom: 20px;
    padding: 6px 12px;
    font-size: 11.5px;
  }

  .mqf-hero__title {
    font-size: 34px;
  }

  .mqf-hero__summary {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.45;
  }

  .mqf-hero__actions {
    margin-top: 32px;
  }

  .mqf-hero__button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .mqf-category-showcase {
    align-self: stretch;
    margin-bottom: 10px;
  }

  .mqf-category-accordion {
    height: 100%;
  }

  .mqf-hero-context {
    min-height: 148px;
    margin-top: 34px;
    margin-bottom: 10px;
    padding-top: 17px;
  }

  .mqf-hero-context__item {
    inset-block-start: 17px;
  }

  .mqf-hero-context__title {
    font-size: 17px;
  }

  .mqf-hero-context__description {
    font-size: 13px;
    line-height: 1.45;
  }

  .mqf-category-panel__summary {
    max-width: none;
    font-size: 12px;
  }
}

@media (max-width: 1099px) {
  .mqf-hero {
    padding: calc(var(--mqf-header-height, 84px) + 24px) 22px 56px;
  }

  .mqf-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 42px;
    min-height: 0;
  }

  .mqf-hero__content {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 760px);
    max-width: none;
    margin-top: 0;
  }

  .mqf-category-showcase {
    grid-column: 1;
    grid-row: 2;
  }

  .mqf-hero-context {
    grid-column: 1;
    grid-row: 3;
    max-width: 760px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .mqf-hero__title {
    max-width: none;
    font-size: 44px;
  }

  .mqf-hero__summary {
    max-width: 48ch;
  }

  .mqf-category-accordion {
    height: 520px;
  }
}

@media (min-width: 760px) and (max-width: 1099px) {
  .mqf-hero {
    padding: calc(var(--mqf-header-height, 84px) + 18px) 22px 46px;
  }

  .mqf-hero__inner {
    grid-template-columns: minmax(280px, 0.82fr) minmax(400px, 1.18fr);
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: 22px;
    row-gap: 0;
    min-height: 620px;
  }

  .mqf-hero__content {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin-top: 47px;
  }

  .mqf-category-showcase {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .mqf-hero-context {
    grid-column: 1;
    grid-row: 2;
    min-height: 148px;
    margin-top: 18px;
    margin-bottom: 12px;
    padding-top: 17px;
  }

  .mqf-hero-context__item {
    inset-block-start: 17px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .mqf-hero-context__controls {
    margin-left: 38px;
  }

  .mqf-hero-context__index {
    font-size: 12px;
  }

  .mqf-hero-context__title {
    font-size: 17px;
  }

  .mqf-hero-context__description {
    font-size: 13px;
  }

  .mqf-hero__title {
    max-width: none;
    font-size: 28px;
    line-height: 1.04;
  }

  .mqf-hero__title span {
    display: inline;
    margin: 0 0 0 0.18em;
  }

  .mqf-hero__summary {
    max-width: 32ch;
    margin-top: 20px;
    font-size: 17px;
  }

  .mqf-hero__actions {
    gap: 8px;
    margin-top: 24px;
  }

  .mqf-hero__button {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .mqf-category-accordion {
    height: 580px;
  }

  .mqf-category-panel__trigger {
    width: min(62px, 100%);
    padding: 26px 8px 14px;
  }

  .mqf-category-panel__vertical-label {
    font-size: 14px;
  }

  .mqf-category-panel__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .mqf-category-panel__icon svg {
    width: 20px;
    height: 20px;
  }

  .mqf-category-panel__details {
    right: 12px;
    bottom: 14px;
    left: 12px;
    gap: 12px;
  }

  .mqf-category-panel__summary {
    max-width: none;
    font-size: 12px;
  }

  .mqf-category-panel__link {
    margin-left: 60px;
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12px;
  }
}

@media (min-width: 920px) and (max-width: 1099px) {
  .mqf-hero__title {
    font-size: 36px;
  }
}

@media (max-width: 720px) {
  .mqf-hero {
    padding-inline: 18px;
    padding-bottom: 48px;
  }

  .mqf-hero__inner {
    row-gap: 12px;
  }

  .mqf-hero__title {
    max-width: none;
    font-size: 38px;
    line-height: 1.06;
  }

  .mqf-hero__title span {
    display: inline;
    margin: 0 0 0 0.18em;
  }

  .mqf-hero__summary {
    margin-top: 21px;
    font-size: 19px;
  }

  .mqf-hero__actions {
    margin-top: 28px;
  }

  .mqf-category-showcase {
    min-width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .mqf-hero-context {
    width: 100%;
    max-width: none;
    min-height: 146px;
    margin-top: -24px;
    touch-action: pan-y;
  }

  .mqf-category-accordion {
    gap: 10px;
    height: 460px;
    padding: 0 18px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .mqf-category-accordion::-webkit-scrollbar {
    display: none;
  }

  .mqf-category-accordion .mqf-category-panel,
  .mqf-category-accordion .mqf-category-panel.is-active {
    flex: 0 0 84vw;
    scroll-snap-align: center;
  }

  .mqf-category-panel__visual,
  .mqf-category-panel.is-active .mqf-category-panel__visual {
    filter: none;
    transform: scale(1);
  }

  .mqf-category-panel__details {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .mqf-category-panel__vertical-label {
    font-weight: 700;
  }

  .mqf-category-panel__link {
    margin-left: 72px;
  }
}

@media (max-width: 430px) {
  .mqf-hero {
    padding-top: calc(var(--mqf-header-height, 78px) + 18px);
    padding-bottom: 42px;
  }

  .mqf-hero__title {
    max-width: none;
    font-size: 26px;
  }

  .mqf-hero__summary {
    font-size: 18px;
    line-height: 1.42;
  }

  .mqf-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .mqf-hero-context {
    min-height: 150px;
    padding-top: 17px;
  }

  .mqf-hero-context__item {
    inset-block-start: 17px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
  }

  .mqf-hero-context__controls {
    margin-left: 36px;
  }

  .mqf-hero-context__title {
    font-size: 17px;
  }

  .mqf-hero-context__description {
    font-size: 13px;
  }

  .mqf-hero__button {
    width: 100%;
  }

  .mqf-category-accordion {
    height: 430px;
  }

  .mqf-category-panel__trigger {
    width: 68px;
    padding: 28px 10px 14px;
  }

  .mqf-category-panel__vertical-label {
    margin-bottom: 0;
    font-size: 16px;
  }

  .mqf-category-panel__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .mqf-category-panel__icon svg {
    width: 21px;
    height: 21px;
  }

  .mqf-category-panel__details {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 12px;
  }

  .mqf-category-panel__summary {
    max-width: none;
    font-size: 12px;
  }

  .mqf-category-panel__link {
    margin-left: 66px;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (max-width: 350px) {
  .mqf-hero__title {
    font-size: 24px;
  }

  .mqf-category-accordion {
    height: 410px;
  }

  .mqf-category-panel__details {
    right: 10px;
    left: 10px;
  }

  .mqf-category-panel__link {
    margin-left: 62px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .mqf-category-panel__link svg {
    display: none;
  }
}

@media (min-width: 700px) and (max-width: 1099px) and (max-height: 520px) {
  .mqf-hero {
    padding: calc(var(--mqf-header-height, 84px) + 10px) 18px 28px;
  }

  .mqf-hero__inner {
    grid-template-columns: minmax(280px, 0.8fr) minmax(390px, 1.2fr);
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 0;
    min-height: 0;
  }

  .mqf-hero__content {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }

  .mqf-category-showcase {
    grid-column: 2;
    grid-row: 1;
  }

  .mqf-hero-context {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    min-height: 132px;
    margin-top: 18px;
    margin-bottom: 0;
  }

  .mqf-hero__title {
    font-size: 34px;
  }

  .mqf-hero__title span {
    margin-top: 5px;
  }

  .mqf-hero__summary {
    margin-top: 14px;
    font-size: 17px;
  }

  .mqf-hero__actions {
    margin-top: 18px;
  }

  .mqf-hero__button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .mqf-category-accordion {
    height: 300px;
  }

  .mqf-category-panel__trigger {
    width: 62px;
    padding: 14px 8px 12px;
  }

  .mqf-category-panel__vertical-label {
    margin-bottom: 0;
    font-size: 14px;
  }

  .mqf-category-panel__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .mqf-category-panel__details {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 10px;
  }

  .mqf-category-panel__link {
    margin-left: 60px;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }
}

/* Full-height composition for wide desktop displays only. */
@media (min-width: 1600px) and (min-height: 820px) {
  .mqf-hero {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding-top: calc(var(--mqf-header-height, 92px) + 14px);
    padding-bottom: 32px;
  }

  .mqf-hero__inner {
    min-height: clamp(660px, 74svh, 740px);
  }

  .mqf-category-showcase {
    align-self: stretch;
    margin-left: 20px;
  }

  .mqf-category-accordion {
    height: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .mqf-hero__content,
  .mqf-hero__actions,
  .mqf-category-showcase {
    animation: none;
  }

  .mqf-category-panel,
  .mqf-category-panel__visual,
  .mqf-category-panel__details,
  .mqf-category-panel__summary,
  .mqf-category-panel__link,
  .mqf-category-panel__icon {
    transition: none;
  }

  .mqf-hero-context__item {
    transition: none;
  }
}
