.ozll-filter {
    margin-bottom: 16px;
  }
  .ozll-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 8px;
  }
  .ozll-filter-item {
    cursor: pointer;
    user-select: none;
  }
  
  .ozll-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .ozll-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
  }
  
  .ozll-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
  }
  
  .ozll-thumb img {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    display: block;
  }
  
  .ozll-thumb-placeholder {
    width: 200px;
    height: 120px;
    border-radius: 16px;
    background: #eee;
  }
  
  .ozll-title {
    margin: 0;
    font-size: 20px;
  }
  
  .ozll-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .ozll-tag {
    font-size: 0.9em;
    background: #3A59D6;
    padding: 3px 8px;
    border-radius: 3px;
    color: #fff;
  }
  
  @media screen and (max-width: 700px) {
    .ozll-link {
      flex-direction: column;
      align-items: flex-start;
    }
    .ozll-thumb img,
    .ozll-thumb-placeholder {
      width: 100%;
      max-width: 420px;
    }
  }
  