/* includes/shared/topics.css */

.topics-block {
  margin-top: 18px;
}

.topics-title {
  font-size: 18px;
  font-weight: 800;
  color: rgba(246,247,242,0.95);
  margin-bottom: 12px;
}

.topics-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topics-wrap--explore {
  max-height: calc((34px * 4) + (10px * 3));
  overflow: hidden;
}

.topics-wrap--book {
  gap: 8px;
}

.topics-pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(246,247,242,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.08s ease, background 0.15s ease;
}

.topics-pill:active {
  transform: scale(0.98);
  background: rgba(255,255,255,0.14);
}

.topics-pill--book {
  height: 32px;
  font-size: 12px;
  padding: 0 12px;
}