/**
 * Global footer presentation.
 */

.site-footer {
  background: #fff;
  color: #4d4d4d;
  font-family: "Sequel Sans Book", sans-serif;
}

.site-footer .site-footer__main {
  padding-top: 0;
  background: #fff;
}

.site-footer .site-footer__grid {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(var(--footer-column-count, 5), minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 100px 50px;
}

.site-footer .site-footer__column {
  min-width: 0;
  min-height: 268px;
  padding: 10px;
}

.site-footer .site-footer__brand-mark {
  min-height: 48px;
}

.site-footer .site-footer__brand-mark .custom-logo-link {
  display: inline-block;
  max-width: 100%;
}

.site-footer .site-footer__brand-mark .custom-logo {
  width: 200px;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .site-brand--footer {
  display: inline-flex;
  color: #000;
  font-size: 2rem;
  text-decoration: none;
}

.site-footer .site-footer__brand p {
  max-width: 230px;
  margin: 20px 0 0;
  color: #4d4d4d;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 20px;
  color: #000;
  font-family: "Sequel Sans Bold", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.1rem;
  text-transform: none;
}

.site-footer .site-footer__column h3,
.site-footer .site-footer__column a {
  text-transform: uppercase;
}

.site-footer .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer .footer-menu li,
.site-footer .footer-menu li + li {
  margin: 0;
}

.site-footer .footer-menu a,
.site-footer .site-footer__contact a {
  display: flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 0;
  color: #4d4d4d;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.site-footer .footer-menu a:hover,
.site-footer .site-footer__contact a:hover {
  color: #000;
  text-decoration: underline;
}

.site-footer a:focus-visible {
  border-radius: 2px;
  outline: 3px solid #bad0db;
  outline-offset: 3px;
}

.site-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .social-links a {
  display: grid;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  color: #000;
  place-items: center;
  text-decoration: none;
}

.site-footer .social-links a:hover {
  color: #4d4d4d;
}

.site-footer .social-links .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
}

.site-footer .site-footer__bottom {
  display: block;
  padding: 0;
  border-top: 1px solid #000;
  background: #000;
  color: #c3c3c3;
}

.site-footer .site-footer__bottom-inner {
  display: flex;
  width: min(calc(100% - 60px), 1380px);
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  padding: 10px 0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.site-footer .site-footer__bottom p {
  margin: 0;
}

.site-footer .site-footer__bottom a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .site-footer__bottom a:hover {
  color: #bad0db;
}

@media (max-width: 1024px) {
  .site-footer .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 50px 20px;
  }

  .site-footer .site-footer__column {
    min-height: 268px;
  }

  .site-footer .site-footer__bottom-inner {
    width: calc(100% - 20px);
  }
}

@media (max-width: 767px) {
  .site-footer .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .site-footer .site-footer__column {
    min-height: 0;
    padding: 20px 10px;
  }

  .site-footer .site-footer__brand p {
    max-width: 350px;
  }

  .site-footer .site-footer__bottom-inner {
    width: calc(100% - 40px);
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
    font-size: 0.625rem;
    letter-spacing: 0.0625rem;
    line-height: 1.5rem;
  }
}
