/* Removes margin in all browsers */
body {
  margin: 0;
}

/* Border box */
html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (max-width: 480px) {

  html, body {
    min-width: 320px;
  }
}

.full-width-bg {
  width: 100vw; /* Make the section span the full viewport width */
  margin-left: calc(50% - 50vw); /* Align with the edges of the viewport */
  background-size: cover; /* Ensure the background image covers the entire section */
  background-repeat: no-repeat; /* Prevent repeating */
  background-position: center; /* Center the background image */
}

/* Page Styles, Fonts, Spacing */
body, input, select, textarea {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.65;
  font-weight: 400;
}

/* General section styles */
section {
  padding: 48px 0;
  display: block;
  border-top: 1px solid #dcdcdc;
}

.first-section {
  padding-top: 0 !important;
  border-top: none;
}

.last-section {
  padding-bottom: 0 !important;
  border-bottom: none;
}

/* Larger screen breakpoints */
@media (min-width: 992px) {
  section {
    padding: 64px 0;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 96px 0;
  }
}

p {
  margin: 16px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  line-height: 1.3;
  font-weight: 400;
  margin: 16px 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

hr {
  margin-top: 24px;
  margin-bottom: 24px;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

blockquote {
  border-left: solid 4px;
  font-style: italic;
  margin: 20px;
  padding: 10px 0 10px 20px;
}

/* Lists */
ul {
  list-style-type: disc;
  list-style: disc inside;
}

ol {
  list-style-type: lower-alpha;
  list-style: decimal inside;
}

li {
  margin-bottom: 12px;
  list-style-position: inside;
}

.gl {
  list-style-type: none;
  padding-inline-start: 0px;
}

/* Unvisited link */

a:link {
  color: #00A7E0;
  text-decoration: underline;
}

/* Visited link */
a:visited {
  color: #333;
  text-decoration: underline;
}

/* Mouse over link */
a:focus,
a:hover {
  color: #0086C9;
}

/* Selected link */
a:active {
  color: #0086C9;
}

/* Media */
/* Adds correct display in IE 9- */
audio, canvas, video {
display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  display: flex;
  position: relative;
  max-width: 100%;
  height: auto;
  border-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Hide the overflow in IE */
svg:not(:root) {
  overflow: hidden;
}

.lazyload {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Buttons */
.button:link,
.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  text-decoration: none;
  background-color: #00A7E0;
  border: 1px solid #00A7E0;
  padding: 12px 20px;
  margin-right: 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #FFFFFF;
  background: #0086C9;
  border-color: #0086C9;
  outline: 0;
}

.button.text-button:link,
button.text-button:link,
input[type="submit"].text-button:link,
input[type="reset"].text-button:link,
input[type="button"].text-button:link {
  color: #00A7E0;
}

.button.text-button:hover,
button.text-button:hover,
.button.text-button:visited,
button.text-button:visited,
input[type="submit"].text-button:hover,
input[type="reset"].text-button:hover,
input[type="button"].text-button:hover,
input[type="submit"].text-button:visited,
input[type="reset"].text-button:visited,
input[type="button"].text-button:visited,
.button.text-button:focus,
button.text-button:focus,
input[type="submit"].text-button:focus,
input[type="reset"].text-button:focus,
input[type="button"].text-button:focus {
  color: #0086C9;
  outline: 0;
}

/* Navigation */
/*=============== HEADER ===============*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 20px rgb(0 0 0 / 5%);
  background-color: #284461;
  border-bottom: 1px solid #dcdcdc;
  color: #fff;
  z-index: 100;
}

/*=============== NAV ===============*/
.nav {
  width: 100%;
  height: 56px;
}

.nav-data {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.nav-logo:link {
  position: relative;
  vertical-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo:hover,
.nav-logo:visited {
  color: #fff;
}

.nav-toggle {
  display: flex;
  position: relative;
  justify-content: end;
  width: 32px;
  height: 32px;
}

.nav-toggle-menu,
.nav-toggle-close {
  font-size: 20px;
  color: #fff;
  position: absolute;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav-toggle-close {
  opacity: 0;
}

.nav-menu {
  display: flex;
  height: 100%;
}

.nav-link {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

a.nav-link:link {
  color: #fff;
  text-decoration: none;
}

a.nav-link:hover {
  color: #00A7E0;
}

a.nav-link:visited {
  color: #fff;
}

/* Navigation for mobile devices */
@media screen and (max-width: 992px) {
  .header {
    color: #333;
  }
  .nav-menu {
    display: flex;
    background-color: #f5f5f5;
    position: absolute;
    left: 0;
    justify-content: center;
    top: 40px;
    width: 100%;
    height: calc(100vh - 56px);
    overflow: auto;
    padding-block: 24px 64px; /* padding top - bottom */
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav-menu::-webkit-scrollbar {
    width: 8px;
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background-color: hsl(200, 12%, 70%);
  }
  a.nav-link:link,
  a.nav-link:visited {
    color: #333;
  }  
  a.nav-link:hover {
  color: #00A7E0;
  }
  .nav-link.dropdown-button:hover {
    color:#00A7E0;
  }
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 56px;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav-toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav-toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown-button {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 24px;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown-container {
  background-color: #f0f0f0;
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown-group {
  padding-left: 40px;
}

.dropdown-icon {
  font-size: 20px;
  color: #333;
}

.dropdown-title {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  margin: 16px 0;
}

a.dropdown-title {
  color: #333;
  text-decoration: none;
}

a.dropdown-title:hover {
  color: #00A7E0;
}

ul.dropdown-list {
  list-style-type: none;
  padding: 16px 0;
}

.dropdown-link {
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

a.dropdown-link {
  color: #333;
  text-decoration: none;
}

a.dropdown-link:hover {
  color: #00A7E0;
}

.dropdown-desc {
  font-size: 16px;
  color: #333;
}

/* Rotate dropdown icon */
.show-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}

ul.nav-list {
  list-style-type: none; 
  padding: 0;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown-group {
    padding-left: 24px;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  /* Nav */
  .nav {
    height: calc(56px + 32px);
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    display: flex;
    margin: 0;
    padding: 0;
  }

  .nav li {
    display: flex;
    margin: 0;
  }

  .nav-link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown-button {
    pointer-events: none;
  }

  .dropdown-container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 104px;
    background-color: #f5f5f5;
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .dropdown-content {
    padding: 64px 0;
}

  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: 0;
  }

  ul.dropdown-list > a.dropdown-link > li {
    line-height: 2.65;
  }

  .dropdown-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    place-items: center;
    margin-bottom: 16px;
  }

  .dropdown-icon i {
    font-size: 32px;
  }

  .dropdown-title {
    font-size: 16px;
    color: #333;
    margin: 16px 0;
  }

  .dropdown-link {
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
  }

  a.dropdown-link {
    color: #333;
  }

  a.dropdown-link:hover {
    color: #00A7E0;
  }

  .dropdown-item {
    cursor: pointer;
  }

  li.dropdown-item:hover {
    color: #00A7E0;
  }

  /* Rotate dropdown icon */
  .dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Show dropdown menu */
  .dropdown-item:hover > .dropdown-container {
    top: 88px;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}

/* Banner */
.banner {
  background-image: ();
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.banner-title {
  color: #FFFFFF;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.banner-body {
  color: #FFFFFF;
  font-size: 18px;
}

@media (min-width: 576px) {
  .banner-title {
    font-size: 48px;
  }
  .banner-body {
    font-size: 18px;
  }  
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 64px;
  }
  .banner-body {
    font-size: 24px;
  }  
}

@media (min-width: 992px) {
  .banner-title {
    font-size: 80px;
  }
  .banner-body {
    font-size: 24px;
  }  
}

@media (min-width: 1200px) {
  .banner-title {
    font-size: 96px;
    line-height: 1.2;
  }
  .banner-body {
    font-size: 24px;
  }  
}

.banner-button:link,
.banner-button:visited {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
}

.banner-button:hover,
.banner-button:focus,
.banner-button:active {
  color: #d8f1f4;
 
}

.bg-color--black {
  background: #1f2534;
  color: #ffffff;
}

.bg-color--blue {
  background: #284461;
  color: #ffffff;
}

.bg-color--gray {
  background: #f7f7f7;
}

.bg-color--white {
  background: #ffffff;
}

.services {
  list-style: none;
  list-style-type: none;
  padding-inline-start: 0px;
}

.services-item {
  display: inline;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8bbbd0;
}

.services-item + .services-item:before {
  content: "\002F";
  padding: 0 4px;
}

/* Column */
.column {
  position: relative;
}

.column-outer {
  position: relative;
  overflow: hidden;
}

.column-item {
  display: flex;
  padding: 16px;
}

img.column-image {
  max-width: 100%;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
}

.column-wrap {
height: 100%;
}

.column-inner {
display: flex;
flex-direction: column;
height: 100%;
}

.column-category {
font-size: 18px;
text-transform: uppercase;
color: #0086c9;
}

.column-title {
font-size: 22px;
font-weight: 400;
line-height: 1.3;
}

.column-body {
font-size: 18px;
list-style: none;
}

.column-item-link:link {
display: flex;
position: relative;
flex: 1 1 100%;
height: 100%;
text-decoration: none;
flex-direction: column;
align-self: stretch;
background: #f7f7f7;
border: 1px solid #dcdcdc;
color: #333;
width: 100%;
font-weight: inherit;
overflow: hidden;
padding: 24px;
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
cursor: pointer;
}

.column-link-generic:link {
text-decoration: none;
}

.column-item-link:focus,
.column-item-link:hover, 
.column-item-link:visited {
background: #f7f7f7;
border: 1px solid #dcdcdc;
color: #333;
}

.column-cta {
display: flex;
margin-top: auto;
padding-top: 24px;
align-items: center;
justify-content: flex-start;
}

.column-link {
color: #00a7e0;
transition: 0.3s all ease;
font-weight: 600;
cursor: pointer;
}

.column-link:focus,
.column-link:hover {
color: #019acd;
}

@media (min-width: 576px) {
.column-title {
  font-size: 22px;
}
}

@media (min-width: 768px) {
.column-title {
  font-size: 24px;
}
}

@media (min-width: 992px) {
.column-title {
  font-size: 28px;
}
}

@media (min-width: 1200px) {
.column-title {
  font-size: 28px;
}
}

/* Main Header */
.main-title {
  position: relative;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .5px;
  text-align: center;
  margin-bottom: 32px;
  padding: 0 0 24px 0;
}

.main-body {
  font-size: 18px;
  padding-bottom: 45px;
  text-align: center;
}

.main-title {
  vertical-align: baseline;
}

.main-title::after {
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  width: 40px;
  content: "";
  margin: 0 auto;
  border-bottom: 5px solid rgb(0, 0, 0);
}

@media (min-width: 576px) {
  .main-title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .main-title {
    font-size: 33px;
  }
}

@media (min-width: 992px) {
  .main-title {
    font-size: 38px;
  }
}

@media (min-width: 1200px) {
  .main-title {
    font-size: 48px;
  }
}

/* Feature Header */
.pre-title {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.feature-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.3;
  margin-bottom: 32px;
}

.feature-body {
  font-size: 18px;
  list-style: none;
}

.feature-list {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

@media (min-width: 576px) {
  .feature-title {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .feature-title {
    font-size: 33px;
  }
}

@media (min-width: 1200px) {
  .feature-title {
    font-size: 38px;
  }
}

/* Stat Item */

.stats {
    display: flex;
}

@media (max-width: 576px) {
    .stats {
      flex-direction: column
    }
}

.stat-item {
  flex: 1;
  padding: 20px;
  position: relative;
  text-align: center;
}

.stat-header {
  font-size: 48px;
  line-height: 1.3;
}

.stat-body {
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
}

.stat-item::after {
  border-right: 2px solid #000;
  bottom: 0;
  content: "";
  display: block;
  left: 100%;
  margin-bottom: 5%;
  margin-top: 5%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

@media (max-width: 576px) {
    .stat-item::after {
        border-bottom: 2px solid #000;
        border-right: none;
        bottom: 0;
        height: 1px;
        left: 0;
        margin: 0 35%;
        right: 0;
        top: 100%;
        width: auto;
    }
}

.stat-item:last-child::after {
    display: none;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="fname"],
input[type="lname"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="organization"],
input[type="title"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="fname"],
input[type="lname"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  min-height: 165px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="fname"]:focus,
input[type="lname"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 8px;
  font-weight: normal;
}

.full-width {
  width: 100%;
  box-sizing: border-box;
}

/* Clipped Backgrounds */
.bg-clipped--blue {
  background: #f0f0f0;
  clip-path: polygon(17% 0%, 100% 8%, 100% 100%, 0% 100%, 0% 10%);
  transition: clip-path .6s, -webkit-clip-path .6s;
  position: relative;
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Offset for full-width breakout */
  height: auto;
  z-index: 1;
}

.bg-clipped--purple {
  background: linear-gradient(90deg, #9d00a5 0%, #b200b5 100%);
  clip-path: polygon(100% 0%, 100% 90%, 17% 100%, 0% 95%, 0% 0%);
  height: auto;
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Offset for full-width breakout */
  position: relative;
  transition: clip-path .6s, -webkit-clip-path .6s;
  z-index: 1;
}

/* Site Footer */

.cta {
  display: flex;
  background-image: url(../../images/cta-background.png);
  background-position: center;
  background-repeat: repeat;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.content:has(.cta),
.content:has(.wp-block-group .cta) {
  padding-bottom: 0;
}

.site-footer {
  background: #284461;
  color: #BBC0C4;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  padding: 45px 0;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-msg,
.footer-social {
  flex: 2;
}
.footer-msg {
  font-size: 18px;
}

.footer-social {
  margin-right: -7px;
  text-align: right;
}
.footer-social-item {
  color: #00A7E0;
  font-family: 'Font Awesome 5 Regular','Font Awesome 5 Brands', 'Font Awesome 5 Free';
  font-size: 24px;
  padding: 0 5px;
}

@media (max-width: 768px) {
  .site-footer,
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  .footer-msg {
    margin-top: 30px;
    order: 1;
  }
  .logo:link {
    margin-right: 0;
  }
  .footer-social {
    margin-right: 0;
    margin-top: 30px;
  }
}

/* References */
.references {
  list-style-type: lower-alpha;
  list-style: decimal inside;
  padding-inline-start: 0px;
}

.references-item {
  display: flex;
  flex-wrap: wrap;
  text-indent: 0;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.references-item::before {
  content: attr(data-counter);
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
}

.reference-text {
  flex: 1;
  padding-left: 8px;
  margin-bottom: 8px;
}

/* Post */
.label {
  background: #f4f7fc;
  padding: 2px 9px;
  border-radius: 4px;
}

.label--ltblue {
  background: #a6a6a6;
  color: #FFF;
  padding: 2px 9px;
  border-radius: 4px;
}

.post-meta-item {
  display: inline;
  color: #536479;
}

.post-meta-item + .post-meta-item:before {
  content: "\0000B7";
  padding: 0 4px;
}

.post-meta-author + .post-meta-author:before {
  content: "\00326";
  padding: 0 4px;
}

/* Posts */
.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-5px); /* Subtle hover effect */
}

.blog-card .blog-card-image img {
    width: 100%;
    height: 200px; /* Matches the 'featured-medium' or 'featured-small' size */
    object-fit: cover; /* Ensures consistency */
    border-radius: 5px 5px 0 0;
    border-bottom: 2px solid #ddd;
}

/* General Blog Card Styles */
.blog-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-date {
    font-size: 16px;
    color: #536479;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.blog-card-author {
  font-size: 16px;
  color: #777;
  margin-bottom: 0;
}

.blog-card-excerpt {
    font-size: 16px;
    color: #536479;
    line-height: 1.5;
    margin-top: 0;
}

.blog-card-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.blog-card-title a {
  color: #000; /* Default black color */
  text-decoration: none; /* No underline */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.blog-card-title a:hover {
  color: #00A7E0; /* Highlight color on hover */
}

.blog-card-title a:visited {
  color: #000; /* Ensure visited links remain black */
}

/* Posts Banner */
.post-banner {
  background-image: ();
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}

.post-banner-inner {
  position: relative;
  z-index: 10;
}

.post-banner-title {
  color: #FFFFFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add shadow for readability */
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.post-banner-body {
  color: #FFFFFF;
  font-size: 18px;
}

@media (min-width: 576px) {
  .post-banner-title {
    font-size: 48px;
  }
  .post-banner-body {
    font-size: 18px;
  }  
}

@media (min-width: 768px) {
  .post-banner-title {
    font-size: 64px;
  }
  .post-banner-body {
    font-size: 24px;
  }  
}

@media (min-width: 992px) {
  .post-banner-title {
    font-size: 80px;
  }
  .post-banner-body {
    font-size: 24px;
  }  
}

@media (min-width: 1200px) {
  .post-banner-title {
    font-size: 86px;
    line-height: 1.2;
  }
  .post-banner-body {
    font-size: 24px;
  }  
}

.post-banner-button:link,
.post-banner-button:visited {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
}

.post-banner-button:hover,
.post-banner-button:focus,
.post-banner-button:active {
  color: #d8f1f4;
}

.content:has(.banner),
.content:has(.wp-block-group .banner) {
  padding-top: 0;
}

.content:has(.industries),
.content:has(.wp-block-group .industries) {
  padding-bottom: 0;
}

/* Author Info  */
.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  text-align: left; /* Left-align text */
}

.author-avatar {
  margin-bottom: 10px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #333; /* Standard text color */
  margin: 0;
}

.post-meta {
  display: flex;
  align-items: center; /* Align date and length on the same line */
  margin-top: 5px;
  font-size: 16px;
  color: #536479;
  margin-bottom: 1rem;

}

.post-date {
  color: #536479;
  font-size: 14px;
  margin-right: 10px; /* Space between date and article length */
  margin-top: 0;
}

.title-length {
  color: #536479;
  font-size: 14px;
  margin-top: 0;
}

.title-length .dot {
  margin-right: 5px;
  color: #536479; /* Dot color */
  margin-top: 0;
}

/* Related Posts */
.related-posts {
    padding-top: 50px;
}

.related-posts h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.related-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.related-post-image img {
    width: 100%;
    height: auto;
}
.related-post-content {
    padding: 15px;
}

.related-post-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.related-post-excerpt {
    font-size: 1rem;
    color: #536479;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .related-posts .row {
        flex-direction: column;
    }

    .related-post-card {
        margin-bottom: 15px;
    }
}
/* Sidebar Styles */
.sidebar {
  background-color: transparent;
  border: none; /* No border */
}

.sidebar .author-info {
    font-size: 14px;
}

.sidebar .author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.sidebar .author-name {
    font-size: 16px;
    margin-top: 10px;
}

.sidebar .post-meta {
    color: #555;
}

.sidebar .post-date {
    margin-right: 10px;
}

.sidebar .title-length .dot {
    color: #555;
    margin: 0 5px;
}

.related-posts .blog-card {
    margin-bottom: 20px;
}

.fa-li {
  padding-right: 20px;
}