@charset "UTF-8";
#footer {
  z-index: 10;
  width: 100%;
  height: 24px;
  padding: 10px 0px 10px 0px;
  background-color: var(--purple-blue);
  border-bottom: 6px solid var(--purple-blue);
}

.foot-wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  color: white;
}

.foot-left, .foot-right {
  margin-top: 6px;
  gap: 24px;
}

.foot-wrapper a:hover {
  text-decoration: underline;
}

.foot-left p::after {
  content: " →";
}

/* Vertical layouts */
@media (width <= 950px) {
  #footer {
    height: fit-content;
  }
  .foot-wrapper {
    margin-top: 20px;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .foot-left, .foot-right {
    flex-direction: column;
    align-items: start !important;
    justify-content: right !important;
    gap: 12px;
    margin-top: 0;
  }
  .foot-right {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 30px;
  }
  .foot-left p {
    margin-top: 0;
  }
  .foot-left p::after {
    content: " ↯";
  }
  .foot-left a::before {
    content: "• ";
  }
  .foot-right p {
    margin: 0;
  }
}