/* Figma foundations: radius 3121:3869 and shadow 2058:869. */
.shadow-lab {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  column-gap: 40px;
  row-gap: 16px;
  font-family: "Source Han Sans CN", "思源黑体 CN", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

.shadow-card {
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #222222;
  border-radius: 12px;
  background: #f7f8fa;
  box-shadow: var(--shadow-value);
  text-align: center;
}

.shadow-card strong {
  display: block;
  max-width: 220px;
  font-size: 40px;
  font-weight: 900;
  line-height: 49px;
}

.shadow-card > span {
  display: none;
}

@media (max-width: 680px) {
  .shadow-lab { grid-template-columns: 300px; }
  .shadow-card { min-height: 0; aspect-ratio: 1; }
}
