/* ---------- Main Footer Styles ---------- */

/* Logo scaling */
.footer-logo {
  width: clamp(140px, 17.5vw, 280px) !important;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}
/*.footer-logo img {
  max-height: 40px;
  height: auto;
}*/

/* Main nav layout */
.footer-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  text-align: center;
}

.nav-white {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}
.nav-white li {
  margin-bottom: 1.5rem;
}
.nav-white li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/* Disable hamburger menu on all screen sizes */
.et_pb_menu .et_pb_menu__wrap {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.et_pb_menu .et_pb_menu__menu {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.et_pb_menu .et_mobile_nav_menu,
.et_pb_menu__icon {
  display: none !important;
}
/*---- Acknowledgement banner ----*/
.acknowledgement p {
margin-bottom: 0;
}

@media (max-width: 768px) {
  .full-width-blended p {
    font-size: 0.8rem !important;
  }
}

/* ------------- FOOTER NAV -------------- */
.footer-dark {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-nav-wrapper {
  text-align: center;
}
.footer-top-nav {
  display: inline-grid;
  grid-template-columns: repeat(6, auto);
  gap: 0 2.5rem;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 2rem auto 0;
}
.footer-top-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.2rem;
}
.footer-top-nav a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .footer-top-nav {
    grid-template-columns: repeat(3, auto);
    gap: 1rem 2rem;
  }
  #about-bullets h5, li, p, span {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .footer-top-nav {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ---------------- Bottom Footer ---------------- */
.bottom-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-top: 1px solid #ccc;
  flex-wrap: wrap;
  font-size: 0.875rem;
  width: 100%;
}
.footer-left.small,
.footer-right.small {
  font-size: 0.875rem;
  color: var(--color-text) !important;
}
.footer-right {
  display: flex;
}
.footer-right a {
  color: var(--color-text) !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-right a:hover {
  color: #006c60;
}
.footer-right a:not(:last-child) {
  margin-right: 3rem;
}

@media (max-width: 768px) {
  .bottom-footer-bar {
    flex-direction: column-reverse;
    text-align: center;
    padding: 1rem 1rem;
    gap: 0.25rem;
  }
  .footer-right {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  .footer-left {
    margin-top: 0;
  }
  .footer-left .small p {
    font-size: var(--font-size-xs) !important;
  }
}