/* footer.css — content, grid, kleurvlak */

footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem;
  margin-top: auto;
}

footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

footer .col h4 {
  margin-bottom: .75rem;
  font-weight: 600;
  color: white;
}

footer .col ul {
  list-style: none;
}

footer .col ul li {
  margin-bottom: .5rem;
}

footer .col ul li a {
  color: #ccc;
  font-size: .9rem;
}

footer .col ul li a:hover {
  color: #fff;
}

footer .logo-footer {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

footer .logo-footer i {
  font-size: 1.5rem;
  color: #C8102E;
}

footer .bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: .85rem;
}

footer a {
  color: inherit;
  text-decoration: none;
}
