/*
.howto ul ~ div:nth-of-type(1) {
.howto ul ~ div:nth-of-type(1) {
  background-color: #f00;
}
*/
.howto .wrap {
  gap: 20px;
  display: flex;
  flex-flow: column;
}
.howto .wrap > div {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 3fr;
}
  .howto .wrap > div > div:nth-child(1) {
    text-align: center;
    font-size: 1.3em;
    line-height: 1.4em;
    font-weight: normal;
  }
  .howto .wrap > div {
    margin-bottom: 10px;
  }
  .howto ~ .tip {
    background-color: #FFFEEC;
    padding: 20px 40px;
    border-radius: 10px;
    display: grid;
    align-items: center;
    gap: 30px;
    grid-template-columns: 1fr 10fr;
    margin-top: 30px;
  }
    .howto ~ .tip > div:nth-child(1) {
      text-align: center;
    }
    .howto ~ .tip p:last-child {
      margin-bottom: 0;
    }
  .howto ul {
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    list-style-position: inside;
  }
  .howto h3 {
    margin-bottom: 5px;
  }
  .howto [class^="iconly-"] {
    font-size: 1.6em;
    color: #82b338;
    margin-bottom: 5px;
  }
@media (max-width: 768px) {
  .howto .wrap > div {
    grid-template-columns: auto;
    gap: 0;
  }
}