.liithos-footer {
  position: relative;
  background-color: #ffffff;
}

.footer-inner {
  max-width: 1720px;
  margin: auto;
  display: grid;
  gap: 1rem;

  grid-template-columns: 1fr 1fr 1fr;

  /* padding-top: 40px;
  padding-bottom: 50px;
  padding-left: 36px;
  padding-right: 36px; */

  /* position: fixed;
  width: 100%;
  bottom: 0; */

  padding: 1rem;
}
.footer-glyph-link {
  grid-row: 1;
  grid-column: 1/3;
  /* display: contents; */
}

.footer-glyph {
  grid-column: 1;
  grid-row: 1;
  place-self: start;
  width: 36px;
  padding-bottom: 1.22rem;
  cursor: pointer;
}

.link-group {
  /* display: flex;
  flex-direction: row;
  align-items: flex-start; */
  justify-content: center;
  align-content: center;
  /* grid-column: 1/3; */
  grid-column: 2/4;
  /* grid-row: 2; */
  grid-row: 1;
}

.legal-social-wrapper {
  /* grid-column: 1/3; */
  grid-column: 1/4;
  grid-row: 3;
  margin-top: 1rem;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline-start: 0px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 300;
  list-style: none;
  text-decoration: none;
  /* text-align: right; */
  text-align: left;
  gap: 1rem;
  justify-items: start;
}

.legal-links li {
  text-align: left;
}

.legal-links li a {
  color: #000000;
  text-decoration: none;
}

.legal-links li a:hover {
  color: #000000;
  text-decoration: underline;
}

.legal-notice {
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 300;
  padding-top: 10px;
  grid-row: 4;
}

.footer-social-links {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  padding: 0;
  height: fit-content;
  margin: 0;
  flex-wrap: wrap;
  /* justify-content: flex-end; */
  justify-content: center;
  align-items: center;
}

.footer-social-links li a {
  text-decoration: none;
  color: black;
}

.footer-social-links li a:hover {
  color: var(--inevitable-red);
}

.footer-social-links li {
  width: 14px;
}

@media screen and (min-width: 800px) {
  .legal-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 5fr;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .link-group {
    grid-column: 2;
    grid-row: 1;
    place-self: start end;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .legal-links {
    margin-right: 3rem;
  }
  .legal-links li {
    margin-right: 1rem;
  }

  .footer-glyph {
    width: 68px;
    padding-bottom: 0px;
  }

  .footer-social-links {
    gap: 2rem;
    justify-content: flex-end;
  }

  .footer-social-links li {
    width: 18px;
    text-align: right;
  }
  .legal-notice {
    text-align: right;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 300;
  }
}

@media screen and (min-width: 1200px) {
  .footer-inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 100px;
    padding-right: 130px;
  }
  .legal-social-wrapper {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
  }
}
