/* ================================================
   BAMPAA  -  Cohort Member Page
   assets/cohort.css
   ================================================ */

:root {
  --ch-bg:        #0d1117;
  --ch-surface:   #13191f;
  --ch-border:    rgba(255,255,255,0.07);
  --ch-text:      #E8EAF0;
  --ch-muted:     rgba(200,205,220,0.5);
  --ch-accent:    #6AA59C;
  --ch-accent-lo: rgba(106,165,156,0.12);
  --ch-green:     #22c55e;
  --ch-green-lo:  rgba(34,197,94,0.10);
  --ch-blue:      #7da3e8;
  --ch-blue-lo:   rgba(125,163,232,0.12);
  --ch-red:       #e05252;
}

/* ── Shell ──────────────────────────────────────── */
.chrt-wrap {
  background: var(--ch-bg);
  min-height: 100vh;
}

.chrt-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

/* ── Gate ───────────────────────────────────────── */
.chrt-gate {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}
.chrt-gate-msg {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ch-text);
  margin-bottom: 8px;
}
.chrt-gate-sub {
  font-size: 0.84rem;
  color: var(--ch-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Identity bar ───────────────────────────────── */
.chrt-id-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 10px;
  margin-bottom: 20px;
}
.chrt-id-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ch-green);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.chrt-id-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ch-text);
  display: block;
}
.chrt-id-sub {
  font-size: 0.72rem;
  color: var(--ch-muted);
}
.chrt-id-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.chrt-id-email {
  font-size: 0.78rem;
  color: var(--ch-accent);
  font-weight: 600;
}
.chrt-project-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ch-text);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--ch-border);
  border-radius: 6px;
  padding: 4px 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.chrt-project-link:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

/* ── Complete bar ───────────────────────────────── */
.chrt-complete-bar {
  font-size: 0.88rem;
  color: var(--ch-muted);
  padding: 14px 16px;
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 10px;
  margin-bottom: 28px;
}

/* ── Next session — compact bar ─────────────────── */
.chrt-next-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.chrt-next-chip {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-accent);
  background: var(--ch-accent-lo);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 5px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.chrt-next-bar-text {
  font-size: 0.84rem;
  color: var(--ch-text);
  flex: 1;
}
.chrt-join-sm {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0d1117;
  background: var(--ch-accent);
  border-radius: 6px;
  padding: 5px 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Next session — live hero card ──────────────── */
.chrt-next-card {
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.chrt-next-live {
  border-color: rgba(106,165,156,0.35);
  box-shadow: 0 0 28px rgba(106,165,156,0.07);
}
.chrt-next-live::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ch-accent), transparent);
}
.chrt-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.chrt-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ch-red);
  animation: ch-pulse 2s ease-in-out infinite;
}
@keyframes ch-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,82,82,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(224,82,82,0); }
}
.chrt-live-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-red);
}
.chrt-next-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.chrt-next-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ch-text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.chrt-next-topics {
  font-size: 0.82rem;
  color: var(--ch-muted);
  margin-bottom: 8px;
}
.chrt-next-meta {
  font-size: 0.8rem;
  color: var(--ch-muted);
}
.chrt-next-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.chrt-join-btn {
  display: inline-block;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--ch-accent);
  color: #0d1117;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.chrt-join-btn:hover { background: #7bbfb6; }
.chrt-join-soon {
  font-size: 0.78rem;
  color: var(--ch-muted);
}
.chrt-next-note {
  font-size: 0.72rem;
  color: var(--ch-muted);
}

/* ── Section labels ─────────────────────────────── */
.chrt-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-muted);
  margin-bottom: 14px;
}
.chrt-section-bar {
  width: 20px; height: 2px;
  background: var(--ch-accent);
  flex-shrink: 0;
}

/* ── Latest recording ───────────────────────────── */
.chrt-latest-rec {
  margin-bottom: 36px;
}
.chrt-rec-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--ch-surface);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 12px;
  border-left: 3px solid var(--ch-accent);
  flex-wrap: wrap;
}
.chrt-rec-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ch-text);
  margin-bottom: 4px;
}
.chrt-rec-topics {
  font-size: 0.8rem;
  color: var(--ch-muted);
  margin-bottom: 4px;
}
.chrt-rec-meta {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.35);
}
.chrt-watch-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ch-green);
  background: var(--ch-green-lo);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.chrt-watch-btn:hover { background: rgba(34,197,94,0.16); }

/* ── Schedule ───────────────────────────────────── */
.chrt-schedule-wrap { margin-top: 0; }

.chrt-schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Week accordion */
.chrt-week-details {
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 12px;
  overflow: hidden;
}
.chrt-week-details[open] {
  border-color: rgba(106,165,156,0.18);
}

.chrt-week-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,0.02);
  list-style: none;
}
.chrt-week-summary::-webkit-details-marker { display: none; }
.chrt-week-summary::marker { display: none; }

.chrt-week-summary:hover { background: rgba(255,255,255,0.035); }

