/* =========================================================
   FOOTER PERSONALIZZATO
   - linea centrata nel frame da 900px
   ========================================================= */

.site-footer-custom {
  margin-top: 60px;
  padding: 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

/* Frame centrale */
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 1rem;

  border-top: 1px solid rgba(255,255,255,.25);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Allineamenti */
.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity .2s ease;
}

.footer-right a:hover {
  opacity: 1;
}

.footer-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }
}

