#release .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  gap: 8px;
}
#release .cat-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 160px;
  height: 100%;
  min-height: 44px;
  padding: 8px 20px;
  border: 1px solid #000b41;
  background: #fff;
  color: #000b41;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
#release .cat-list a:hover {
  background: #f0f1f4;
}
#release .cat-list a.active {
  background: #000b41;
  border-color: #000b41;
  color: #fff;
}
#release .cat-list a::before {
  display: none;
}
#release .cat-list a .cat_name {
  display: inline-block;
  white-space: nowrap;
  margin: 0 -0.5em;
}
#release .cat-list li {
  margin: 0;
}
@media (max-width: 768px) {
  #release .cat-list {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
  }
  #release .cat-list li, #release .cat-list a {
    width: 100%;
  }
}/*# sourceMappingURL=category-release.css.map */