@layer page {
.home-editorial-footer {
  --home-font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --home-font-display: "Unbounded", "Manrope", sans-serif;
  --footer-edge: clamp(1rem, 5.05vw, 4.875rem);
  width: 100%;
  min-height: 37.375rem;
  box-sizing: border-box;
  background: #07113b;
  padding: 5rem var(--footer-edge) 0;
  color: #fff;
  font-family: var(--home-font-body);
}

.home-editorial-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.home-editorial-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 5vw, 6.5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 4vw, 4.5rem);
}

.home-editorial-footer__lead > * { min-width: 0; overflow-wrap: break-word; }

.home-editorial-footer__brand {
  display: flex;
  min-height: 44px;
  width: fit-content;
  flex-direction: column;
  gap: 0.9rem;
}

.home-editorial-footer__brand img {
  width: clamp(8.5rem, 11vw, 11rem);
  height: auto;
}

.home-editorial-footer__wordmark {
  color: #fff;
  font-family: var(--home-font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
}

.home-editorial-footer__brand span,
.home-editorial-footer__directory h3 {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-editorial-footer__lead h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--home-font-display);
  font-size: clamp(2.5rem, 3.4vw, 3.125rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.home-editorial-footer__lead > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.7;
}

.home-editorial-footer__directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 8vw, 10rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 2.1rem 0 3rem;
}

.home-editorial-footer__directory nav,
.home-editorial-footer__directory address {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  margin: 0;
  font-style: normal;
}

.home-editorial-footer__directory h3 {
  margin: 0 0 0.45rem;
}

.home-editorial-footer__directory a,
.home-editorial-footer__directory address > span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-editorial-footer__directory a,
.home-editorial-footer__legal a,
.home-editorial-footer__bottom a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.home-editorial-footer__directory a:hover,
.home-editorial-footer__directory a:focus-visible,
.home-editorial-footer__legal a:hover,
.home-editorial-footer__legal a:focus-visible,
.home-editorial-footer__bottom a:hover,
.home-editorial-footer__bottom a:focus-visible {
  color: #75e7f3;
}

.home-editorial-footer__legal {
  display: grid;
  grid-template-columns: minmax(20rem, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.35rem 0;
}

.home-editorial-footer__legal p {
  max-width: 56rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  line-height: 1.65;
}

.home-editorial-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.25rem;
}

.home-editorial-footer__legal a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.64rem;
  line-height: 1.5;
}

.home-editorial-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  line-height: 1.45;
}

@media (max-width: 1279px) {
  .home-editorial-footer__lead {
    grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1fr);
    align-items: start;
  }

  .home-editorial-footer__lead > p {
    grid-column: 2;
  }

  .home-editorial-footer__directory {
    gap: 2.5rem;
  }

  .home-editorial-footer__legal {
    grid-template-columns: 1fr;
  }

  .home-editorial-footer__legal nav {
    justify-content: flex-start;
  }

  .home-editorial-footer {
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .home-editorial-footer {
    padding: 3.25rem 1rem 0;
  }

  .home-editorial-footer__lead {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
    padding-bottom: 3rem;
  }

  .home-editorial-footer__lead > * {
    min-width: 0;
  }

  .home-editorial-footer__lead > p {
    grid-column: auto;
  }

  .home-editorial-footer__lead h2 {
    max-width: 11ch;
    overflow-wrap: anywhere;
    font-size: 2.1rem;
  }

  .home-editorial-footer__directory {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2rem 2.5rem;
  }

  .home-editorial-footer__directory nav,
  .home-editorial-footer__directory address {
    gap: 0.65rem;
  }

  .home-editorial-footer__legal {
    gap: 1rem;
  }

  .home-editorial-footer__bottom {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

}
