/**
 * Footer hub pubblici — layout shell (colori in pol-public-mobile.css).
 */
.pol-public-footer {
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.pol-public-footer__brand {
  min-width: 0;
}

.footer-brand-name {
  font-family: var(--pol-font-brand, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.footer-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-accent {
  font-weight: 500;
}

.footer-bottom {
  padding: 1.5rem 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
}

@media (max-width: 900px) {
  .pol-public-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem;
  }
}

@media (max-width: 500px) {
  .pol-public-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
