/* Evidence detail page — scoped helpers */
.evidence-block {
  max-width: 960px;
}

.evidence-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .evidence-gallery {
    grid-template-columns: 1fr;
  }
}

.evidence-gallery__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(70, 150, 220, 0.14);
  background: #fff;
  box-shadow: 0 12px 32px rgba(35, 105, 160, 0.07);
}

.evidence-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  background: #eef3f8;
}

.evidence-gallery__item figcaption {
  padding: 0.85rem 1rem 1rem;
  color: #5e7692;
  font-size: 0.9rem;
}

.evidence-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.evidence-list li {
  position: relative;
  padding: 1rem 1.1rem 1rem 2.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(70, 150, 220, 0.12);
  color: #5e7692;
  line-height: 1.65;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f92f2;
  box-shadow: 0 0 0 4px rgba(47, 146, 242, 0.14);
}

.evidence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* soft scroll offset for sticky header anchors */
#operation,
#scope,
#proof {
  scroll-margin-top: 96px;
}
