@media screen and (max-width: 769px) {
  h1 {
    br {
      display: none;
    }
  }
}

.level__title {
  display: grid;
  grid-template-areas: "title label" "border border";
  grid-template-columns: 1fr 100px;
  align-items: center;

  span:not([class]) {
    font-size: 14px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 32px;
    border-radius: 4px;
    align-items: center;
    background: var(--dark-blue);
  }

  .normal {
    small {
      font-size: 14px;
      display: inline-block;
      margin-left: 16px;
      color: var(--text);

      @media screen and (max-width: 769px) {
        display: block;
        margin-left: 0;
      }
    }
  }

  &::after {
    grid-area: border;
  }
}

.recommend {
  display: grid;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  overflow: hidden;

  dt {
    padding: 8px;
    color: #fff;
    background: var(--dark-blue);
    font-weight: bold;

    br {
      display: none;
    }

    @media screen and (min-width: 768px) {
      text-align: center;

      br {
        display: inline;
      }
    }
  }

  dd {
    padding: 8px;
    background: #dee7f2;
    color: var(--dark-blue);
  }

  @media screen and (min-width: 768px) {
    grid-template-columns: 100px 1fr;
    align-items: center;
  }
}

.h2 {
  @media screen and (min-width: 768px) {
    margin-top: 90px;
  }

  &~section:has(h3)+section {
    @media screen and (min-width: 768px) {
      margin-top: 68px;
    }
  }
}
