@media (min-width: 68.75rem) {
  .home-hero {
    display: flex;
    padding-bottom: 0;
    justify-content: space-between;
  }
}

.home-hero__content {
  max-width: 37rem;
}

.home-hero__title {
  font-size: 2.5rem;
  color: var(--title-color);
}
@media (min-width: 34.375rem) {
  .home-hero__title {
    font-size: 3.75rem;
  }
}

.home-hero__subtitle {
  margin-top: 2.5rem;
  max-width: 30rem;
  font-size: 1.25rem;
}
@media (min-width: 34.375rem) {
  .home-hero__subtitle {
    font-size: 1.35rem;
  }
}

.home-hero__illustration {
  display: none;
}
@media (min-width: 68.75rem) {
  .home-hero__illustration {
    display: block;
    transform: rotate(10deg);
  }
}

.home-facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home-facts-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.25rem;
}
@media (min-width: 34.375rem) {
  .home-facts-list li {
    font-size: 1.375rem;
    gap: 2rem;
  }
}
.home-facts-list li:before {
  content: "";
  flex-shrink: 0;
  display: block;
  border-radius: 7px;
  position: relative;
  top: 9px;
  width: 10px;
  height: 10px;
}
@media (min-width: 34.375rem) {
  .home-facts-list li:before {
    top: 7px;
    width: 20px;
    height: 20px;
  }
}
.home-facts-list li:nth-child(3n+1)::before {
  background-color: var(--primary-yellow);
}
.home-facts-list li:nth-child(3n+2)::before {
  background-color: var(--primary-green);
}
.home-facts-list li:nth-child(3n+3)::before {
  background-color: var(--bright-orange);
}
.home-facts-list li:nth-child(3n+4)::before {
  background-color: var(--primary-blue);
}

.home-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 68.75rem) {
  .home-post-list {
    flex-direction: row;
  }
}
