﻿.cats-wrapper {
  margin-bottom: 4.1875rem;
}
.cats-wrapper .item {
  width: calc(100% / 6);
  max-width: 100%;
  /* padding: 0.75rem; */
  border-radius: var(--radius);
}
.cats-wrapper .item .img-box {
  width: 100%;
  aspect-ratio: 2/1.2;
  position: relative;
}
.cats-wrapper .item .img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
  display: block;
  margin: auto;
}
.cats-wrapper .item .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--text-dark-1);
  position: absolute;
  bottom: 0.36rem;
  width: 100%;
  font-size: 1.14286rem;
font-style: normal;
font-weight: 700;
line-height: 2.57143rem;
}
@media (max-width:480px) {
  
  .cats-wrapper .item .title{
font-size: 0.9rem;
  }
    
}

@media (max-width: 1200px) {
  .cats-wrapper .item {
    width: calc(100% / 4);
  }
}
@media (max-width: 992px) {
  .cats-wrapper .item {
    width: calc(100% / 3);
  }
}
@media (max-width: 768px) {
  .cats-wrapper .item {
    width: calc(100% / 2)-2rem;
  }
}
@media (max-width: 480px) {
  .cats-wrapper .item {
    width: 45%;
  }
}