/**
 * Shared footer row: Admin (left) + site credit (right).
 * Expects dark footers with light text (matches YB Ausome Shoppe site chrome).
 */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 56rem;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-sizing: border-box;
}

.footer-bottom .footer-admin,
.footer-bottom .footer-credit {
  margin: 0;
}

.footer-admin {
  text-align: left;
}

.footer-admin a {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 700;
}

.footer-admin a:hover,
.footer-admin a:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit {
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #ffffff;
}

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

  .footer-admin,
  .footer-credit {
    text-align: center;
  }
}
