.site-footer {
  font-family: "Fragment Mono", monospace;
  font-size: 1.125rem;
  color: #8a8a8a;
  text-transform: uppercase;
}

.site-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  max-width: min(1376px, calc(100% - (var(--site-padding) * 2) ));
  height: 100px;
  border-top: 1px solid #333;
}

@media (max-width: 1100px) {
  .site-footer-container {
    flex-direction: column;
    row-gap: 24px;
    height: auto;
    padding-block: 32px;
    text-align: center;
  }
  .footer-right {
    flex-direction: column;
  }
}

.footer-copyright-emphasis {
  color: #e7e7e7;
}
@media (max-width: 600px) {
  .footer-copyright-emphasis {
    display: block;
  }
}
.footer-external-links a {
  text-decoration: none;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Social links */
.footer-external-links {
  display: flex;
  gap: 16px;
}
.footer-external-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  border: 1px solid #333;
}
.footer-right a {
  transition: color .2s, border-color .2s;
}
.footer-right a:hover {
  color: var(--color-primary);
  border-color: currentColor;
}
