.category_container {
  border-radius: 20px;
  background-color: #f3f0ff;
  margin-bottom: 80px;
}
.category_container .visible_sm {
  display: none;
}
.category_container .category_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.category_container .category_header a {
  font-size: 16px;
  line-height: 28px;
  text-decoration: underline;
}
.category_container .category_header a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .category_container {
    margin-bottom: 60px;
  }
  .category_container .category_header {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .category_container {
    padding: 32px 16px;
    margin-bottom: 48px;
  }
  .category_container .visible_sm {
    display: block;
    text-align: center;
    text-decoration: underline;
    font-size: 12px;
  }
  .category_container .category_header {
    margin-bottom: 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .category_container .category_header a {
    display: none;
  }
}