.footer_bottom .footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer_bottom .revers-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(26, 87, 123, 0.15);
  border-radius: 12px;
  background: rgba(26, 87, 123, 0.04);
  color: #1a577b;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.footer_bottom .revers-credit:hover {
  border-color: rgba(26, 87, 123, 0.3);
  background: rgba(26, 87, 123, 0.08);
  color: #1a577b;
}

.footer_bottom .revers-credit:focus-visible {
  outline: 2px solid #1a577b;
  outline-offset: 3px;
}

.revers-credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.revers-credit-brand img {
  flex-shrink: 0;
}

.revers-credit-brand strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .footer_bottom .footer-bottom-row {
    flex-direction: column;
  }
}
