.zgr-footer {
  background: var(--zgr-navy);
  padding: 48px var(--zgr-page-pad) 24px;
}

.zgr-footer__inner {
  max-width: var(--zgr-max-width);
  margin: 0 auto;
}

.zgr-footer__logo-bar {
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--zgr-white-20);
  margin-bottom: 32px;
}

.zgr-footer__logo img,
.zgr-footer__logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.zgr-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--zgr-white-20);
  margin-bottom: 24px;
}

.zgr-footer__managed {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--zgr-white-20);
  margin-bottom: 24px;
}

.zgr-footer__managed .zgr-footer-editor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.zgr-footer__managed .zgr-footer-editor-col {
  min-width: 0;
}

.zgr-footer__managed h2,
.zgr-footer__managed h3,
.zgr-footer__managed h4,
.zgr-footer__managed .zgr-footer-editor-title {
  font-family: var(--font-urbanist);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--zgr-white);
  margin: 0 0 12px;
}

.zgr-footer__managed p {
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--zgr-white-70);
  margin: 0 0 10px;
}

.zgr-footer__managed ul {
  margin: 0 0 24px;
  padding: 0;
}

.zgr-footer__managed li {
  margin-bottom: 6px;
}

.zgr-footer__managed a {
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--zgr-white-70);
  transition: color 0.2s;
}

.zgr-footer__managed a:hover {
  color: var(--zgr-white);
}

.zgr-footer__col-title {
  font-family: var(--font-urbanist);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--zgr-white);
  margin-bottom: 12px;
}

.zgr-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.zgr-footer__col-links li a {
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--zgr-white-70);
  transition: color 0.2s;
}

.zgr-footer__col-links li a:hover {
  color: var(--zgr-white);
}

.zgr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.zgr-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zgr-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zgr-white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.zgr-footer__social a:hover {
  opacity: 1;
}

.zgr-footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zgr-footer__legal a {
  font-family: var(--font-urbanist);
  font-size: 12px;
  color: var(--zgr-white-70);
  transition: color 0.2s;
}

.zgr-footer__legal a:hover {
  color: var(--zgr-white);
}

.zgr-footer__legal-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.zgr-footer__copy {
  font-family: var(--font-poppins);
  font-size: 12px;
  color: var(--zgr-white-50);
}

@media (max-width: 1200px) {
  .zgr-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zgr-footer__managed .zgr-footer-editor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .zgr-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .zgr-footer__managed .zgr-footer-editor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .zgr-footer__managed .zgr-footer-editor-grid {
    grid-template-columns: 1fr;
  }

  .zgr-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .zgr-footer__grid,
  .zgr-footer__managed .zgr-footer-editor-grid {
    grid-template-columns: 1fr;
  }
}
