/* =============================================================
   Science Habitat — Service Page Specific Styles
   ============================================================= */

/* ─── Capability Groups ─── */
.sh-capability-group { margin-bottom: 32px; }
.sh-capability-group h4 {
  color: var(--sh-teal); margin-bottom: 14px; font-size: 0.9rem;
  font-family: var(--sh-font-mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.sh-capability-list { list-style: none; }
.sh-capability-list li {
  padding: 8px 0; font-size: 0.9rem; color: var(--sh-text);
  border-bottom: 1px solid var(--sh-border);
  display: flex; align-items: flex-start; gap: 10px;
}
.sh-capability-list li::before {
  content: '→'; color: var(--sh-teal); flex-shrink: 0;
  font-size: 0.8rem; margin-top: 2px;
}

/* ─── Process Steps ─── */
.sh-process-steps { display: flex; flex-direction: column; gap: 0; }
.sh-process-step {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--sh-border);
}
.sh-process-step:last-child { border-bottom: none; }
.sh-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sh-navy); color: var(--sh-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px;
}
.sh-step-content h4 { margin-bottom: 4px; }
.sh-step-content p  { font-size: 0.88rem; color: var(--sh-muted); }

/* ─── Tools Grid ─── */
.sh-tools-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.sh-tool-tag {
  background: var(--sh-navy); color: var(--sh-teal-light);
  padding: 5px 12px; border-radius: var(--sh-radius-sm);
  font-family: var(--sh-font-mono); font-size: 0.78rem;
  border: 1px solid rgba(26,138,125,0.2);
}

/* ─── Deliverables List ─── */
.sh-deliverable-list { list-style: none; }
.sh-deliverable-list li {
  padding: 8px 0; font-size: 0.9rem;
  border-bottom: 1px solid var(--sh-border);
  display: flex; align-items: center; gap: 10px;
}
.sh-deliverable-list li:last-child { border-bottom: none; }
.sh-deliverable-list li::before { content: '✓'; color: var(--sh-teal); font-weight: 700; flex-shrink: 0; }

/* ─── FAQ Accordion ─── */
.sh-faq-item { border-bottom: 1px solid var(--sh-border); }
.sh-faq-question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 18px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--sh-font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--sh-navy); text-align: left; gap: 12px;
}
.sh-faq-question::after { content: '+'; color: var(--sh-teal); font-size: 1.4rem; flex-shrink: 0; }
.sh-faq-question[aria-expanded="true"]::after { content: '−'; }
.sh-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--sh-transition-slow);
}
.sh-faq-answer[aria-hidden="false"] { max-height: 500px; }
.sh-faq-answer__inner {
  padding: 0 0 18px;
  color: var(--sh-muted); font-size: 0.9rem; line-height: 1.7;
}

/* =============================================================
   Proof Pages (Publications, Case Studies)
   ============================================================= */

/* ─── Publication Card ─── */
.sh-publication-card {
  background: var(--sh-white); border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md); padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--sh-transition-fast);
}
.sh-publication-card:hover {
  border-color: var(--sh-teal);
  box-shadow: var(--sh-shadow-sm);
}
.sh-pub-year {
  font-family: var(--sh-font-mono); font-size: 0.75rem;
  color: var(--sh-teal); font-weight: 500; flex-shrink: 0; margin-top: 3px;
}
.sh-pub-content h4 { font-size: 0.92rem; margin-bottom: 6px; line-height: 1.4; }
.sh-pub-content p  { font-size: 0.82rem; color: var(--sh-muted); }
.sh-pub-content a  { color: var(--sh-teal); font-size: 0.78rem; }

/* ─── Case Study Detail ─── */
.sh-cs-header { background: var(--sh-navy); padding: 80px 0 60px; }
.sh-cs-header h1 { color: var(--sh-white); }
.sh-cs-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.sh-cs-meta-label {
  font-family: var(--sh-font-mono); font-size: 0.68rem;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-bottom: 4px;
}
.sh-cs-meta-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.sh-cs-section { padding: 40px 0; border-bottom: 1px solid var(--sh-border); }
.sh-cs-section:last-child { border-bottom: none; }
.sh-cs-section h3 {
  color: var(--sh-teal); font-size: 0.85rem;
  font-family: var(--sh-font-mono); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.sh-cs-section p { font-size: 0.95rem; line-height: 1.75; }
.sh-card.service-page-teaser .field--name-field-tools-standards {
  font-size:0.88rem;color:var(--muted);margin-top:8px;
}