#evidence,
.legacy-evidence,
.legacy-evidence[hidden] {
  display: none !important;
}

#evidence .tab-list,
#evidence .evidence-panel,
#evidence .evidence-note {
  display: none;
}

.legacy-workbook-explorer,
.legacy-workbook-explorer[hidden] {
  display: none !important;
}

.workbook-showcase {
  background: #fff;
}

.report-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.report-group-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px 25px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff 0%, #fff 68%, #faf7f0 100%);
  box-shadow: 0 3px 12px rgba(42, 51, 68, .035);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.report-group-grid article::after {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #1b56d8 0%, #1b56d8 34%, #b5914f 34%, #b5914f 48%, transparent 48%);
  content: "";
  opacity: .8;
}

.report-group-grid article:hover {
  border-color: #c9bd9f;
  box-shadow: 0 10px 26px rgba(42, 51, 68, .075);
  transform: translateY(-2px);
}

.report-group-grid article > span {
  display: block;
  margin-bottom: 9px;
  color: #8a6a2c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.report-group-grid h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.report-group-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.report-group-grid .group-examples {
  margin: 16px 0 17px;
  padding: 9px 11px;
  border: 1px solid #e5dfd3;
  border-radius: 6px;
  background: #f8f5ef;
  color: #34445e;
  font: 11px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.report-group-grid article > b {
  display: block;
  margin-bottom: 3px;
  color: #1b56d8;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.report-map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid #1b56d8;
  border-radius: 6px;
  color: #1b56d8;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 120ms ease, color 120ms ease;
}

.report-map-link::after {
  margin-left: 9px;
  content: "↓";
}

.report-map-link:hover,
.report-map-link:focus-visible {
  background: #1b56d8;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .report-group-grid article,
  .report-map-link {
    transition: none;
  }
}

@media (max-width: 850px) {
  .report-group-grid {
    grid-template-columns: 1fr;
  }

  .report-group-grid article {
    padding: 21px 20px 19px;
  }
}
