@media only screen and (min-width: 0rem) {
  .footer {
    width: 100%;
    background-color: var(--darkBlack);
    color: var(--headerColorWhite);
  }

  .footer .container {
    max-width: 80rem;
    padding: 1rem 1rem;
    margin: auto;
  }

  .footer .container h2 {
    text-align: center;
    font-size: var(--sectionTitleFontSize);
  }

  .footer .card-wrapper {
    padding: 0;

    display: flex;

    border-radius: 0.5rem;
    flex-direction: column;
    list-style: none;
    width: 100%;

    overflow: hidden;
  }

  .card-wrapper .card {
    flex-grow: 0;
    min-height: 16rem;
    border: 1px solid #3a4337;
    padding: 1rem 2rem;
    text-align: center;
    background-color: var(--darkBlackLight);

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .card .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .card .content p {
    color: var(--bodyTextColorWhite);
    margin: 0;
    font-size: 0.8rem;
  }

  .card .content h3 {
    margin: 0;
    font-size: var(--headerSmallFontSize);
  }

  .nav {
    margin-top: clamp(3rem, 10vw, 5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo-container {
    margin-right: auto;
  }

  .logo {
    font-family: var(--logo-font);
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    line-height: 1;
    font-size: var(--headerFontSize);
  }

  .logo-desc {
    font-size: 0.8rem;
  }

  .link-wrapper {
    padding: 0;
    margin: 0;
  }
  .link-wrapper li {
    list-style: none;
    padding: 4px;
    margin-bottom: 0.5rem;
  }

  .link-wrapper .link-header {
    font-weight: 800;
    margin-bottom: 0.875rem;
  }

  .links {
    text-decoration: none;
    color: var(--bodyTextColorWhite);
  }
  .link-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 3rem);
  }
  .btn-transparent {
    font-size: var(--bodyFontSize);
    font-weight: 500;
    border: none;
    line-height: 1.5em;

    cursor: pointer;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    justify-content: center;
  }
  .number {
    color: var(--primary);
    text-decoration: none;
  }
  .copyright {
    display: block;
    text-align: right;
    padding: 10px;
    font-size: 0.9em;
    color: #777;
  }
  .button-solid {
    font-size: var(--bodyFontSize);
    font-weight: 500;
    border: none;
    line-height: 1.5em;
 
    cursor: pointer;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    justify-content: center;
  }
}

@media only screen and (min-width: 48rem) {
  .footer .container {
    padding: 1rem 2.5rem;
  }
  .footer .card-wrapper {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
  }

  .logo-container {
    max-width: 40ch;
  }

  .nav {
    column-gap: 2rem;
  }
  .link-container {
    width: auto;
    justify-content: space-between;
  }

  .card-wrapper .card {
    width: 44%;
  }

  .logo-desc {
    max-width: 52ch;
  }
}

@media only screen and (min-width: 64rem) {
}
