.evidence-workbench {
  margin: 24px 0 32px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid #cbd8d0;
  background: #f4f7f3;
}

.evidence-workbench__intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.evidence-workbench__intro h2 {
  margin: 0 0 8px;
}

.evidence-workbench__intro p {
  margin: 0;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.evidence-form,
.evidence-draft {
  padding: 18px;
  border: 1px solid #cbd8d0;
  background: #fff;
}

.evidence-form {
  display: grid;
  gap: 14px;
}

.evidence-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.evidence-form input,
.evidence-form select,
.evidence-form textarea {
  width: 100%;
  border: 1px solid #9fb0a5;
  border-radius: 2px;
  padding: 11px 12px;
  color: #0a0c0b;
  background: #fff;
  font: inherit;
}

.evidence-form textarea {
  min-height: 112px;
  resize: vertical;
}

.evidence-form input:focus,
.evidence-form select:focus,
.evidence-form textarea:focus {
  outline: 3px solid rgba(167, 232, 36, 0.48);
  outline-offset: 1px;
}

.evidence-form small,
.evidence-draft__note,
.evidence-status {
  color: #53635a;
  font-size: 0.9rem;
}

.evidence-form small {
  margin-top: -8px;
}

.evidence-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.evidence-button,
.evidence-button--secondary {
  border: 1px solid #0a0c0b;
  border-radius: 2px;
  padding: 11px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.evidence-button {
  color: #0a0c0b;
  background: #c4fa3e;
}

.evidence-button--secondary {
  color: #0a0c0b;
  background: #fff;
}

.evidence-button:disabled,
.evidence-button--secondary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.evidence-draft h3 {
  margin: 0 0 6px;
}

.evidence-draft__note {
  margin: 0 0 14px;
}

.evidence-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  padding: 14px;
  border-left: 4px solid #a7e824;
  background: #f4f7f3;
}

.evidence-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 5px;
  color: #53635a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-list__event,
.evidence-list__request {
  display: block;
  margin-top: 4px;
}

.evidence-list__request {
  color: #304137;
  font-size: 0.92rem;
}

.evidence-status {
  min-height: 1.4em;
  margin: 10px 0 0;
}

.evidence-boundary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}

.evidence-boundary > div {
  padding: 16px;
  border-top: 3px solid #a7e824;
  background: #eef5e9;
}

.evidence-boundary strong,
.evidence-boundary span {
  display: block;
}

.evidence-boundary strong {
  margin-bottom: 6px;
}

.evidence-boundary span {
  color: #53635a;
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .evidence-layout,
  .evidence-boundary {
    grid-template-columns: 1fr;
  }

  .evidence-form,
  .evidence-draft {
    padding: 14px;
  }
}
