/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/*
** SJL: 10 Feb 2026 - tweaking H1 font size so all article headings can be H1 for 
** site search optimisation pruposes.
*/
h1 {
  font-size: 1.9rem;
}
/* 
** SJL: 2 Feb 2026 - endeavouring to push buttons to the bottom of a feature card.
** This solution was most labourious! Pretty much all google AI widsom failed! The following jl-card solution 
** offered the best solution! Gotta love the muck that Google AI drags up!
** Originally I tried justify-content: flex-end; However,given the variable length text in the feature box cards,
** this affected the layout of the top of the cards. space-between provided the best compromise solution.
*/
.jl-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/*
.jl-margin-top
{
   margin-top: auto !important;
}
*/
/* SJL 12 Dec 2025 - sorting button radius */
.jl-button {
  border-radius: 12px;
}
/* 
** SJL: Added June 8 2025 
** touched 11:55am
*/
.jl-section {
  display: flow-root;
  box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 25px;
}
/*
** Changed to 5px from 70px SJL: 8 JUN 2025/
*/
@media (min-width: 960px) {
  .jl-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
/* 
** SJL 15 Dec 2025 - sorting margins aorund box5 variation. 
** The issues was that the section level no padding top and botton and no margin bottom 
** were qualified with the !important. This meand that unless the customisatio below
** carried the !important tag, the section level g-content class setting could not be overridden.
*/
.box5 > .g-content {
  margin: 0.65rem !important;
  padding: 1.5rem !important;
}
/*
** SJL 15 Dec 2025 - adjusted backgorund color of bottom secti id to preserve alternating 
** colours of documetn sections .
*/
section#g-bottom {
  background: white;
}
/*# sourceMappingURL=custom_36.css.map */