/* 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: 6 Feb 2026 - endeavouring to push buttons to the bottom of a feature card on Kane's nepeancvs website.
** 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;
}
/*
** SJL: 7 Feb 2026 - a similar approach for JL feature box was required as was required for the jl-card style.
*/
.jl-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* SJL 6 Feb 2025 - sorting button border radius */
.jl-button {
  border-radius: 6px;
}
/*# sourceMappingURL=custom_22.css.map */