.predictions-board {
  max-width: 900px;
}

.predictions-market-card .premium-card-body {
  padding: var(--space-4);
}

.predictions-market-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.predictions-market-cell {
  background: var(--surface-container-low);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-2);
}

.predictions-market-label {
  font-size: var(--te-label-size);
  font-weight: var(--te-label-weight);
  letter-spacing: var(--te-label-spacing);
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

.predictions-market-value,
.predictions-market-confidence {
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--on-surface);
}

.predictions-best-bookmaker {
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: var(--te-radius-full);
  background: var(--surface-container-low);
  color: var(--on-surface);
  font-size: var(--te-label-size);
  font-weight: 800;
  letter-spacing: var(--te-label-spacing);
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .predictions-market-grid {
    grid-template-columns: 1fr;
  }
}

