footer {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px 0 108px 0;
  background-color: #212121;

  width: 100%;

  color: #5f656a;
}

div.footer-content-container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;

  width: 100%;
  max-width: 1200px;
}

div.footer-logo-and-shortcut-list-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  width: 100%;
}

div.footer-shortcut-list {
  display: flex;
  column-gap: 40px;
}

div.footer-shortcut-list-item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

span.footer-shortcut-list-item__title {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;

  color: #dfe3e9;
}

ul.footer-shortcut-list-item__list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

li.footer-shortcut-list-item__list__list-item {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

div.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  max-width: 1200px;
}

p.footer-company-info-list {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

@media screen and (max-width: 1024px) {
  footer {
    padding: 40px 20px 60px 20px;
    background-color: #212121;
  }

  div.footer-content-container {
    row-gap: 30px;

    max-width: unset;
  }

  div.footer-logo-and-shortcut-list-container {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 30px;
  }

  div.footer-shortcut-list {
    flex-direction: column;
    column-gap: 0;
    row-gap: 16px;
  }

  div.footer-shortcut-list-item {
    row-gap: 8px;
  }

  span.footer-shortcut-list-item__title {
    font-size: 16px;
  }

  ul.footer-shortcut-list-item__list {
    row-gap: 6px;
  }

  li.footer-shortcut-list-item__list__list-item {
    font-size: 16px;
  }

  div.footer-divider {
    max-width: unset;
  }

  p.footer-company-info-list {
    font-size: 14px;
    line-height: 20px;
  }
}
