body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    .page {
      width: 100%;
      max-width: 1200px;
    }

    .filters {
      height: 80px;
      margin-bottom: 20px;
      border: 1px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
    }

    .grid__item {
      background: #fff;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      aspect-ratio: 1 / 1.3;
    }

    .card__image {
      width: 100%;
      height: 80%;
      object-fit: cover;
    }

    .card__content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 5px;
      text-align: center;
    }

    .card__title {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 4px;
    }

    .tags {
      display: flex;
      justify-content: center;
      gap: 4px;
      flex-wrap: nowrap;
      overflow: hidden;
      white-space: nowrap;
      
    }

    .tag {
      font-size: 10px;
      font-weight: bold;
      padding: 2px 6px;
      border: 3px solid #66c258;
      border-radius: 5px;
      background: #7eef6d;
    }