/* DW-style site footer */
.hg-footer {
  background: #001133;
  color: #fff !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.hg-nextjs-chrome .hg-footer,
body.hg-nextjs-chrome .hg-footer * {
  color: #fff;
}

body.hg-nextjs-chrome .hg-footer a,
body.hg-nextjs-chrome .hg-footer a:visited {
  color: #fff !important;
}

body.hg-nextjs-chrome .hg-footer a:hover {
  color: #fff !important;
  opacity: 0.86;
  text-decoration: underline;
}

.hg-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 56px;
}

.hg-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 48px;
}

.hg-footer__col-title,
.hg-footer__social-title {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hg-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hg-footer__links li {
  margin: 0 0 10px;
}

.hg-footer__links li:last-child {
  margin-bottom: 0;
}

.hg-footer__links a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
  text-decoration: none;
}

.hg-footer__links a:hover {
  text-decoration: underline;
}

.hg-footer__social-block {
  margin-top: 40px;
}

.hg-footer__social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hg-footer__social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.hg-footer__social-row a:hover {
  opacity: 0.82;
}

.hg-footer__social-row svg {
  width: 24px;
  height: 24px;
}

.hg-footer__legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.hg-footer__legal-row > span:first-child {
  font-weight: 700;
}

.hg-footer__legal-item {
  display: inline-flex;
  align-items: center;
}

.hg-footer__legal-sep {
  margin: 0 8px;
  font-weight: 700;
  color: #fff;
}

.hg-footer__legal-row a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.hg-footer__legal-row a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hg-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }
}

@media (max-width: 640px) {
  .hg-footer__inner {
    padding: 48px 20px 44px;
  }

  .hg-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hg-footer__social-block {
    margin-top: 32px;
  }

  .hg-footer__legal-row {
    margin-top: 32px;
  }
}
