/* Explore page only -- style.css carries the shared theme (panels, muted text, badges);
   this file adds just the preset-card grid this page needs. */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.explore-card {
  background: var(--bg-panel-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.explore-card-link:hover .explore-name { color: var(--accent); text-decoration: underline; }

.explore-thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.explore-thumb.placeholder {
  background: var(--bg-panel);
  border-style: dashed;
}

.explore-name {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-head);
}

.explore-desc { font-size: 0.82rem; color: var(--text-dim); margin: 0; }
.explore-status { margin: 0; }

.forecast-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.forecast-chip {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  background: var(--bg-panel);
}
a.forecast-chip:hover { border-color: var(--accent-dim); color: var(--text); }
.forecast-chip.pending { color: var(--text-faint); }

.teaching-note { font-size: 0.78rem; color: var(--text-faint); }
.teaching-note summary { cursor: pointer; color: var(--text-dim); }
.teaching-note summary:hover { color: var(--text); }
.teaching-note p { margin: 6px 0 0; }

@media (max-width: 480px) {
  .explore-grid { grid-template-columns: 1fr; }
}
