.footer {
    max-width: 1040px;
    margin: 0 auto;
    padding: 24px 20px 32px;
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.footer a {
    color: var(--ink);
    font-weight: 600;
    text-align: center;
    display: block;
  }

/* Style the search box inside the navigation bar */
.footer input[type=text] {
    padding: 12px 14px;
    border: 1px solid #cfc6b8;
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    background: white;
    box-shadow: inset 0 2px 6px rgba(31, 26, 17, 0.08);
}

/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {
    .footer a, .footer input[type=text] {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .footer input[type=text] {
      border: 1px solid #ccc;
    }
  }
