:root {
  --font-family: 'Inter', Helvetica Neue,Helvetica,Arial,sans-serif;

  --font-weight-light: 350;
  --font-weight-normal: 400;
  --font-weight-medium: 450;
  --font-weight-semibold: 500;
  --font-weight-bold: 600;

  --font-size-base: 14px;

  --line-height-tight: 1.3;
  --line-height-normal: 1.6;

  --color-text: #000; /* added for consistenty with dark mode. Not used for standard fonts */
  --color-text-dark: #222222; /* recommended website text color */
  --color-text-white: #fff;
  --color-text-grey: #1f1f1f;
  --color-text-light: #4b5563;

  --color-primary: #094f95;
  --color-primary-dark: #073a70;

  --color-secondary: #9c371c;
  --color-secondary-dark: #7a2d16;

 /* Light background color. Use for tag highlights */
  --color-primary-light: #e8f2fb;
  --color-secondary-light: #f7efe6;

/* The page itself */
  --color-background: #fff;
  --color-background-black: #000;

  --color-accent-orange: #d65a1f;
  --color-accent-blue: #2563eb;  
  --color-focus: #094f95;

  --color-outline-grey: #6b6462;
  --color-outline-blue: #094f95;

  --radius-lg: 10px;
  --radius-md: 8px;

    /* Primary brand gradient → orange to blue */
  --bg-gradient-primary: linear-gradient(     135deg,     rgba(212, 224, 241, 0.35) 0%,     rgba(246, 139, 60, 0.12) 100%   );

  /* Secondary: blue → white */
  --bg-gradient-secondary: linear-gradient(     135deg,     rgba(212, 224, 241, 0.5) 0%,     #ffffff 100%   );

    /* Darker gradient → orange to darker blue */
  --bg-gradient-darker: linear-gradient(     135deg,    #d4e0f1 0%,    rgba(246, 139, 60, 0.18) 100%   );

/* Neutral surface Neutral surface Cards, modals, forms, editor areas, panels as seen on trustees page as seen on trustees page */

  --surface-background: #ffffff;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-border: #4b5563;
}

/* =========================
DARK MODE TOKENS
========================= */

.dark {
  /* Base text */
  --color-text: #ffffff;
  --color-text-light: #ffffff;
  --color-text-dark: #ffffff;
  --color-text-white: #ffffff;

  /* Background system */
  --color-background: #030213;
  --surface-background: #0b1220;

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(212, 224, 241, 0.12);

  /* Brand stays similar but slightly lifted for contrast */
  --color-primary: #0d6efd;
  --color-primary-dark: #4f8fd6;

  /* Secondary */
  --color-secondary: #ff6f2c;
  --color-secondary-dark: #f58e5e;
  --color-accent-orange: #f9b65c;
  --color-accent-blue: #4f8fd6;

  /* Gradients inverted for dark readability */
  --bg-gradient-primary: linear-gradient(
    135deg,
    rgba(79, 143, 214, 0.18) 0%,
    rgba(255, 138, 76, 0.08) 100%
  );

  --bg-gradient-secondary: linear-gradient(
    135deg,
    rgba(79, 143, 214, 0.12) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );

  --color-focus: #4f8fd6;
}

/* =========================
FONT
========================= */

html {
  font-family: var(--font-family);
/*  font-size: var(--font-size-base); */
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { background-color: var(--color-background); font-family: var(--font-family); }

/* =========================
HEADINGS
========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  line-height: var(--line-height-tight);
  margin-top: 0.8em;
  margin-bottom: 0.5em;
}

h1 {
  color: var(--color-text); 
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

h3 {
  color: var(--color-text); 
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
}

h4 {
  font-size: 1.5rem;
  color: var(--color-primary);
}

h5 {
  font-size: 1.3rem;
}

h6 { 
font-size:1.2rem; 
color:var(--color-primary); 
}

h1 a, h1 a:visited, h2 a, h2 a:visited, h3 a, h3 a:visited, h4 a, h4 a:visited, h4 a, h4 a:visited, h5 a, h5 a:visited, h6 a, h6 a:visited { text-decoration: none;}
h1 a, h1 a:visited, h3 a, h3 a:visited  { color: var(--color-text); }
h2 a, h2 a:visited, h4 a, h4 a:visited, h6 a, h6 a:visited  { color: var(--color-primary); }
h1 a:hover, h2 a:hover,  h3 a:hover,  h4 a:hover,  h5 a:hover,  h6 a:hover { text-decoration:underline; color: #013ce7; }

/* =========================
PARAGRAPHS AND LISTS
========================= */

p {
  color: var(--color-text-dark);
  font-size: 1.15rem;
  line-height: 1.8;
}

ul li, ol li {
  font-size: 1.15rem;
  line-height: 1.6; margin-bottom: 0.7em;
}

.caption {
  font-size: 0.95rem;
  font-weight: 400;
  color:var(--color-text-light);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* =========================
BLOCKQUOTES - Updated to include var codes
========================= *

/*Blockquotes 2026*/
blockquote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;

  background: linear-gradient(
    135deg,
    rgba(212, 224, 241, 0.35) 0%,
    rgba(246, 139, 60, 0.12) 100%   );
     border: 1px solid rgba(9, 75, 149, 0.12);
     border-radius: 16px;
  position: relative;
}

blockquote {   quotes: none; }

blockquote p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  color: #1f2937;
  margin: 0;
}

blockquote p + p {   margin-top: 1rem; }

#tinymce, .ui-widget-overlay, header .container, .primary-menu   { background-color: var(--color-background); }


header.top-header { border-bottom: 2px solid #e3e3e3; }
   @media screen and (max-width: 576px) { header.top-header { border-bottom: none; }}

.top-header a img { padding:30px 0; max-width: 220px;}    /* Will be replaced with navbar-brand once new layout installed */
.top-header a img:hover { opacity: 1; } /* Will be replaced with navbar-brand once new layout installed */

/* =========================
SEARCH, SOCIAL, DONATE & MENU to be updated once new layout installed
========================= */
#search {  width: 99%;     margin-top: 20px;     margin-bottom: 20px; }
#search fieldset {  
   background-color: var(--surface-background); 
   padding: 5px 5px 5px 15px; 
  min-height: 35px; 
border: 1px solid var(--color-outline-grey);  
  min-height: inherit; 
  margin-bottom: 0; 
}

#search #search-text {
color: var(--color-text-grey);
background-color: transparent;
 width: 85%
}

#search input.form-control { border: none;  border-radius: 0; box-shadow: none; padding-left: 0; padding-right: 0; }
#search input { margin-bottom: 0; width: 170px;}
#search fieldset .form-group { margin-bottom: 0; }
#search-btn { background-color:transparent; float: right; }
#search-btn:hover { color: #d14925;}
#search input.submit { width: 25px; float: right;}


/* =========================
DONATION BUTTON IN Header DELETE AFTER going with mega menu
========================= */
.donate {
  font-weight: 600;
  font-size: 1.4em; }

.donate a {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 5px 20px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.2s ease; }

.donate a:hover, .donate a:active {
  background-color: var(--color-background);
  color: var(--color-primary);
  border-color: var(--color-primary) solid 1px;};
  text-decoration: none; }

