/* ============================
   FOOTER
   ============================ */

   footer {
    margin-top: 40px;
    padding: 16px 20px 24px;
    background: #f3f4f6;
    border-top: 1px solid var(--lkp-border-soft);
  }
  
  .lkp-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--lkp-text-muted);
  }
  
  .lkp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .lkp-footer-links a {
    color: var(--lkp-text-muted);
    text-decoration: none;
  }
  
  .lkp-footer-links a:hover {
    color: var(--lkp-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  @media (max-width: 640px) {
    .lkp-footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  