/* Great Times — app-specific styles. Base tokens, layout, and most shared
   components (.item-list, .item-row, .year-badge, .pill-tag, .search-bar,
   .detail-header, .content-section, etc.) come from framework.css. */

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-row::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.chip:hover { color: var(--text); border-color: var(--accent); }
.chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 4px;
  padding: 9px 16px;
  border-radius: 8px;
  background: rgba(124, 111, 255, 0.12);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.source-link:hover { background: rgba(124, 111, 255, 0.22); }

.small-note {
  font-size: 0.78rem !important;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px !important;
}

#detail-gap .content-text {
  color: var(--text-muted);
}