/* =========================
PRIMARY MENU SYSTEM
========================= */
.navbar { padding: 0 1rem; }
nav .container { padding-left: 0;}

.menu {
  display: table;
  margin: 0 auto;
}

/* submenu */
.menu li li {  float: none; background-color: var(--color-background); }

/* primary menu wrapper */
.primary-menu {
  padding: 5px 0 0;
  border-bottom: 1px solid var(--surface-border);
  background: var(--color-background);
}
/* mobile */
@media screen and (max-width: 576px) {
  .primary-menu {     border-bottom: none;
  }
}

/* shared menu styling */
.primary-menu,
.small-hidden-menu ul li {
  background: var(--color-background);
  margin: 0;
  background-image: none;
}

/* links */
.primary-menu a,
.primary-menu a:visited {
  color: var(--color-text-dark);
  padding: 6px 17px 8px;
  font-size: 1em;
  text-decoration: none;
}

/* hover + active */
.menu a:hover,
.menu a.active {
  color: var(--color-primary);
}

/*mobile hamburger */
.fa-bars:before {
  color: var(--color-background);
  font-size: 1.8rem; }

.small-hidden-menu .xs-opener {
  color: var(--color-text-white);
  border: none;
  background-color: var(--color-background-black);
  margin-top: 30px;
  margin-right: 20px;
  padding: 13px 15px;
}

.small-hidden-menu .xs-opener:hover {
  color: var(--color-text-white); 
  background-color: var(--color-primary);
}

