/* Explore - public community setups grid. Tokens come from style.css. */
.exp-wrap { max-width: 1180px; margin: 0 auto; padding: 24px 20px 64px; }
.exp-head { margin-bottom: 22px; }
.exp-title { font: 800 28px var(--font); color: var(--text-hi); margin: 0 0 6px; letter-spacing: -.3px; }
.exp-title span { color: #c77dff; }
.exp-sub { font: 14px/1.5 var(--font); color: var(--text-lo); max-width: 640px; margin: 0 0 16px; }
.exp-filter input { height: 40px; width: 280px; max-width: 100%; box-sizing: border-box; padding: 0 14px; font: 13px var(--font); color: var(--text-hi); background: var(--bg-card); border: 1px solid var(--border2); border-radius: 9px; }
.exp-filter input:focus { outline: none; border-color: #c77dff88; }

.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.exp-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border2); border-radius: 12px; overflow: hidden; text-decoration: none; transition: border-color .15s, transform .15s; }
.exp-card:hover { border-color: #c77dff66; transform: translateY(-2px); }
.exp-thumb { height: 150px; background: #0a0d14; overflow: hidden; }
.exp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-thumb-ph { height: 100%; display: flex; align-items: center; justify-content: center; color: #33405a; }
.exp-body { padding: 11px 13px; display: flex; flex-direction: column; gap: 4px; }
.exp-name { font: 600 14px var(--font); color: var(--text-hi); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.exp-desc { font: 12px/1.45 var(--font); color: var(--text-lo); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 34px; }
.exp-meta { display: flex; align-items: center; justify-content: space-between; font: 10px var(--mono); color: var(--text-lo); margin-top: 2px; }
.exp-coin { color: #c77dff; font-weight: 700; }

.exp-more { text-align: center; margin-top: 24px; }
.exp-more button { height: 38px; padding: 0 24px; font: 600 13px var(--font); color: var(--text-hi); background: var(--bg-card); border: 1px solid var(--border2); border-radius: 9px; cursor: pointer; }
.exp-more button:hover { border-color: #c77dff66; }
.exp-empty { text-align: center; padding: 56px 20px; font: 14px/1.6 var(--font); color: var(--text-lo); }

.exp-skel { pointer-events: none; }
.exp-skel .exp-thumb { background: var(--bg-card2); }
.exp-skel .sk { height: 11px; border-radius: 4px; background: var(--bg-card2); }
.exp-skel .sk-name { width: 70%; }
.exp-skel .sk-desc { width: 90%; margin-top: 8px; }

@media (max-width: 600px) {
  .exp-title { font-size: 23px; }
  .exp-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 10px; }
  .exp-thumb { height: 108px; }
  .exp-desc { min-height: 0; -webkit-line-clamp: 1; }
}
