@media (max-width: 62em) {
  .list {
    max-width: 70rem;
  }
}

@media (max-width: 55em) {
  html {
    font-size: 60%;
  }
  .list {
    max-width: 55rem;
  }
  .title {
    line-height: 1.1;
  }

  .extra--question {
    html {
      font-size: 45%;
    }
  }

  .extra--question {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .extra--question--text {
    grid-column: 1 / 3;
  }
}

@media (max-width: 38em) {
  .list {
    max-width: 40rem;
  }

  .extra--question {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: #7f636e;
  }

  .extra--question-img-box {
    height: 50rem;
  }
}

@media (max-width: 30em) {
  .list {
    max-width: 30rem;
  }

  .heading-primary {
    font-size: 5rem;
  }

  .extra--question--text {
    padding: 2.4rem 3.2rem 2.4rem 3.2rem;
  }

  .extra--question-img-box {
    height: 45rem;
  }
}

@media (max-width: 20em) {
  .list {
    max-width: 22rem;
  }

  .heading-primary {
    font-size: 4rem;
  }

  .container {
    padding: 0 2rem;
  }

  .item {
    column-gap: 0;
  }

  .extra--question--text {
    padding: 1.2rem 1.6rem 1.2rem 1.6rem;
  }

  .extra--question-img-box {
    height: 30rem;
  }
}