/* =========================================================
   Research service pages (shared)
   ========================================================= */

.breadcrumb {
  margin: 0 1rem 2rem;
  font-size: var(--fs-sm);
  color: rgba(161, 165, 181, 0.9);
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.service-hero {
  padding-top: 70px;
}

.service-kicker {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(11, 16, 32, 0.65);
  margin: 0 0 0.6rem;
}

.service-hero h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.service-lead {
  max-width: 70ch;
  font-size: var(--fs-md);
  color: rgba(11, 16, 32, 0.8);
  margin: 0 0 1.2rem;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.section-light .btn-ghost,
.section-soft .btn-ghost {
  color: rgba(11, 16, 32, 0.5) !important;
}

.section-light .btn-ghost:hover,
.section-soft .btn-ghost:hover {
  color: white !important;
}

.service-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-bullets {
  margin: 0.6rem 0 0;
  padding-left: 0;
  list-style: none;
  font-size: var(--fs-sm);
  color: rgba(11, 16, 32, 0.78);
}

.service-bullets li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.28rem;
}

.service-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.12rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.service-body-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-output {
  padding: 1.45rem 1.5rem;
}

.service-output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .service-highlights { grid-template-columns: minmax(0, 1fr); }
  .service-body-grid { grid-template-columns: minmax(0, 1fr); }
}