#subheading{
    font-weight: bold;
    font-size: 1em;
    padding-top: 0.8em;
}

a{
    text-decoration: underline;
    color: #13125E;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #003f88;
  }


@media (min-width: 992px) {
    #subheading{
        font-size: 1.2em;
    }
}


.back-link {
    display: inline-flex;
    align-items: left;
    text-decoration: none;
    color: #13125E;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 1.1rem;
    margin-bottom: 0.8em;
  }
  
  .back-link:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .back-icon {
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    fill: #13125E;
    margin-left: -0.3em;
  }
  
  @media (min-width: 992px) {
  
    #page-head {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between; /* optional, or use start */
      gap: 1rem;
    }
    
    #page-head .back-link {
      order: 2; /* move to the right */
    }
    
    #page-head .section-heading {
      order: 1; /* move to the left */
    }
  
  }