/*mobile menu */
.small-hidden-menu .details-slide.opened {
  border: 1px solid var(--surface-border);
  border-bottom: none;
}
/* dropdown panel */
.small-hidden-menu .details-slide.menu {
  background-color: var(--surface-background);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);

    right: 10px;
    left: unset;
    bottom: unset;
    margin-top: 130px;

    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }

/* menu items */
.small-hidden-menu ul li {
  background-color: var(--color-background);
  text-align: left;
}

/* remove submenu arrow */
.small-hidden-menu ul li > a:after {
  display: none;
}

/* heading sizing */
.primary-menu.visible-xs-block.small-hidden-menu h5 {
  font-size: 1.15rem;
  color: var(--color-text);
  }

.primary-menu.visible-xs-block.small-hidden-menu h5 { font-size: 1.15em; }

/* =========================
Delete after new supermenu installed
========================= */
.menu-2 {     margin-bottom: 8px; }
.menu-2-txt {  display: block;     text-align: center;   font-size: 1.5rem; margin-top: 0.8em;  padding-right: 20px; }
   @media screen and (max-width: 768px) { .menu-2-txt { font-size: 1.5rem; }}




  


#main-content {  background-color: #fff; border-top: 1px #b0adab solid;}
#content {     padding-top: 30px; }
#right-panel {     margin-top: 40px; }
   @media screen and (max-width: 600px) { #right-panel  {  margin-top: 10px; }}
#middle-panel { padding: 0px 30px 0px 0px; margin-bottom: 30px;    margin-top: 30px;      }
   @media screen and (max-width: 600px) { #middle-panel  { margin-bottom: 10px; padding-left: 15px;}}
#content-top, #content-extra img, #content-bottom img {  width:100%; }
   @media screen and (max-width: 600px) { #content-top {  padding-right: 25px;    padding-left: 25px; }}
   @media screen and (max-width: 600px) {  #content-top, #content-bottom {  padding-left: 15px; padding-right: 15px; }}

/* ----------------------------------------------------------
   Extra Content
   ----------------------------------------------------------  */

#content-extra {   background: var(--bg-gradient-darker);  }

/* Hide the hero when its content section is empty */
.page-hero:has(.fd-section:empty) {
    display: none;
}

.page-hero, #tinymce .page-hero  {
    background: var(--bg-gradient-darker);
    padding: 4rem 0;
}

#content-extra .container {
    background: transparent;
}

#content-extra .page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

#content-extra h1 {
    margin: 0 0 1rem;
}

#content-extra p {
    line-height: 1.7;
} 

.latest-unimodule.box ul, .latest-unimod.box ul { padding-inline-start: 20px; }
.box ol li a, .box ul li a, .box ol li, .box ul li { font-size: 1rem; }
.box h6 { font-size:1.3rem; text-align: left;     padding-left: 30px; }
.box ol, .box ul { margin: 7px 8px; }

.mod-index-divider a:hover {    text-decoration: underline; }

a img:hover { opacity: 0.7; filter: alpha(opacity=70); }

