/**
 * Footer Styles
 * Site footer, footer grid, copyright
 */

.site-footer {
  background: #111;
  color: #f5f5f5;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #f5f5f5;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #cfcfcf;
}
