/* SDX_NAVIGATION_REDESIGN_V1: footer */
.sdx-site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, .78fr) minmax(32rem, 1.22fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  padding-block: clamp(3rem, 6vw, 5.25rem) 2rem;
}

.sdx-site-footer__identity {
  min-width: 0;
  max-width: 34rem;
}

.sdx-site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.sdx-site-footer__brand img {
  display: block;
  width: clamp(12rem, 20vw, 15rem);
  height: auto;
  max-height: 2.4rem;
  object-fit: contain;
  object-position: left center;
}

.sdx-site-footer .sdx-site-footer__intro {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: #aac7cb;
  line-height: 1.72;
  text-align: left;
}

.sdx-site-footer__cta {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  margin-top: 1.35rem;
  padding: .72rem 1rem;
  border: 1px solid rgb(191 244 243 / 34%);
  border-radius: 999px;
  color: #e9ffff;
  background: rgb(11 82 101 / 48%);
  font-weight: 800;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.sdx-site-footer__cta:hover,
.sdx-site-footer__cta:focus-visible {
  border-color: #bff4f3;
  background: rgb(11 82 101 / 78%);
  text-decoration: none;
  transform: translateY(-1px);
}

.sdx-site-footer__navigation {
  min-width: 0;
}

.sdx-site-footer__label {
  margin: 0 0 1.25rem;
  color: #5fd0cf;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sdx-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.sdx-footer-nav__group {
  min-width: 0;
}

.sdx-footer-nav__title {
  display: block;
  margin: 0 0 .85rem;
  color: #f0ffff;
  font-size: .92rem;
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1.35;
  text-decoration: none;
}

.sdx-footer-nav ul {
  display: grid;
  gap: .58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdx-footer-nav li {
  margin: 0;
  padding: 0;
}

.sdx-footer-nav li ul {
  margin-top: .55rem;
  padding-left: .7rem;
  border-left: 1px solid rgb(191 244 243 / 18%);
}

.sdx-footer-nav li a {
  display: inline-flex;
  color: #9ebfc4;
  font-size: .91rem;
  line-height: 1.45;
  text-decoration: none;
}

.sdx-footer-nav li a:hover,
.sdx-footer-nav li a:focus-visible,
.sdx-footer-nav li a[aria-current="page"] {
  color: #dfffff;
  text-decoration: underline;
  text-decoration-color: #4fc3c4;
  text-underline-offset: .24rem;
}

.sdx-site-footer__meta {
  display: flex;
  grid-column: 1 / -1;
  gap: .85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.35rem;
  border-top: 1px solid #274d57;
  color: #779aa2;
  font-size: .82rem;
}

.sdx-site-footer__meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  justify-content: flex-end;
}

.sdx-site-footer__meta a {
  color: inherit;
  text-decoration: none;
}

.sdx-site-footer__meta a:hover,
.sdx-site-footer__meta a:focus-visible {
  color: #bff4f3;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .sdx-site-footer {
    grid-template-columns: 1fr;
  }

  .sdx-site-footer__identity {
    max-width: 44rem;
  }
}

@media (max-width: 680px) {
  .sdx-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sdx-site-footer__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sdx-site-footer__meta nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .sdx-footer-nav {
    grid-template-columns: 1fr;
  }
}