/* Keep the home score on the same visual side as the home team in RTL cards. */
.score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  direction: rtl;
  width: 100%;
}

.score strong:first-child { justify-self: end; }
.score strong:last-child { justify-self: start; }
