/* assets/css/components/footer.css */

.footer {
  padding: 1rem 0;
  border-top: 1px solid hsl(210, 20%, 90%);
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  border-top: 1px solid hsl(210, 20%, 90%);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__right a {
  text-decoration: none;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

.footer__right a:hover {
  color: var(--text-color);
}

/* --- Responsive Styles for Footer --- */
@media (max-width: 600px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__right {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer__separator {
    display: none;
  }
}