practice-sentences {
  align-items: center;
	flex: 1 0 content;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

practice-sentences ol {
  display: flex;
  flex-direction: column;
	font-size: 1.25rem;
  font-weight: bold;
  inline padding: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

practice-sentences li {
  width: 28rem;
}

#sentence-buttons {
	display: flex;
	gap: 1rem;
}

@media (max-width: 820px) {
  practice-sentences{
    width: 100%;
    flex-shrink: 1;
  }

  practice-sentences li {
    width: unset;
  }
}