.footer {
  display: flex;
  padding: 15px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.copyright {
  flex-basis: 66.6%;
}

.footer__menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.footer__menu a {
  position: relative;
  padding-right: 10px;
}

.footer__menu a::after {
  content: "•";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer__menu a:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 10px;
  }
}
