.results__date {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--m-blue);
  margin-top: 10px;
}

.results__info-block {
  display: grid;
  grid-template-columns: 240px auto;
  gap: 100px;
  align-items: center;
  margin-top: 80px;
}

.results__to-do {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 240px;
  max-width: 240px;
  max-height: 240px;
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: -0.03em;
  text-align: center;
  background-color: var(--m-blue);
  border-radius: 50%;
  color: white;
}

.results__list {
  display: grid;
  grid-template-columns: 480px auto auto;
  gap: 90px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.results__list-item {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.03em;
}

.results__list-item span {
  color: var(--m-blue);
}

@media screen and (max-width: 1419px) {
  .results__info-block {
    gap: 40px;
    margin-top: 40px;
  }
  .results__list {
    grid-template-columns: auto;
    gap: 30px;
  }
  .results__list-item {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .results__info-block {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 1023px) {
  .results__to-do {
    margin: auto;
  }
}
