
  .dlt-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    font-family: inherit;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
  }

  /* ---------- SIDEBAR FILTRI ---------- */
  .dlt-filters {
    width: 280px;
    flex-shrink: 0;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 20px;
  }
  .dlt-filters h3 {
    font-size: 16px;
    margin: 0 0 16px 0;
    font-weight: 700;
  }
  .dlt-search {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    box-sizing: border-box;
  }
  .dlt-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
  }
  .dlt-group:last-child { border-bottom: none; }
  .dlt-group-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dlt-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
    color: #444;
  }
  .dlt-option input { margin-right: 8px; cursor: pointer; }
  .dlt-option span.count { color: #999; font-size: 12px; }
  .dlt-reset {
    margin-top: 8px;
    font-size: 13px;
    color: #0066cc;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
  }

  /* ---------- LISTA RISULTATI ---------- */
  .dlt-results { flex: 1; min-width: 0; }
  .dlt-results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
  }
  .entry-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
  }
  .entry-card h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
  }
  .entry-card h4 a {
    text-decoration: none;
    color: #111;
  }
  .entry-card p.excerpt {
    font-size: 14px;
    color: #555;
    margin: 0 0 12px 0;
    line-height: 1.5;
  }
  .entry-card .meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
  }
  .entry-card .view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
  }
  .entry-card.dlt-hidden { display: none; }

  /* ---------- PAGINAZIONE ---------- */
  .dlt-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 24px;
  }
  .dlt-page-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
  }
  .dlt-page-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
  }

  @media (max-width: 768px) {
    .dlt-wrapper { flex-direction: column; }
    .dlt-filters { width: 100%; }
  }
</style>