/* Shared site footer — identical look & behavior on every page */

.site-footer {
  background-color: #f3f3f3;
  border-top: 1px solid #e5e5e5;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding-left: 64px;
    padding-right: 64px;
  }
}

.site-footer__logo {
  display: block;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #00488d;
  text-decoration: none;
  cursor: pointer;
}

.site-footer__logo:hover {
  opacity: 0.9;
}

.site-footer__blurb {
  max-width: 24rem;
  margin: 0 0 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #5f5f5f;
}

.site-footer__copy {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #5f5f5f;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__heading {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #00488d;
}

.site-footer__link {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5f5f5f;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease;
}

.site-footer__link:hover {
  color: #00488d;
  text-decoration: underline;
}
