/* /assets/css/footer.css
   Clean footer matching light theme
*/

.site-footer{
  margin-top: 34px;
  padding: 26px 0 0 0;
  border-top: 1px solid rgba(16,24,40,0.10);
  background: var(--bg-2);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  padding-bottom: 14px;
}

.footer-brand strong{
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(16,24,40,0.92);
}

.footer-brand p{
  margin: 10px 0 0 0;
  color: rgba(16,24,40,0.66);
  line-height: 1.6;
  max-width: 82ch;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

.footer-nav a{
  color: rgba(16,24,40,0.74);
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover{
  background: rgba(43,108,255,0.06);
  border-color: rgba(43,108,255,0.18);
  color: rgba(16,24,40,0.92);
  transform: translateY(-1px);
}

.footer-bottom{
  padding: 14px 0 20px 0;
  text-align: center;
  color: rgba(16,24,40,0.60);
  font-size: 13px;
  border-top: 1px solid rgba(16,24,40,0.10);
  background: rgba(255,255,255,0.65);
}

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-nav{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}
