/* MV Miracle Makers Layout 1.1.0 — namespace .mm-layout-* */
.mm-legacy-hidden {
  display: none !important;
}

body.mm-layout-lock {
  overflow: hidden !important;
}

.mm-layout-header,
.mm-layout-footer {
  --mm-layout-black: #050505;
  --mm-layout-ink: #0d0d0d;
  --mm-layout-charcoal: #171717;
  --mm-layout-line: #30302d;
  --mm-layout-bone: #f2efe8;
  --mm-layout-silver: #a6a59f;
  --mm-layout-accent: #edff38;
  --mm-layout-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --mm-layout-body: Inter, "Helvetica Neue", Arial, sans-serif;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  color: var(--mm-layout-bone);
  font-family: var(--mm-layout-body);
  font-size: 16px;
  line-height: 1.5;
}

.mm-layout-header *,
.mm-layout-header *::before,
.mm-layout-header *::after,
.mm-layout-footer *,
.mm-layout-footer *::before,
.mm-layout-footer *::after {
  box-sizing: border-box;
}

.mm-layout-header a,
.mm-layout-footer a {
  color: inherit;
  text-decoration: none;
}

.mm-layout-header img,
.mm-layout-footer img {
  display: block;
  max-width: 100%;
}

.mm-layout-header button,
.mm-layout-header input,
.mm-layout-footer button,
.mm-layout-footer input {
  font: inherit;
}

.mm-layout-header button {
  border-radius: 0;
  box-shadow: none;
}

.mm-layout-header :focus-visible,
.mm-layout-footer :focus-visible {
  outline: 3px solid var(--mm-layout-accent);
  outline-offset: 3px;
}

.mm-layout-shell {
  width: min(calc(100% - 56px), 1420px);
  margin-inline: auto;
}

.mm-layout-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Header */
.mm-layout-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mm-layout-black);
}

.mm-layout-announcement {
  position: relative;
  z-index: 6;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--mm-layout-accent);
  color: var(--mm-layout-black);
}

.mm-layout-announcement p {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.mm-layout-bar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--mm-layout-line);
  background: rgba(5, 5, 5, 0.985);
}

.mm-layout-bar__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 104px minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  transition: min-height 180ms ease;
}

.mm-layout-header.is-scrolled .mm-layout-bar__inner {
  min-height: 72px;
}

.mm-layout-logo {
  width: 74px;
  height: 74px;
  display: block;
  overflow: hidden;
  transition: width 180ms ease, height 180ms ease;
}

.mm-layout-header.is-scrolled .mm-layout-logo {
  width: 62px;
  height: 62px;
}

.mm-layout-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mm-layout-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 3.2vw, 58px);
}

.mm-layout-nav > a,
.mm-layout-nav > button {
  position: relative;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mm-layout-bone);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, min-height 180ms ease;
}

.mm-layout-header.is-scrolled .mm-layout-nav > a,
.mm-layout-header.is-scrolled .mm-layout-nav > button {
  min-height: 72px;
}

.mm-layout-nav > a > span,
.mm-layout-nav > button > span {
  color: var(--mm-layout-accent);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.mm-layout-nav > button svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  transition: transform 180ms ease;
}

.mm-layout-header.is-mega-open .mm-layout-nav > button svg {
  transform: rotate(180deg);
}

.mm-layout-nav > a::after,
.mm-layout-nav > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--mm-layout-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.mm-layout-nav > a:hover::after,
.mm-layout-nav > button:hover::after,
.mm-layout-header.is-mega-open .mm-layout-nav > button::after {
  transform: scaleX(1);
}

.mm-layout-utilities {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}

.mm-layout-utility {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mm-layout-bone);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.mm-layout-utility svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.mm-layout-utility:hover {
  color: var(--mm-layout-accent);
}

.mm-layout-cart strong {
  min-width: 23px;
  min-height: 23px;
  display: inline-grid;
  place-items: center;
  margin-left: 1px;
  border-radius: 50%;
  background: var(--mm-layout-accent);
  color: var(--mm-layout-black);
  font-size: 0.6rem;
}

