/* ─── PPWR INFO PAGE ─────────────────────────────── */
.info-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}
.info-tab {
  padding: 9px 18px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
  transition: color .15s, border-color .15s;
}
.info-tab:hover { color: var(--text); background: #f1f4ee; }
.info-tab.active { color: var(--primary-dark); border-bottom-color: var(--primary); }

.info-section { display: flex; flex-direction: column; gap: 16px; padding-bottom: 60px; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.info-card-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.info-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.info-text:last-child { margin-bottom: 0; }
.info-list { padding-left: 18px; display: flex; flex-direction: column; gap: 5px; }
.info-list li { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

.info-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.info-cat-card { background: #f8fafc; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; }
.info-cat-tag { display: inline-block; border-radius: 4px; padding: 2px 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.info-cat-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.info-cat-desc { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }

.info-timeline { display: flex; flex-direction: column; gap: 10px; }
.info-tl-item { display: flex; align-items: flex-start; gap: 12px; }
.info-tl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.info-tl-date { font-size: 12px; font-weight: 700; min-width: 120px; flex-shrink: 0; }
.info-tl-label { font-size: 12.5px; color: var(--text-muted); }

.info-combo-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.info-combo-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-family: inherit;
  cursor: pointer;
  color: var(--text);
  transition: background .12s, border-color .12s;
}
.info-combo-pill:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
