/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.site-header__gradient {
  background: linear-gradient(to bottom, rgba(12, 21, 51, 0.92) 0%, rgba(22, 35, 79, 0.55) 70%, transparent 100%);
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
}

.site-nav {
  align-items: center;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
}

.nav-link { color: #fff;}

.site-nav__logo img {
  max-height: 100px;
}

.site-nav__logo--mobile {
  margin: 0 auto;
}

.site-nav__dropdown-menu {
  background-color: rgba(20, 26, 64, .92);
  border: none;
  border-radius: 0;
  padding: .5rem 0;
  margin-top: 0;
  text-transform: none;
}

.site-nav__dropdown-menu .dropdown-item {
  color: #fff;
  padding: .5rem 1.25rem;
}

.site-nav__dropdown-menu .dropdown-item:hover,
.site-nav__dropdown-menu .dropdown-item:focus {
  background-color: rgba(255, 255, 255, .12);
  color: #fff;
}

.site-nav__dropdown .dropdown-toggle::after {
  vertical-align: 2px;
}

@media (min-width: 992px) {
  #siteNavCollapse {
    display: flex !important;
    align-items: center;
  }

  .site-nav__left,
  .site-nav__right {
    display: flex;
    flex: 1 1 0;
    margin: 0;
    gap: .5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
  }



  .site-nav__left {
    justify-content: flex-start;
  }

  .site-nav__right {
    justify-content: flex-end;
  }

  .site-nav__logo {
    flex: 0 0 auto;
    margin: 0 2rem;
  }

  .site-nav__logo img {
    max-height: 170px;
  }

  .site-nav .nav-item:not(:last-child)::after {
    content: "\2022";
    color: #fff;
    margin-left: .5rem;
    display: inline-block;
  }

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

@media (max-width: 991.98px) {

  .site-nav__left,
  .site-nav__right {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
}

#s-icons img {
  width: 45px;
  height: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
}

.hero__slide {
  min-height: 520px;
  max-height: 780px;
}

.hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
}

/* ---------- Bio grid ---------- */
.bio-card {
  text-align: center;
}

.bio-card__photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.bio-card__name {
  font-family: var(--bs-heading-font-family, 'Oswald', sans-serif);
  color: var(--theme-primary);
  font-size: 2rem;
  margin-bottom: 0.15rem;
}

.bio-card__role {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.1;
}

/* ---------- Filter bar ---------- */
.team-filter-bar {
  background: #f4f5f6;
  padding: 1.5rem 0;
}

.team-filter-bar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.team-filter-bar__btn {
  background: #8b93a1;
  color: #fff;
  font-family: var(--bs-heading-font-family, 'Oswald', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out;
}

.team-filter-bar__btn:hover,
.team-filter-bar__btn--active,
.team-filter-bar__btn--active:hover {
  background: var(--theme-accent);
  color: #fff;
}

@media (max-width: 767.98px) {
  .team-filter-bar__nav {
    flex-direction: column;
  }

  .team-filter-bar__btn {
    width: 100%;
    text-align: center;
  }
}



/* ---------- Blog Item ---------- */

.news-events__title {
  font-family: var(--bs-heading-font-family, 'Oswald', sans-serif);
  color: #16234f;
  font-weight: 600;
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
}

.news-card {
  border: 1px solid #e2e4e8;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.news-card__title {
  font-family: var(--bs-heading-font-family, 'Oswald', sans-serif);
  color: #16234f;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.news-card__excerpt {
  color: #333;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.news-card__btn {
  color: #16234f;
  font-family: var(--bs-heading-font-family, 'Oswald', sans-serif);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 0.25rem;
  align-self: center;
  transition: background-color 0.15s ease-in-out;
  background: #d8dade;
  border: solid 1px #d8dade;
}

.news-card__btn:hover {
  border: solid 1px var(--theme-accent);
  color: #16234f;
}

/* ---------- Footer ---------- */
.site-footer__background {
  background: url('/images/footerbkgd.jpg') center/cover no-repeat;
}

.site-footer__logo {
  max-height: 90px;
  width: auto;
}

.site-footer__nav .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__nav .nav-item {
  display: flex;
  align-items: center;
}

.site-footer__nav .nav-item:not(:last-child)::after {
  content: "\2022";
  color: #FFF;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .site-footer__nav {
    justify-content: center;
    text-align: center;
  }
}

.site-footer__copy-text {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__bottom {
  background: rgba(4, 10, 30, 0.85);
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.sponsors-section {
  background-color: #f4f6f4;
}

.sponsors-title {
  color: #16244a;
  font-weight: 800;
  letter-spacing: .5px;
}

.sponsors-swiper {
  padding: 0 10px;
}

.sponsor-logo-link {
  display: block;
}

.sponsor-logo {
  height: 150px;
  width: 150px;

}

.sponsors-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.sponsor-level-cta {
  display: inline-block;
  background: #16244a;
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  padding: .9rem 2rem;
  text-decoration: none;
}

.sponsor-level-cta:hover {
  background: #223768;
  color: #fff;
}
