.shared-site-footer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #dfe6f2;
  background: #101b2b;
  font-family: "Work Sans", Inter, Arial, sans-serif;
  line-height: 1.55;
}

.shared-site-footer *,
.shared-site-footer *::before,
.shared-site-footer *::after {
  box-sizing: border-box;
}

.shared-site-footer .footer-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 1fr 0.9fr;
  gap: 42px;
}

.shared-site-footer .footer-brand img {
  width: 190px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.shared-site-footer .footer-brand p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: #9eabc0;
  font-size: 0.82rem;
}

.shared-site-footer .footer-col h2 {
  margin: 0 0 12px;
  color: #d8b38f;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shared-site-footer .footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.shared-site-footer .footer-links a,
.shared-site-footer .footer-links li {
  color: #aab6c8;
  font-size: 0.8rem;
  text-decoration-color: rgba(170, 182, 200, 0.32);
  text-underline-offset: 3px;
}

.shared-site-footer .footer-links a:hover,
.shared-site-footer .footer-links a:focus-visible,
.shared-site-footer .footer-bottom a:hover,
.shared-site-footer .footer-bottom a:focus-visible {
  color: #fff;
}

.shared-site-footer .footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #74839a;
  font-size: 0.74rem;
}

.shared-site-footer .footer-bottom a {
  color: #9eabc0;
}

.shared-site-footer a:focus-visible {
  outline: 3px solid rgba(216, 179, 143, 0.5);
  outline-offset: 3px;
}

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

  .shared-site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shared-site-footer .footer-shell {
    width: min(100% - 24px, 560px);
    padding: 32px 0 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shared-site-footer .footer-brand {
    grid-column: auto;
  }

  .shared-site-footer .footer-bottom {
    width: min(100% - 24px, 560px);
    padding-bottom: 20px;
  }
}
