/* =========================================================
   researchers — page-specific styles  →  assets/css/researchers.css
   Global styles live in assets/css/main.css
   ========================================================= */

.page-header-note {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 42rem;
  margin-top: 0.75rem;
}
.page-header-note strong {
  color: var(--text);
  font-weight: 600;
}

.researchers-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.phase-panels-wrap {
  flex: 1;
  overflow: hidden;
}

.phase-penn-note {
  font-size: 0.68rem;
  color: var(--text-3);
  margin-top: 0.75rem;
}

.pink-text {
  color: var(--pink);
}

/* Use-case strips */
.use-cases-wrap { margin-bottom: 1.5rem; }

.uc-strip {
  border-left: 3px solid rgba(43, 138, 138, 0.25);
  background: rgba(43, 138, 138, 0.03);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem 1rem 1.35rem;
  margin-top: 0.75rem;
  transition: border-color 0.2s, background 0.2s, padding-left 0.2s;
}
.uc-strip:hover {
  border-left-color: var(--teal);
  background: rgba(43, 138, 138, 0.07);
  padding-left: 1.6rem;
}

.uc-strip-header {
  margin-bottom: 0.35rem;
}
.uc-strip-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.uc-strip-tools-block {
  margin-bottom: 0.5rem;
}
.uc-strip-tool-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.uc-strip-tool-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.uc-strip-tool-list li {
  font-size: 0.72rem;
}
.uc-strip-tool-list a {
  color: var(--teal-bright);
  text-decoration: none;
  font-weight: 500;
}
.uc-strip-tool-list a:hover {
  color: var(--pink);
  text-decoration: underline;
}

.risk-list a {
  color: var(--teal-bright);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.risk-list a:hover {
  color: var(--pink);
  text-decoration: underline;
}

.uc-strip-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.uc-try-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal-bright);
  background: none;
  border: 1px solid var(--border-teal);
  border-radius: 3px;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.uc-try-btn:hover {
  border-color: var(--teal);
  background: rgba(43, 138, 138, 0.08);
  color: var(--text);
}

.uc-mini-prompt {
  margin-top: 0.75rem;
  background: #040810;
  border: 1px solid rgba(43, 138, 138, 0.2);
  border-radius: 6px;
  padding: 1.5rem 1.25rem 1rem;
  position: relative;
  font-size: 0.75rem;
  color: #7FCECC;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}
.uc-mini-prompt .copy-btn { opacity: 1; }
.uc-mini-prompt:hover .copy-btn { opacity: 1; }

[data-theme="light"] .uc-mini-prompt {
  background: #1a2d3d;
  color: #9fdede;
  border-color: rgba(43, 138, 138, 0.35);
}
