﻿.cats-wrapper {
  margin-bottom: 6rem;

  .item {
    width: calc(100% / 6);
    max-width: 100%;
    padding: 0.75rem;
    background: var(--text-light-2);
    border-radius: var(--radius);

    .img-box {
      width: 100%;
      aspect-ratio: 2/1.2;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
        max-width: 6rem;
        display: block;
        margin: auto;
      }
    }

    .title {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      font-size: 0.9rem;
      font-weight: bold;
      color: var(--text-dark-1);
    }
  }
}

@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%;
  }
}
