/* ------------------------------------------
   FOOTER
------------------------------------------ */
footer {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  border-top: 1px dashed var(--green);
  margin-top: 40px;
}

.site-footer {
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
  opacity: 0.65;
  font-size: 0.85rem;
}

.site-footer .footer-text {
  margin: 0;
}

.footer-text .footer-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: transform;
}

.footer-text .footer-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: brightness(1.1);
}