.chrt-wk-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-accent);
  background: var(--ch-accent-lo);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 5px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.chrt-wk-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}
.chrt-wk-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ch-text);
  flex: 1;
}
.chrt-done-mark {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--ch-green);
  margin-left: auto;
}

/* Session rows */
.chrt-week-rows {
  border-top: 1px solid var(--ch-border);
  padding: 4px 0;
}

.chrt-session-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  transition: background 0.12s;
}
.chrt-session-row:hover { background: rgba(255,255,255,0.02); }
.chrt-session-row + .chrt-session-row { border-top: 1px solid rgba(255,255,255,0.04); }
.chrt-row-live { background: rgba(106,165,156,0.04); }

.chrt-row-datecol {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chrt-day-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}
.chrt-fri { background: var(--ch-accent-lo); color: var(--ch-accent); }
.chrt-sun { background: var(--ch-blue-lo);   color: var(--ch-blue); }

.chrt-row-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ch-text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.chrt-row-topics {
  font-size: 0.8rem;
  color: rgba(200,205,220,0.65);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chrt-row-action {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Chips */
.chrt-chip {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 3px 8px;
  white-space: nowrap;
}
.chrt-chip-rec  { background: var(--ch-green-lo); border: 1px solid rgba(34,197,94,0.2);   color: var(--ch-green); }
.chrt-chip-live { background: rgba(224,82,82,0.1); border: 1px solid rgba(224,82,82,0.2);  color: var(--ch-red); }
.chrt-chip-muted { background: rgba(255,255,255,0.03); border: 1px solid var(--ch-border); color: var(--ch-muted); }

.chrt-watch-xs {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ch-green);
  background: var(--ch-green-lo);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 5px;
  padding: 3px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.chrt-join-xs {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0d1117;
  background: var(--ch-accent);
  border-radius: 5px;
  padding: 3px 10px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Recording player overlay ───────────────────── */
.chrt-player-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.chrt-player-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 14px;
  overflow: hidden;
}
.chrt-close-btn {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--ch-border);
  color: var(--ch-text);
  border-radius: 6px;
  width: 32px; height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chrt-player-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  .chrt-session-row { grid-template-columns: 76px 1fr; }
  .chrt-row-action  { grid-column: 1 / -1; padding-top: 4px; }
  .chrt-row-topics  { white-space: normal; font-size: 0.75rem; }
  .chrt-next-inner  { flex-direction: column; align-items: flex-start; }
  .chrt-next-actions { align-items: flex-start; }
  .chrt-id-email    { display: none; }
  .chrt-id-right    { flex-direction: column; align-items: flex-end; gap: 4px; }
}

/* ═══════════════════════════════════════════════════
   ASSIGNMENT STRIP  (inside week accordion)
   ═══════════════════════════════════════════════════ */

.chrt-assign-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--ch-border);
  background: rgba(106,165,156,0.04);
}

.chrt-assign-topic {
  font-size: 0.78rem;
  color: var(--ch-muted);
  letter-spacing: 0.01em;
}

.chrt-assign-btn {
  flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.chrt-assign-btn:hover { opacity: 0.85; }

.chrt-assign-open-btn  { background: var(--ch-accent);  color: #0d1117; }
.chrt-assign-done-btn  { background: var(--ch-green);   color: #0d1117; }
.chrt-assign-retry-btn { background: #e8a838;           color: #0d1117; }

/* ═══════════════════════════════════════════════════
   ASSIGNMENT MODAL
   ═══════════════════════════════════════════════════ */

.chrt-assign-modal {
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  border-radius: 12px;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 80px);
  overflow: hidden;
}

.chrt-assign-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--ch-border);
  flex-shrink: 0;
  position: relative;
}
.chrt-assign-modal-head .chrt-close-btn {
  position: static;
  flex-shrink: 0;
}

.chrt-assign-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ch-text);
}

