* {
  margin: 1;
  box-sizing: border-box;
}

img {
  max-width: 15%;
  height: auto;
}

.C_logo {
  max-width: 7%;
  height: auto;
}

& > * {
  width: fit-content;
  @media screen and 
    (max-width: 50rem) {
    --page-grids: 2;
  } 
  @media screen and
    (max-width: 30rem) {
    --page-grids: 1;
  }
}

header {
  line-height: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1;
  background-color: var(--color-background-header);
  color: var(--color-text-header);
}

.Teams {
  display: grid;
  grid-template-columns: repeat( var(--page-grids), 1fr);
  gap: 5px;
  align-items: start;
}

.Teams > dl > h3 {
  text-align: left;
}