/*
* All imports for the customisation of the Fenner template to be imported here
* 
*/
/* Responsive Media Queries */
/*
.font-base {
	font-family: @font-base;
	font-weight: normal;
}
*/
html {
  scroll-behavior: smooth;
  /* Match the height of your fixed header */
  scroll-padding-top: 100px;
}
.fenner-blog-header {
  color: #FFFFFF;
}
.fenner-blog-sidebar h4 {
  color: #000000;
}
.fenner-blog-toc > .uk-nav {
  position: relative;
}
.fenner-blog-toc > .uk-nav::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 2px;
  display: inline-block;
  background-color: #B3B3B3;
}
.fenner-blog-toc > .uk-nav li {
  padding-left: 20px;
}
.fenner-blog-toc > .uk-nav li.uk-active {
  position: relative;
}
.fenner-blog-toc > .uk-nav li.uk-active::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 2px;
  display: inline-block;
  background-color: #27509b;
}
/* Ensure the banner content aligns with page content */
.banner-content {
  box-sizing: border-box;
  width: 100%;
}
/* Desktop and larger tablets */
@media (min-width: 769px) {
  .desktop-layout {
    display: flex !important;
  }
  .mobile-layout {
    display: none !important;
  }
}
/* Mobile devices and small tablets */
@media (max-width: 768px) {
  .banner-container {
    height: 180px;
  }
  .desktop-layout {
    display: none !important;
  }
  .mobile-layout {
    display: block !important;
  }
  .banner-content {
    bottom: 10px;
  }
}
/* Very small devices */
@media (max-width: 480px) {
  .banner-container {
    height: 150px;
  }
  .mobile-layout .text-content h1 {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=fenner-custom.css.map */