.mm-layout-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-content: center;
  justify-items: start;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mm-layout-bone);
  cursor: pointer;
}

.mm-layout-menu-toggle::before,
.mm-layout-menu-toggle::after,
.mm-layout-menu-toggle > span:first-child {
  content: "";
  width: 26px;
  height: 1px;
  display: block;
  background: currentColor;
}

.mm-layout-search,
.mm-layout-mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--mm-layout-line);
  background: var(--mm-layout-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.mm-layout-search.is-open,
.mm-layout-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mm-layout-panel-index {
  display: block;
  color: var(--mm-layout-accent);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mm-layout-search {
  padding-block: 46px 54px;
}

.mm-layout-search form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
  border-bottom: 1px solid #74746f;
}

.mm-layout-search input {
  min-width: 0;
  min-height: 74px;
  padding: 0 20px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mm-layout-bone);
  font-family: var(--mm-layout-display);
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.mm-layout-search input::placeholder {
  color: #555550;
  opacity: 1;
}

.mm-layout-search button {
  min-width: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 0 22px;
  border: 0;
  background: transparent;
  color: var(--mm-layout-accent);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.mm-layout-search button span:last-child {
  font-size: 1.25rem;
}

.mm-layout-mega {
  max-height: calc(100dvh - 116px);
  overflow-y: auto;
  padding-block: 52px;
}

.mm-layout-mega__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(420px, 1.6fr) minmax(210px, 0.65fr);
  gap: clamp(40px, 5vw, 88px);
}

.mm-layout-mega__intro p {
  margin: 18px 0 30px;
  font-family: var(--mm-layout-display);
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.mm-layout-mega__intro > a,
.mm-layout-mega__drop > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--mm-layout-silver);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.mm-layout-mega__intro > a:hover,
.mm-layout-mega__drop > a:hover {
  color: var(--mm-layout-accent);
}

.mm-layout-mega__links {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--mm-layout-line);
}

.mm-layout-mega__links a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--mm-layout-line);
  transition: color 160ms ease, padding-left 160ms ease;
}

.mm-layout-mega__links a:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--mm-layout-line);
}

.mm-layout-mega__links a:nth-child(even) {
  padding-left: 28px;
}

.mm-layout-mega__links a:hover {
  color: var(--mm-layout-accent);
}

.mm-layout-mega__links span {
  color: var(--mm-layout-accent);
  font-size: 0.5rem;
  font-weight: 950;
}

.mm-layout-mega__links strong {
  overflow: hidden;
  font-family: var(--mm-layout-display);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mm-layout-mega__links i {
  color: var(--mm-layout-silver);
  font-size: 0.9rem;
  font-style: normal;
}

.mm-layout-mega__drop {
  min-height: 280px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--mm-layout-line);
  background: var(--mm-layout-charcoal);
}

.mm-layout-mega__drop > span {
  color: var(--mm-layout-accent);
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mm-layout-mega__drop > strong {
  font-family: var(--mm-layout-display);
  font-size: clamp(2.1rem, 3vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.mm-layout-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: min(94vw, 520px);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 24px;
  border-right: 1px solid var(--mm-layout-line);
  background: var(--mm-layout-black);
  transform: translateX(-102%);
  visibility: hidden;
  transition: transform 230ms ease, visibility 230ms ease;
}

.mm-layout-header.is-drawer-open .mm-layout-drawer {
  transform: translateX(0);
  visibility: visible;
}

.mm-layout-drawer__top {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--mm-layout-line);
}

.mm-layout-drawer__top > span {
  padding-top: 8px;
  color: var(--mm-layout-accent);
  font-size: 0.55rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mm-layout-drawer__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mm-layout-bone);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.mm-layout-drawer__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  margin-top: 20px;
  border: 1px solid var(--mm-layout-line);
}

.mm-layout-drawer__search input,
.mm-layout-drawer__search button {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mm-layout-bone);
}

.mm-layout-drawer__search input {
  min-width: 0;
  padding: 0 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mm-layout-drawer__search button {
  color: var(--mm-layout-accent);
  cursor: pointer;
}

.mm-layout-drawer__nav {
  overflow-y: auto;
  padding-block: 20px;
}

.mm-layout-drawer__nav a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--mm-layout-line);
}