a {  color: #2563eb; }

/* ========================= Old hyperlink styling just in case
a {  color: #0c62b9;    text-decoration:underline;   font-weight: bold; }
a:hover  {   text-decoration:underline;    color: #013ce7; }
.social a:hover, .social a:focus { color:#fff; background-color:#b03b1a; } 
 ========================= */

.btn {padding: 6px 12px; }
#totop a.btn {     text-decoration: none; }

.content-header h3 {  ont-size: 1.2rem; }
.content-header p { font-size: 1rem; }
article a {   text-decoration:none;    font-weight: var(--font-weight-normal); }

/*FORM */
legend { font-size:1.2em; color: var(--color-primary); background-color:transparent; }
dt label { color: var(--color-text-dark); }
form {  font-size: 1.15rem; }
.fd-form input { border: 1px solid #999; }
.icon-asterisk.fa.fa-asterisk.red { color:red; font-size:80%; font-weight:900;  }
.form-group.row { margin-bottom: 0; }
fieldset.fd-form { padding-left: 0; }
fieldset.fd-form-field {  padding: 3px;     margin-bottom: 3px; }
legend.fd-legend-field {  margin-bottom: 5px; }

/*Right hand panel Lists DELETE after nee template installed
.rh ul a { font-size:1.6rem; color:#ba3c00; font-weight:500; margin-top:0.8em; margin-bottom:0.4em; line-height: 1.4; text-decoration:none;}
.rh ul a:visited { color:#ba3c00; text-decoration:none;}
.rh ul { padding-inline-start: 0px; }
.rh li::marker {color: #fff;}
#right-panel .box ol li p, #right-panel .box ul li p {       line-height: 1.4; } */

/* CLASSES */
.intro { font-size: 1.35rem; margin: 1em 0; }
.highlight { color:var(--color-accent-orange); }
strong {color: inherit;}

.nopadding, .paddingnone {    padding: 0 !important;    margin: 0 !important; }

/* Buttons 3 ways*/
.button { display: inline-block;   background-color: var(--color-primary);   color: white;   padding: 10px 20px;   font-size: 1.3em;   font-weight: 600;   text-align: center;  border: var(--color-primary) solid 1px; border-radius: 10px;   text-decoration: none;   cursor: pointer; }
.button:hover { color: var(--color-primary); background-color: var(--color-background); border: var(--color-primary) solid 1px;}

/* Small and secondary buttons inherits .button */
.button.button-2, .button.button-sm-2,  .button.button-lg-2 { background-color: var(--color-secondary); border-color: var(--color-secondary);  }
.button.button-2:hover,  .button-sm-2:hover, .button-lg-2:hover { color: var(--color-secondary);  background-color: var(--color-background);   border-color: var(--color-secondary); }

.button.button-3, .button.button-sm-3, .button.button-lg-3 { color: var(--color-primary); background-color: var(--color-background); border: var(--color-primary) solid 1px; }
.button.button-3:hover, .button-sm-3:hover,  .button-lg-3:hover {  color: var(--color-background); background-color: var(--color-primary); border: var(--color-primary) solid 1px; }

.button a, .button-sm a, .button-lg a, .button-2 a, .button-lg-2 a, .button-sm-2 a { color: inherit;   text-decoration: none; }

.button, .button.button-2, .button.button-3 {     font-size: 1rem;     padding: 10px 16px;     line-height: 1.3; }
.button.button-sm, .button.button-sm-2, .button.button-sm-3 {     font-size: 0.95rem;     padding: 8px 14px; }
.button.button-lg, .button.button-lg-2, .button.button-lg-3 {     font-size: 1.1rem;     padding: 12px 22px;     font-weight: 600; }

.button-group {     display: flex;     flex-wrap: wrap;     gap: 12px 12px;     margin-top: 10px; }

a.button:hover, a.button.button-sm:hover, a.button.button-lg:hover,  {     color: var(--color-primary);     text-decoration: none; }
a.button.button-2:hover, a.button.button-sm-2:hover, a.button.button-lg-2:hover {     color: var(--color-secondary);    text-decoration: none; }

/* Highlight tags with background.  */
.tag, .deadline {
    font-size: .85rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 999px;
}

.tag {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.deadline {
    background: var(--color-secondary-light);
    color: var(--color-secondary);
}

/*    old button pre Aug2025
.button_orange  {  display: inline-block;   background-color: #094f95;   color: white;   padding: 10px 20px;   font-size: 1.3em;
  font-weight: 600;   text-align: center;   border-radius: 10px;   text-decoration: none;   cursor: pointer;}
.button_orange a, .button_orange a:visited,.button_orange:active, .button_orange:hover {   background-color: #07396c; }   */ 

/* Base style for all background boxes */
.background { background-color: #f6f6f6; padding: 25px 30px; border-radius: 12px;     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); margin: 1.5em 0; margin-bottom: 20px; }

.background-secondary {   background-color: #d4e0f1; /* light blue */   var(--color-text); }
.background-dark {   background-color: var(--color-primary); color: #fff; }
      .background.background-dark, .background.background-dark * { color: #fff; }
      .background.background-dark a:hover { opacity: 0.8; }
.background-orange { background-color: rgba(246,139,60,0.2); color: var(--color-text); }

.rule { border-bottom: 2px solid var(--color-outline-grey); padding-bottom: 10px; margin-bottom: 30px;}
.rule a, .rule a:visited   { text-decoration:none; }
.rule a:hover { color: var(--color-accent-blue);}
.background.rule  { margin-bottom: 0; }

.info-hub h2, h2.info-hub  { color: var(--color-text); font-size: 1.5em; }
.info-list {     list-style-type: decimal;   }
.info-list a {     color: #0c62b9;     text-decoration: underline;     font-size: 1em; }
.info-list a:focus, .info-list a:hover {     text-decoration: none;     background-color: #f0f0f0; /* Light highlight for better accessibility */ }

/* Flightdec action SITE BUTTONS*/
.btn.green {  color: #028553;  border: 2px solid #028553;  background-color: #fff; }
.btn.green:hover {background-color: #028553; border: 2px solid #028553; }
.btn.green:active {background-color: #028553; border: 2px solid #028553;  }

a.btn.broadcast-ignore { width: inherit;}
.broadcast-toggle-modal .fa-paper-plane {  font-size: .50em; }
.broadcast-toggle-modal { padding: 4px 5px 5px 4px;     line-height: .25; }

.video-responsive { max-width:560px; max-height:315px;  border-radius: 10px; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);}
.video-wrapper {   position: relative;   width: 100%;   padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;   overflow: hidden;   border-radius: 10px;   box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); }
.video-wrapper iframe {   position: absolute;   top: 0;   left: 0;   width: 100%;   height: 100%;   border: 0; }

.map-responsive {  overflow:hidden;  padding-bottom:56.25%; position:relative; height:0;  }
.map-responsive iframe {  left:0;  top:0; height:100%; width:100%;  position:absolute;  }
.googlemaps {  overflow:hidden;     padding-bottom:56.25%;     position:relative;     height:0; }
.googlemaps iframe{     left:0;     top:0;     height:100%;     width:100%;     position:absolute; }

/*       Index listings DELETE after new template installed
.signature-image { margin-top: 5px; }
p.article-text a { color: #000; }
p.article-text a:hover { color: #0c62b9;} 
#event-image img { max-height:300px;}       
#event-details .event-dates a { padding-right: 8px; }
.textsize { display: none; }           */

/* Event Search -  search words.  Might not need this as no search on event page*/
#calForm input.form-control, #filter.form-control {    margin-bottom: 0rem; }
#calForm fieldset {  padding-left: 0px;   margin-bottom: 0px; }
.search-words {     border-bottom: 1px solid #babbbb;     padding-bottom: 10px;     margin-bottom: 50px; }
.search-words .btn {     font-weight: 500;     color: #636466; }
.search-words .btn:hover, .search-words .btn:focus {     color: #059c3c; }
/* for bootstrap 5 only */
.search-words .btn:hover, .search-words .btn:focus {  border: 1px solid #059c3c;   }

/* Banner images and text Option 5*/
.banner-bg {  position: relative; }
.bannerimage-bg img { object-fit: cover; height: 500px;}
   @media screen and (max-width: 576px) { .bannerimage-bg img {   height: 300px; }}

.banner-left-bg { position: absolute;  top:0;  left: 0px; background-color: #443932bf;  height: 100%;     width: 40%;}
   @media screen and (max-width: 992px) { .banner-left-bg  {  width:60%; }}
   @media screen and (max-width: 768px) { .banner-left-bg  {  width:70%; }}
   @media screen and (max-width: 576px) { .banner-left-bg  {  width:100%; }}

.bannertext-left-bg  { font-size:3em; color:#fff; font-weight:700;  line-height: 1.3;  padding: 120px 60px 20px 60px;     margin-bottom: 0.5em; }
   @media screen and (max-width: 992px) { .bannertext-left-bg {  padding: 100px 60px 20px 60px; }}
   @media screen and (max-width: 768px) { .bannertext-left-bg  {   font-size:2.8em; padding: 70px 60px 20px 60px; }}
   @media screen and (max-width: 576px) { .bannertext-left-bg   {   font-size:2em; padding: 80px 60px 20px 60px; }}

.hmpgbutton { margin: 20px auto; text-align: center;   padding: 10px 20px; border:1px #fff solid; display: inline; background-color: rgb(12 12 12 / 0.5);  font-weight:600;}
.hmpgbutton:hover {  color:#cfda20; border:none; background-color: #000; }
.hmpgbutton a { color:#fff;   font-size: 0.9em; text-decoration: none; }
.hmpgbutton a:hover    { color:#f9b631; }

.content-header  .basic-category { display:flex; }

/*NEWS CARDS*/
.card { margin: 0 3% 3% 0; width: 22%; height: 470px;  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: all 0.3s ease;}
     @media screen and (max-width: 1200px) { .card  { width:30%; }}
     @media screen and (max-width: 992px) { .card  { width: 45%; }}
     @media screen and (max-width: 768px) { .card  { width: 70%; padding-bottom: 25px; }}
     @media screen and (max-width: 576px) { .card  { width: 80%; padding-bottom: 25px; }}

.card:hover {
  border-color: #2563eb;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.card img, .card .signature-image {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}
.card-img:hover { opacity: 0.7; }

.card-body {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.card-body a { text-decoration: none; }
.card-body a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #094f95;
  font-weight: 500;
  text-decoration: none;
}

.card-body a:hover {
  text-decoration:underline;
  color: var(--color-accent-blue);
}

.card-title {  font-size: 1.5em; line-height: 1.3;   font-weight:  var(--font-weight-semi-bold); margin: 0; color: #111827; }
.card-title a { color: var(--color-text);  }
.card-title a:hover {   color: var(--color-accent-blue); }

p.card-text { font-size: 1.2em;     line-height: 1.6;  font-weight: var(--font-weight-normal); 
 text-decoration: none;   color: #374151;   margin-bottom: 0.5rem;
}

.unimod-date {
font-size: 0.8rem;
color: var(--color-text-light);
padding: 0;
margin: 0;
font-weight: var(--font-weight-medium);
line-height: 1;
} 
/* card dates   NOT being used. DELETE once certain
.cta.card-link {
  color: var(--color-primary);
  font-size: 0.95em;
  font-weight: var(--font-weight-bold);
  background-color: var(--surface-background);
  }  */



/* BASIC CARDS sig-image-left with heading & text-right.   NOT being used delete once certain
.basic-layout .content-header .basic-category {  display: block; } /*add the categories*/
.basic-layout img { max-height: 11rem;  width: 100%; } 
.card.mb-3.basic-layout { width: 100%; }
.card.mb-3.basic-layout .signature-image {max-height: 11rem; margin-bottom: 5px; }
.card.card-theme .signature-image, .signature-image {     object-fit: cover; }
.card.basic-layout .card-body { overflow: hidden; height: 11rem;  padding: 0;    border-radius: 0;}
.card-body h3 { font-size: 1.8em; margin-top: 0em;     line-height: 1.2;}          */

/* =========================
New css above. Old to be checked below 9.7.2026
=========================   */

/* ----------------------------------------------------------
   Footer 2026
   ---------------------------------------------------------- */
footer.aa-footer { padding-top: 4rem; }

.aa-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #374151;
padding-left: 40px;
}

.aa-footer .footer-section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid #dbeafe;
  padding-bottom: 0.375rem;
  margin-bottom: 0.75rem;
}

.aa-footer a {
  color: var(--color-text); 
  font-size: 0.875rem;
  text-decoration: none;
}

.aa-footer a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.aa-footer a.small.contact-link {
  color: var(--color-primary);   text-decoration: none;
}

.aa-footer a.small.contact-link:hover {
  color: var(--color-accent-primary);   text-decoration: underline;
}

.bi-geo-alt, .bi-telephone, .bi-telephone { color: var(--color-primary); }
.bi-facebook, .bi-twitter-x, .bi-instagram, .bi-linkedin, .bi-youtube  { color: var(--color-primary); }

a.small.contact-link { color: var(--color-primary);   text-decoration: underline; }

.aa-footer .legal-bar {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.aa-footer .legal-bar, .aa-footer .legal-bar a {
  color: var(--color-text);
  font-size: 0.8125rem;
}

.aa-footer .legal-bar a:hover {
  color: var(--color-accent-blue);
}

.aa-footer .social-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border-radius: 0.375rem;
  transition: color 0.15s;
}

.aa-footer .social-icon:hover, .bi-facebook:hover, .bi-twitter-x:hover, .bi-instagram:hover, .bi-linkedin:hover, .bi-youtube:hover  { color: var(--color-accent-blue); text-decoration: none;}

@media print 
{
    #user-notification,
    header,
    header *,
    header.top-header,
    nav,
    .menu-2,
    #comment-form-hide-btn,
    #right-panel,
    #fd-logo 
    {
        display: none !important;
    }

    #main-content 
    {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        display: block !important;
    }

    body      {
        background: var(--color-background) !important;
        color: var(--color-text) !important;     }
}

/* "Opens in new tab" indicator */
.new-tab::after {
    content: " (opens in a new tab)";
    font-size: 0.9em;
    color: var(--color-primary: #094f95);
}

/* Screen reader only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}