/* polden.gg's site footer, value for value: src/components/SiteFooter.module.css for the band and its
   inner row, and [data-ink-band] in src/app/globals.css for the grain (the same 512px tile, shown at
   256px and screened over the band). Shared by every workshop page. */
.site-footer {
  position: relative;
  color: #8a8578;
  background-color: #111;
  background-image: url("assets/grain-dry-2.png");
  background-size: 256px 256px;
  background-blend-mode: screen;
  border-top: 1px solid color-mix(in srgb, #efeee8 18%, transparent);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  max-width: 1244px;
  margin: 0 auto;
  padding: 20px 32px 28px;
  font: 400 11px/1.7 'IBM Plex Mono', monospace;
}

.site-footer__inner p {
  margin: 0;
}

/* polden.gg narrows its page gutter to 18px at 47.5rem and tightens the band. */
@media (max-width: 760px) {
  .site-footer__inner {
    padding: 18px 18px 26px;
  }
}
