.information {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #25283d;
}

.information__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.information__title {
  font-size: var(--size-3xl);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.information__description {
  max-width: 60ch;
  font-size: var(--size-base); 
  color: var(--white);
  margin: 1.5rem auto;
  line-height: 1.6;
}

.information__project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #3d4373;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.information__img-wrapper {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.information__img-wrapper svg {
  width: 80px;
  height: 80px;
  fill: var(--white);
}

.information__content {
  text-align: center;
}

.information__project-subtitle {
  font-size: var(--size-xl);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.information__project-description {
  font-size: var(--size-lg); 
  color: var(--white);
  margin: 1rem 0;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .information__project {
    flex-direction: row;
    text-align: left;
  }

  .information__project:nth-child(odd) .information__img-wrapper {
    order: 1;
  }

  .information__project:nth-child(odd) .information__content {
    order: 2;
  }

  .information__project:nth-child(even) .information__img-wrapper {
    order: 2;
  }

  .information__project:nth-child(even) .information__content {
    order: 1;
  }

  .information__img-wrapper svg {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .information__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .information__project {
    flex-direction: column;
    text-align: center;
  }

  .information__project:nth-child(odd) .information__img-wrapper,
  .information__project:nth-child(even) .information__img-wrapper {
    order: 0;
  }

  .information__project:nth-child(odd) .information__content,
  .information__project:nth-child(even) .information__content {
    order: 0;
  }
}

@media (min-width: 1280px) {
  .information__container {
    grid-template-columns: repeat(3, 1fr);
  }
}