.bro-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.bro-credit:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.bro-credit:focus-visible {
  outline: 2px solid #00c9a7;
  outline-offset: 4px;
  border-radius: 6px;
}

.bro-credit img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
}

.site-footer {
  width: 100%;
  padding: 1.4rem var(--side, clamp(1rem, 4vw, 4rem));
  background: #031d34;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  width: min(100%, 1600px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer .legal {
  margin: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: left;
}

.site-footer .site-privacy-link {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .bro-credit {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
  }
}

@media (max-width: 600px) {
  .bro-credit img {
    width: 62px;
    height: 62px;
  }
}
