.home-page .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-page .stats article {
  border: 0;
  background: #fff;
}

.home-page .allocation {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 32px 38px;
}

.home-page .allocation p {
  max-width: 660px;
}

.home-page .allocation-link {
  white-space: nowrap;
  justify-self: end;
}

.home-page .allocation-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 960px) {
  .home-page .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .allocation {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 25px;
  }

  .home-page .allocation-link {
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .home-page .stats {
    grid-template-columns: 1fr;
  }

  .home-page .allocation-link {
    white-space: normal;
    text-align: center;
  }
}
