/* PyroDust — Footer (no Tailwind required) */
:root{
  /* Reuse your site tokens if present */
  --ash: #f6f6f6;
  --ink: #0f0f0f;
  --ember: #e64a19;
}

/* Container */
.pd-footer{
  background: var(--ash);
  color: #4b5563;                  /* tailwind-ish gray-600 */
  text-align: center;
  font-size: 0.875rem;             /* text-sm */
  padding: 2.5rem 1rem;            /* py-10 px-4 */
  margin-top: 4rem;                /* mt-16 */
  line-height: 1.6;
}

/* Links row */
.pd-footer-links{
  margin-bottom: 0.75rem;          /* mb-3 */
  display: inline-flex;
  gap: 1rem;                        /* space-x-4 */
  flex-wrap: wrap;
}

/* Link states to match index.html hover */
.pd-footer a{
  color: #4b5563;                   /* gray-600 */
  text-decoration: none;
  transition: color .15s ease;
}
.pd-footer a:hover,
.pd-footer a:focus-visible{
  color: #ea580c;                   /* approx tailwind orange-600 */
}

/* Respect site-wide font if set on body */
.pd-footer,
.pd-footer *{
  font-family: inherit;
}

/* Small screens tighten spacing slightly (optional) */
@media (max-width: 480px){
  .pd-footer-links{ gap: 0.75rem; }
}
