/**
 * Split from numart_main.css for maintainability.
 */

/* ========================================
   NUMART FOOTER STYLES
   ======================================== */

.numart-footer {
  background: var(--nm-footer-bg-color);
  padding: 50px 0 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  text-align: center;
  margin-bottom: 25px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}


.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.numart-footer .social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6b7280;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}


.numart-footer .social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #6b7280;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .numart-footer {
    padding: 35px 0 20px;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-tagline {
    font-size: 14px;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .numart-footer .social-link {
    width: 40px;
    height: 40px;
  }
  
  .numart-footer .social-link svg {
    width: 18px;
    height: 18px;
  }
}

