.learning {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;

  margin-top: 80px;
  margin-bottom: 120px;
}

.learning h1 {
  font-size: 48px;
  font-weight: 600;
}

.learning h2 {
  font-size: 24px;
  font-weight: 500;
}

.learning-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.learning-step h3 {
  font-size: 25px;
  font-weight: 600;
}

.learning-step p {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .learning {
    margin-bottom: 40px;
  }

  .learning h1 {
    font-size: 18px;
  }

  .learning h2 {
    font-size: 14px;
  }

  .learning-steps {
    grid-template-columns: 1fr;
  }

  .learning-step h3 {
    font-size: 18px;
  }

  .learning-step p {
    font-size: 14px;
  }
}
