/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* ALL PAGES*/
/*****************************************/

/* Hide the line break on screens smaller than 992px */
  @media (max-width: 991px) {
    .break-992 {
      display: none;
    }
  }



/**************************************************/
/** MEGA MENU **/
/**************************************************/

/* Remove spacing from empty heading block */
.mega-menu .mega-text-con:empty {
  display: none !important;
}

/* Remove top margin from items */
.mega-menu .mega-img-text-con {
  margin-top: 0 !important;
}
/* Reduce slide down mega menu spacing */
.mega-menu-1, .mega-menu-2, .mega-menu-3 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-right: 0 !important;
}

/* Add line - right side of the first column/title of the mega menu*/
.mega-menu-1 .col-3:first-child {
  border-right: 1px solid #0C9FE4;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.sticky-menu.active {
 z-index: 100000 !important;
}



/*****************************************/
/* HOMEPAGE SLIDER*/
/*****************************************/

.slide-column .column-inner {
  margin-bottom: 0 !important;
}

/* Remove bottom margin from text wrapper */
.slide-column .column-1 {
  margin-bottom: 0 !important;
}  



/*****************************************/
/* FOOTER SECTION*/
/*****************************************/
/* Make Rich Text links follow the footer styling - White text, green hover*/
  .footer-link {
    color: #ffffff;
    text-decoration: none;
  }

  .footer-link:hover {
    color: #10ad9e; /* hover colour */
  }

/* Adjust Social Icons Alignment in Smaller Screens*/
/* Base styles */
.hhs-col-content .social-icons {
  display: flex;
  gap: 16px;
}

/* Center align on smaller screens */
@media (max-width: 767px) {
  .hhs-col-content .social-icons {
    justify-content: center;
    text-align: center;
  }
}


/* Adjust Social Icons styling- White text, green hover*/
.social-icons {
  display: flex;
  gap: 20px;                 /* equal spacing */
  align-items: center;
}

.social-icons span svg {
  fill: #ffffff;             /* white icons */
  transition: fill 0.2s ease;
}

.social-icons span:hover svg {
  fill: #10ad9e;             /* green on hover */
}


/*****************************************/
/* HOMEPAGE - BLOG FEATURE USING MAGIC MODULE */
/*****************************************/
@media (max-width: 767px) {
  .stack-mobile {
    flex-direction: column !important;
  }

  .stack-mobile > div {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

/*****************************************/
/* BLOGS - POST PAGE */
/*****************************************/
.blog-header__inner {
  display: flex;
  align-items: center; /* vertical centring */
}

.blog-post__tags {
  margin-bottom: 0px !important;
  padding-bottom: 20px !important;
}

/* Center Social Sharing Icons Horizontally*/
.hs-blog-social-share {
  text-align: center;
}

.hs-blog-social-share-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}



.filter__header {
  text-align: center;
}

.filter__header .columns {
  justify-content: center;
}

.filter__header .post__filter {
  margin: 0 auto;
}

.post__category-selector {
  margin: 0 auto;
  display: block;
}

@media (max-width: 992px){
.blog-index__post img {
 position: static !important; 
}

/*HMake table of contents appear below nav menu */
.sticky-menu.active {
 z-index: 100000 !important;
}

/*********************************************/
/* 3:9 Layout (TOC = 25%, Content = 75%) */

@media (min-width: 992px) {

  /* Make row behave nicely */
  .blog-post.sticky-sidebar {
    display: flex;
  }

  /* LEFT COLUMN (TOC) → 3/12 */
  .blog-post.sticky-sidebar > div:first-child {
    flex: 0 0 25%;
    max-width: 25%;
  }

  /* RIGHT COLUMN (CONTENT) → 9/12 */
  .blog-post.sticky-sidebar > .blog-post__body {
    flex: 0 0 75%;
    max-width: 75%;
  }

}  


/*****************************************/
/* LANDING PAGE LOCAL FOOTERS */
/*****************************************/

.lp-local-footer .hhs-foot-nav-col {
  border: none !important;
}


.lp-footer-socials {
  text-align: right;
  color: #ffffff;
}


@media (max-width: 575px) {
  .lp-footer-socials {
    text-align: center;
  }

  .lp-footer-socials .social-icons {
    justify-content: center;
  }
}


@media (max-width: 575px) {
  img.lp-footer-logo {
    display: block !important;
    margin: 0 auto !important;   /* overrides inline margin: 0px */
    float: none !important;      /* just in case it’s being floated somewhere */
  }
}