/* Footer Layout Styles */

.site-footer {
  margin-top: auto;
}

/* Footer Copyright Row with Logo */
.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-text {
  margin: 0;
  flex: 1;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  max-width: 100%;
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
  .footer-copyright-row {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-logo-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .footer-copyright-row {
    gap: 0.5rem;
  }

  .footer-logo-img {
    width: 40px;
    height: 40px;
  }
}
