.footer-bar {
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.footer-link {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logos a {
  display: flex;
  align-items: center;
}

.footer-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.25s ease;
}

/* The ACLIMO asset has more inner padding; scale it up for visual parity with CESBIO. */
.footer-logos a[title="ACLIMO"] img {
  height: 38px;
}

.footer-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 720px) {
  .footer-logos img {
    height: 26px;
  }

  .footer-logos a[title="ACLIMO"] img {
    height: 30px;
  }
}
