/* categories.css */

.category-links {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1220px, 1fr));
  gap: 12px 30px;
}

.category-links a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  position: relative;
  padding-bottom: 3px;
  width: fit-content;
}

.category-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #a0281d;
  transition: width 0.3s ease;
}

.category-links a:hover::after {
  width: 100%;
}
