/* CIDE PUBLICATIONS — Page-Specific Stylesheet
   Depends on: cide-global.css (load that first)
   Last updated: 2026-06-09
   ============================================================
   Child of: Research
   Purpose: Staff publications list organized alphabetically
   by topic. Designed for SEO and LLM discoverability —
   simple, semantic, static HTML.
   ============================================================

   Contents:
   1. Topic section
   2. Publication entry (link, PDF, citation-only)
   3. Publication meta (authors, journal, year)
   4. Responsive
   ============================================================ */


/* ============================================================
   1. TOPIC SECTION
   One section per research topic, H2 as section header.
   ============================================================ */

.cide-pub-section {
  margin-bottom: 3.5rem;
}

.cide-pub-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 3px solid var(--cu-gold);
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.cide-pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ============================================================
   2. PUBLICATION ENTRY
   Three states: linked title, PDF title, citation-only.
   ============================================================ */

.cide-pub-entry {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.cide-pub-entry:last-child {
  border-bottom: none;
}

/* Linked title (external journal or uploaded PDF) */
.cide-pub-title a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-color: var(--cu-gold);
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.cide-pub-title a:hover {
  color: var(--cu-gold);
}

/* Citation-only title (no link available) */
.cide-pub-title span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* PDF badge */
.cide-pub-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  background: var(--bg-light-gray);
  color: var(--text-muted);
  border: 1px solid var(--border-hairline);
}


/* ============================================================
   3. PUBLICATION META
   Authors · Journal · Year
   ============================================================ */

.cide-pub-meta {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.cide-pub-meta .cide-pub-year {
  font-weight: 600;
  color: var(--text-dark);
}


/* ============================================================
   4. RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .cide-pub-section h2 { font-size: 1.3rem; }
}