.chrt-assign-modal-body {
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Question */
.chrt-assign-question {
  font-size: 0.92rem;
  color: var(--ch-text);
  line-height: 1.6;
}
.chrt-assign-schema-note {
  font-size: 0.76rem;
  color: var(--ch-muted);
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

/* Hint */
.chrt-assign-hint-details {
  border: 1px solid var(--ch-border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.chrt-assign-hint-summary {
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ch-accent);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.chrt-assign-hint-summary::-webkit-details-marker { display: none; }
.chrt-assign-hint-summary::before { content: "▸ "; }
.chrt-assign-hint-details[open] .chrt-assign-hint-summary::before { content: "▾ "; }

.chrt-assign-hint-body {
  padding: 10px 14px 12px;
  font-size: 0.84rem;
  color: var(--ch-muted);
  line-height: 1.6;
  border-top: 1px solid var(--ch-border);
}

/* SQL editor */
.chrt-assign-editor {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chrt-assign-sql-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ch-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chrt-assign-sql {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  background: #0d1117;
  border: 1px solid var(--ch-border);
  border-radius: 8px;
  color: var(--ch-text);
  font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.84rem;
  line-height: 1.55;
  padding: 10px 12px;
  box-sizing: border-box;
}
.chrt-assign-sql:focus {
  outline: none;
  border-color: var(--ch-accent);
}
.chrt-assign-run-btn {
  align-self: flex-start;
  background: var(--ch-blue);
  color: #0d1117;
  border: none;
  border-radius: 7px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}
.chrt-assign-run-btn:hover { opacity: 0.85; }

/* Result table */
.chrt-result-scroll {
  overflow-x: auto;
  border: 1px solid var(--ch-border);
  border-radius: 8px;
}
.chrt-result-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.chrt-result-tbl th {
  background: rgba(255,255,255,0.04);
  color: var(--ch-muted);
  font-weight: 600;
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid var(--ch-border);
  white-space: nowrap;
}
.chrt-result-tbl td {
  color: var(--ch-text);
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  white-space: nowrap;
}
.chrt-result-tbl tr:last-child td { border-bottom: none; }
.chrt-result-note  { font-size: 0.75rem; color: var(--ch-muted); margin-top: 4px; }
.chrt-result-empty { font-size: 0.84rem; color: var(--ch-muted); padding: 8px 0; }
.chrt-result-error {
  font-size: 0.84rem;
  color: var(--ch-red);
  background: rgba(224,82,82,0.08);
  border: 1px solid rgba(224,82,82,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}

/* Check status */
.chrt-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.chrt-check-icon {
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}
.chrt-check-pass { color: var(--ch-green); }
.chrt-check-fail { color: var(--ch-red); }
.chrt-check-msg  { font-size: 0.85rem; color: var(--ch-text); }

/* Observation */
.chrt-assign-obs-wrap { display: flex; flex-direction: column; gap: 6px; }
.chrt-assign-obs-label {
  font-size: 0.84rem;
  color: var(--ch-text);
  line-height: 1.5;
}
.chrt-assign-obs {
  width: 100%;
  min-height: 90px;
  resize: vertical;
  background: #0d1117;
  border: 1px solid var(--ch-border);
  border-radius: 8px;
  color: var(--ch-text);
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 10px 12px;
  box-sizing: border-box;
}
.chrt-assign-obs:focus {
  outline: none;
  border-color: var(--ch-accent);
}

/* Decision */
.chrt-assign-dec-wrap { display: flex; flex-direction: column; gap: 6px; }
.chrt-assign-dec-label {
  font-size: 0.84rem;
  color: var(--ch-text);
  line-height: 1.5;
}
.chrt-assign-dec {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  background: #0d1117;
  border: 1px solid var(--ch-border);
  border-radius: 8px;
  color: var(--ch-text);
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 10px 12px;
  box-sizing: border-box;
}
.chrt-assign-dec:focus {
  outline: none;
  border-color: var(--ch-accent);
}

/* Submit */
.chrt-assign-submit-btn {
  align-self: flex-start;
  background: var(--ch-green);
  color: #0d1117;
  border: none;
  border-radius: 7px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}
.chrt-assign-submit-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.chrt-assign-submit-btn:not(:disabled):hover { opacity: 0.85; }

/* Feedback */
.chrt-assign-feedback { font-size: 0.88rem; }
.chrt-feedback-ok   { color: var(--ch-green); font-weight: 600; }
.chrt-feedback-warn { color: #e8a838; }
.chrt-feedback-err  { color: var(--ch-red); }

/* Responsive */
@media (max-width: 600px) {
  .chrt-assign-strip { flex-direction: column; align-items: flex-start; }
  .chrt-assign-modal { border-radius: 8px; }
}

/* ── Certificate name section ──────────────────────────── */

.chrt-cert-wrap {
  margin: 24px 0 8px;
  padding: 16px 0 0;
  border-top: 1px solid var(--ch-border);
}

.chrt-cert-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.chrt-cert-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ch-muted);
  margin-bottom: 2px;
}

.chrt-cert-name-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ch-text);
}

.chrt-cert-view-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d29922;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.chrt-cert-view-link:hover { text-decoration: underline; }

.chrt-cert-desc {
  font-size: 0.82rem;
  color: var(--ch-muted);
  margin: 6px 0 12px;
  line-height: 1.55;
}

.chrt-cert-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.chrt-cert-input {
  flex: 1;
  background: var(--ch-card);
  border: 1px solid var(--ch-border);
  border-radius: 8px;
  color: var(--ch-text);
  font-size: 0.88rem;
  padding: 8px 12px;
  font-family: inherit;
  box-sizing: border-box;
}
.chrt-cert-input:focus {
  outline: none;
  border-color: var(--ch-accent);
}

.chrt-cert-btn {
  background: linear-gradient(135deg, var(--ch-accent), #4B7F76);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity .15s;
}
.chrt-cert-btn:hover { opacity: 0.88; }

.chrt-cert-warning {
  font-size: 0.75rem;
  color: #e8a838;
  margin: 0;
}
