.gs1-evidence {
  --gs1-evidence-line: rgba(17, 24, 39, 0.16);
  --gs1-evidence-surface: rgba(255, 255, 255, 0.96);
  --gs1-evidence-muted: #4b5563;
  --gs1-evidence-ink: #111827;
  width: 100%;
  min-width: 0;
  margin: 20px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--gs1-evidence-line);
  border-radius: 20px;
  background: var(--gs1-evidence-surface);
  color: var(--gs1-evidence-ink);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.gs1-evidence__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gs1-evidence__header > div {
  min-width: 0;
}

.gs1-evidence__eyebrow,
.gs1-evidence__key {
  margin: 0 0 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.gs1-evidence__eyebrow {
  text-transform: uppercase;
  color: var(--gs1-evidence-muted);
}

.gs1-evidence__header h2 {
  margin: 0 0 8px;
  color: var(--gs1-evidence-ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gs1-evidence__intro {
  max-width: 78ch;
  margin: 0;
  color: var(--gs1-evidence-muted);
  font-size: 15px;
  line-height: 1.55;
}

.gs1-evidence__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

.gs1-evidence__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid var(--gs1-evidence-line);
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.gs1-evidence__actions a:hover,
.gs1-evidence__actions a:focus-visible {
  border-color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gs1-evidence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gs1-evidence__card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--gs1-evidence-line);
  border-radius: 14px;
  background: #f8fafc;
  overflow-wrap: anywhere;
}

.gs1-evidence__key {
  color: #1d4ed8;
}

.gs1-evidence__card h3 {
  margin: 0 0 9px;
  color: var(--gs1-evidence-ink);
  font-size: 16px;
  line-height: 1.3;
}

.gs1-evidence__status,
.gs1-evidence__card p {
  margin: 0 0 8px;
  color: var(--gs1-evidence-muted);
  font-size: 14px;
  line-height: 1.45;
}

.gs1-evidence__status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid var(--gs1-evidence-line);
  border-radius: 8px;
  background: #fff;
  color: var(--gs1-evidence-ink);
  font-weight: 700;
}

.gs1-evidence__card p:last-child {
  margin-bottom: 0;
}

.gs1-evidence__boundary {
  margin: 14px 0 0;
  color: var(--gs1-evidence-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .gs1-evidence__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .gs1-evidence__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gs1-evidence {
    margin: 16px 0;
    padding: 16px;
    border-radius: 16px;
  }

  .gs1-evidence__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gs1-evidence__actions,
  .gs1-evidence__actions a {
    width: 100%;
  }
}
