.effort-card {
  display: grid;
  gap: 12px;
}

.effort-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.effort-row {
  min-width: 0;
  min-height: 74px;
  padding: 12px 8px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.effort-row span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.effort-row strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: clip;
  color: #ffffff;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  word-break: keep-all;
  text-align: center;
}

@media (max-width: 520px) {
  .effort-list {
    gap: 8px;
  }

  .effort-row {
    min-height: 68px;
    padding: 10px 4px;
  }

  .effort-row span {
    font-size: 0.68rem;
  }

  .effort-row strong {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }
}
