/* Stories Page */
.filter-bar { padding: 0; border-bottom: 1px solid rgba(212,160,74,0.1); }
.filter-chips {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(212,160,74,0.2);
  background: transparent;
  color: rgba(245,230,200,0.6);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: var(--saffron); border-color: var(--saffron); color: var(--white); }

.cat-section { margin-bottom: 56px; }
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--cat-bg);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}
.cat-emoji { font-size: 40px; flex-shrink: 0; }
.cat-section-header h2 { font-family: var(--font-serif); font-size: 24px; color: #F5E6C8; margin-bottom: 4px; }
.cat-section-header p { font-size: 13px; color: rgba(245,230,200,0.5); line-height: 1.6; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.story-card-art {
  background: var(--cat-bg);
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.story-card-art::before {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cat-accent);
  opacity: 0.1;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.s-emoji { font-size: 32px; z-index: 1; }
.s-temple { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cat-accent); opacity: 0.8; z-index: 1; }
.story-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.story-card-body h3 { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--night); margin-bottom: 8px; line-height: 1.3; }
.story-card-body p { font-size: 12px; color: var(--muted); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.story-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.listen-btn { font-size: 12px; font-weight: 600; color: var(--saffron); transition: var(--transition); }
.listen-btn:hover { color: #D4621E; }

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stories-grid { grid-template-columns: 1fr; }
  .cat-section-header { padding: 18px 20px; }
}
