.main-shell > footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.main-shell > footer > span:first-child {
  text-align: left;
}

.main-shell > footer > span:last-child {
  text-align: right;
}

.site-filing {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px 10px;
  min-width: 0;
  color: inherit;
  font-size: inherit;
  line-height: 1.5;
  text-align: center;
}

.site-filing a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-filing a:hover,
.site-filing a:focus-visible {
  color: #23795d;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .main-shell > footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .main-shell > footer > span {
    display: inline-flex;
    justify-content: center;
    text-align: center !important;
  }

  .site-filing {
    justify-self: center;
  }
}
