.sportLayout {
  display: flex;              /* This puts them side by side */
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;          /* Forces them to stay next to each other */
  padding: 10px;
}

.content article {
  flex: 1;                    /* Each article takes equal width */
  padding: 10px;
  box-sizing: border-box;
}

.content iframe {
  flex: 1;
  min-width: 350px;
  height: 300px;
  border: 0;
}

