/*
Theme Name: Hello Child
Template: hello-elementor
Version: 1.0
*/
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.footer-credit a {
  font-size: 12px;
  color: #888 !important;
  text-decoration: none;
}
.footer-credit a:hover {
  text-decoration: underline;
  color: #666;
}

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px; /* spacing between logo and credit */
  }

  .footer-inner .site-navigation {
    display: none; /* hide menu */
  }

  .footer-credit {
    text-align: center;
    font-size: 12px;
    color: #888;
  }

  .footer-credit a {
    color: #888 !important;
    text-decoration: none;
  }

  .footer-credit a:hover {
    text-decoration: underline;
    color: #666 !important;
  }
}