.card-grid--csv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.card-grid--static {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.card {
  border: 2px solid color-mix(in srgb, currentColor 5%, transparent);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--panel, #fff);
}

.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  height: calc(1.25em * 2);
  overflow: hidden;
}

.card img.thumb {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: rgba(77, 97, 128, 0.20);
  cursor: pointer;
}

.card .download {
  display: inline-block;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.80;
}

.card .download:hover,
.card .download:focus-visible {
  opacity: 1;
}

.card--static .desc {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.8;
  margin: 0.5rem 0;
}
