h2.section-title {
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.grid a {
  text-decoration: none;
  color: #fff;
  background-color: #222;
  padding: 15px;
  text-align: center;
  transition: background-color 0.2s;
  min-height: 30px;
}
.grid a:hover {
  background-color: #444;
}
.grid a span {
  display: block;
  font-size: 0.9rem;
  margin-top: 5px;
  color: #bbb;
}