.site-header {
  --teal-950: #123f43;
  --teal-800: #185b5c;
  --teal-100: #eaf5f2;
  --teal-50: #f4faf8;
  --ink-soft: #627879;
  --line: rgba(25, 91, 92, 0.14);
  font-family: "DM Sans", "Avenir Next", "Helvetica Neue", sans-serif;
}

.about-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(1120px, calc(100vw - 40px));
  margin-inline: auto;
  padding: 24px 0 42px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--latin-font);
  font-size: 0.78rem;
}

.about-footer .footer-signature {
  display: flex;
  grid-column: 2;
  min-width: 0;
  align-items: center;
  justify-self: center;
  gap: 12px;
}

.about-footer .footer-signature > img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.about-footer .footer-copy {
  display: grid;
  min-width: 0;
  justify-items: start;
  gap: 1px;
  text-align: left;
}

.about-footer .footer-copy p {
  margin: 0;
}

.about-footer .footer-copy strong {
  color: #5d5753;
  font-size: 0.9rem;
  line-height: 1.3;
}

.about-footer .footer-copy small {
  color: #746d68;
  font-size: 0.82rem;
  line-height: 1.4;
}

.about-footer > a {
  grid-column: 3;
  margin: 0;
  justify-self: end;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 680px) {
  .about-footer {
    grid-template-columns: 1fr;
    padding: 18px 6px 30px;
    gap: 8px;
  }

  .about-footer .footer-signature {
    grid-column: 1;
    gap: 8px;
  }

  .about-footer .footer-signature > img {
    width: 44px;
    height: 44px;
  }

  .about-footer .footer-copy strong {
    font-size: 0.84rem;
  }

  .about-footer .footer-copy small {
    font-size: 0.76rem;
  }

  .about-footer > a {
    grid-column: 1;
    margin: 8px 0 0;
    justify-self: center;
    text-align: center;
  }
}
