/* SITE FOOTER */
.site-footer {
  background: #f8f9fa;
  padding: 2rem 0;
  font-family: 'Inter', sans-serif;
}

/* Top row: logo + links */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 71.4px;
  display: block;
}

/* Nav links */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__nav a {
  color: #555;
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer__nav a:hover {
  color: red;
}

/* Divider */
.footer__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 1rem;
}

/* Bottom row: copyright + social icons */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: #888;
  font-size: .75rem;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 1rem;
}

.social-icon img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) opacity(.6);
  transition: filter .2s, opacity .2s;
}

.social-icon:hover img {
  filter: none;
  opacity: 1;
}
