/* ============================================================
   iMusic — Audio & Video hub.
   A single flowing page (like Books — nothing here needs its own
   hash-routed detail view), reusing site.css's generic `.page`
   layout. Only the preview-grid and link-list bits live here.
   ============================================================ */

.page-lang-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.av-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 16px 0 8px;
}

.av-preview-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-soft) 100%);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}

.av-preview-btn:hover {
  border-color: var(--brass);
}

.av-preview-btn.playing {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--bg-soft);
}

.av-preview-icon {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--brass);
}

.av-preview-btn.playing .av-preview-icon {
  color: var(--bg-soft);
}

.av-link-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.av-link-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.9;
}

.av-link-list li:last-child {
  border-bottom: none;
}

.av-link-list a {
  color: var(--brass);
  font-weight: 600;
  text-decoration: none;
}

.av-link-list a:hover {
  text-decoration: underline;
}
