.about-grid {
  grid-template-columns: 0.75fr 1fr 1fr;
}
.site-header .brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 150px;
  min-width: 0;
}
.site-header .brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.site-header .nav .current-menu-item > a:not(.button),
.site-header .nav .current-menu-parent > a:not(.button),
.site-header .nav .current-menu-ancestor > a:not(.button),
.site-header .nav .current_page_item > a:not(.button) {
  color: var(--gold-light);
}
.site-header .nav .current-menu-item > a:not(.button)::after,
.site-header .nav .current-menu-parent > a:not(.button)::after,
.site-header .nav .current-menu-ancestor > a:not(.button)::after,
.site-header .nav .current_page_item > a:not(.button)::after {
  right: 0;
  height: 3px;
  box-shadow: 0 0 10px rgba(245, 173, 24, 0.45);
}
.site-footer .footer-grid li a {
  position: relative;
  display: inline-block;
  padding-block: 3px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.site-footer .footer-grid li a:hover,
.site-footer .footer-grid li a.is-active {
  color: var(--gold-light);
  transform: translateX(5px);
}
.site-footer .footer-grid li a.is-active {
  font-weight: 800;
}
.site-footer .footer-grid li a.is-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 173, 24, 0.65);
  transform: translateY(-50%);
}
.motion-marquee {
  margin-top: 34px;
  margin-bottom: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.hero + .motion-marquee {
  margin-top: 42px;
}
.page-hero + .motion-marquee {
  margin-top: 30px;
}
.mini-mascot {
  transition: transform 0.4s ease;
}
.card:hover .mini-mascot {
  transform: translateY(-7px) scale(1.03);
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .site-header .brand {
    width: 132px;
  }
  .hero + .motion-marquee {
    margin-top: 26px;
  }
}
@media (max-width: 580px) {
  .site-header .brand {
    width: 112px;
  }
  .motion-marquee {
    margin-top: 22px;
    margin-bottom: 8px;
  }
}