.mm-layout-drawer__nav a > span {
  color: var(--mm-layout-accent);
  font-size: 0.52rem;
  font-weight: 950;
}

.mm-layout-drawer__nav a > strong {
  font-family: var(--mm-layout-display);
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.mm-layout-drawer__nav a > i {
  color: var(--mm-layout-silver);
  font-style: normal;
}

.mm-layout-drawer__nav .mm-layout-drawer__category {
  min-height: 48px;
}

.mm-layout-drawer__nav .mm-layout-drawer__category > strong {
  font-size: 1rem;
  line-height: 1.1;
}

.mm-layout-drawer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 18px;
  border-top: 1px solid var(--mm-layout-line);
}

.mm-layout-drawer__bottom a {
  color: var(--mm-layout-silver);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mm-layout-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: block;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  cursor: default;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.mm-layout-header.is-overlay-visible .mm-layout-overlay {
  opacity: 1;
  visibility: visible;
}

/* Footer */
.mm-layout-footer {
  overflow: hidden;
  border-top: 1px solid var(--mm-layout-line);
  background: var(--mm-layout-black);
}

.mm-layout-footer__statement {
  padding-block: clamp(72px, 9vw, 132px);
  border-bottom: 1px solid var(--mm-layout-line);
}

.mm-layout-footer__statement > .mm-layout-shell > span {
  display: block;
  margin-bottom: 26px;
  color: var(--mm-layout-accent);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.mm-layout-footer__statement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}

.mm-layout-footer__statement p {
  max-width: 1120px;
  margin: 0;
  font-family: var(--mm-layout-display);
  font-size: clamp(4rem, 8.2vw, 9.6rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.mm-layout-footer__statement-row > a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid var(--mm-layout-accent);
  background: var(--mm-layout-accent);
  color: var(--mm-layout-black);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.mm-layout-footer__statement-row > a:hover {
  background: var(--mm-layout-bone);
  border-color: var(--mm-layout-bone);
}

.mm-layout-footer__statement-row > a i {
  font-size: 1rem;
  font-style: normal;
}

.mm-layout-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.55fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(36px, 5vw, 76px);
  padding-block: 74px;
}

.mm-layout-footer__brand > a {
  width: 96px;
  height: 96px;
  display: block;
}

.mm-layout-footer__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mm-layout-footer__brand > strong {
  display: block;
  margin-top: 22px;
  font-family: var(--mm-layout-display);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.mm-layout-footer__brand p {
  max-width: 34ch;
  margin: 10px 0 0;
  color: var(--mm-layout-silver);
  font-size: 0.76rem;
  line-height: 1.7;
}

.mm-layout-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.mm-layout-footer__column h2 {
  margin: 0 0 13px;
  color: var(--mm-layout-accent);
  font-size: 0.59rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.mm-layout-footer__column a {
  color: var(--mm-layout-silver);
  font-size: 0.72rem;
  line-height: 1.45;
  transition: color 150ms ease;
}

.mm-layout-footer__column a:hover {
  color: var(--mm-layout-bone);
}

.mm-layout-newsletter {
  padding-block: 48px;
  border-top: 1px solid var(--mm-layout-line);
  border-bottom: 1px solid var(--mm-layout-line);
  background: var(--mm-layout-ink);
}

.mm-layout-newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 60px;
}

.mm-layout-newsletter__inner > div:first-child span {
  color: var(--mm-layout-accent);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.mm-layout-newsletter__inner > div:first-child p {
  margin: 12px 0 0;
  font-family: var(--mm-layout-display);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.mm-layout-newsletter__form .block_newsletter,
.mm-layout-newsletter__form form {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.mm-layout-newsletter__form input[type="email"],
.mm-layout-newsletter__form input[type="text"] {
  min-height: 54px;
  border: 1px solid #61615d;
  border-radius: 0;
  background: #0b0b0b;
  color: var(--mm-layout-bone);
}

.mm-layout-newsletter__form button,
.mm-layout-newsletter__form input[type="submit"] {
  min-height: 54px;
  border: 1px solid var(--mm-layout-accent);
  border-radius: 0;
  background: var(--mm-layout-accent);
  color: var(--mm-layout-black);
  font-weight: 950;
}

.mm-layout-footer__legal {
  padding-block: 19px;
  background: var(--mm-layout-black);
  color: #777772;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mm-layout-footer__legal .mm-layout-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.mm-layout-footer__legal a {
  justify-self: end;
}

.mm-layout-footer__legal a:hover {
  color: var(--mm-layout-accent);
}

@media (max-width: 1240px) {
  .mm-layout-bar__inner {
    grid-template-columns: 88px minmax(280px, 1fr) auto;
    gap: 24px;
  }

  .mm-layout-utilities {
    gap: 16px;
  }

  .mm-layout-account span,
  .mm-layout-search-toggle span {
    display: none;
  }

  .mm-layout-mega__grid {
    grid-template-columns: minmax(220px, 0.75fr) minmax(390px, 1.5fr) minmax(190px, 0.6fr);
    gap: 34px;
  }
}

@media (max-width: 1120px) {
  .mm-layout-bar__inner,
  .mm-layout-header.is-scrolled .mm-layout-bar__inner {
    min-height: 74px;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
  }

  .mm-layout-menu-toggle {
    display: grid;
  }

  .mm-layout-logo,
  .mm-layout-header.is-scrolled .mm-layout-logo {
    width: 64px;
    height: 64px;
    justify-self: center;
  }

  .mm-layout-nav,
  .mm-layout-mega {
    display: none;
  }

  .mm-layout-footer__grid {
    grid-template-columns: 1.4fr repeat(3, minmax(115px, 0.7fr));
    gap: 34px;
  }
}

@media (max-width: 800px) {
  .mm-layout-shell {
    width: calc(100% - 32px);
  }

  .mm-layout-announcement {
    min-height: 27px;
  }

  .mm-layout-announcement p {
    font-size: 0.5rem;
  }

  .mm-layout-bar__inner,
  .mm-layout-header.is-scrolled .mm-layout-bar__inner {
    min-height: 66px;
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }

  .mm-layout-logo,
  .mm-layout-header.is-scrolled .mm-layout-logo {
    width: 58px;
    height: 58px;
  }

  .mm-layout-account,
  .mm-layout-search-toggle {
    display: none;
  }

  .mm-layout-utilities {
    gap: 4px;
  }

  .mm-layout-cart > span {
    display: none;
  }

  .mm-layout-cart strong {
    min-width: 20px;
    min-height: 20px;
  }

  .mm-layout-search {
    padding-block: 30px 36px;
  }

  .mm-layout-search input {
    min-height: 60px;
    font-size: clamp(1.5rem, 7vw, 2.6rem);
  }

  .mm-layout-footer__statement-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

  .mm-layout-footer__statement p {
    font-size: clamp(3.5rem, 15vw, 7rem);
  }

  .mm-layout-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-layout-footer__brand {
    grid-column: 1 / -1;
  }

  .mm-layout-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mm-layout-footer__legal .mm-layout-shell {
    grid-template-columns: 1fr auto;
  }

  .mm-layout-footer__legal .mm-layout-shell > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 520px) {
  .mm-layout-search form {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .mm-layout-search button {
    min-width: 46px;
    padding: 0;
    justify-content: center;
  }

  .mm-layout-search button span:first-child {
    display: none;
  }

  .mm-layout-drawer {
    width: 100%;
    padding: 20px 18px;
  }

  .mm-layout-footer__statement {
    padding-block: 68px;
  }

  .mm-layout-footer__statement p {
    font-size: clamp(3.05rem, 15.5vw, 5.2rem);
  }

  .mm-layout-footer__statement-row > a {
    width: 100%;
  }

  .mm-layout-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px;
  }

  .mm-layout-footer__brand {
    grid-column: auto;
  }

  .mm-layout-footer__legal .mm-layout-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mm-layout-footer__legal a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mm-layout-header *,
  .mm-layout-header *::before,
  .mm-layout-header *::after,
  .mm-layout-footer *,
  .mm-layout-footer *::before,
  .mm-layout-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
