.site-header {
  background: #22a6df;
  color: #fff;
  padding: 1rem 0;
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  background: #e5e7eb;
  color: #374151;
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.475rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.nav-brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.link {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.link:hover {
  color: var(--brand-orange);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.split-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-hero-media {
  background-image: url("../images/cover.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2rem;
  background: var(--surface);
}

.split-hero-inner {
  width: min(560px, 100%);
}

.hero-main-logo {
  display: block;
  width: min(300px, 88%);
  height: auto;
  margin-bottom: 1.25rem;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  margin-bottom: 1.2rem;
}

.brand-logo {
  height: 21px;
  width: auto;
  object-fit: contain;
}

.split-hero-content h1 {
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #22a6de;
}

.hero-subhead {
  max-width: 58ch;
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.split-hero-content .cta-row {
  margin-top: 0.9rem;
}

.member-access-row {
  margin-top: 18px;
}

.member-access-link {
  font-size: 0.88rem;
  color: #464c52;
  text-decoration: none;
}

.member-access-link:hover {
  color: #22a6de;
  text-decoration: underline;
}

.split-hero-content .btn-primary {
  background: #22a6de;
  color: #FFFFFF;
}

.split-hero-content .btn-primary:hover {
  background: #1c8fbe;
}

.page-stack {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.narrow-page {
  margin-top: 1.5rem;
  width: min(760px, 92%);
}

.narrow-card {
  width: min(560px, 100%);
}

.page-intro {
  margin-bottom: 1.1rem;
}

@media (max-width: 900px) {
  .split-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .split-hero-inner {
    margin: 0 auto;
    text-align: center;
  }

  .split-hero-media {
    min-height: 260px;
  }

  .split-hero-content {
    padding: 1.6rem 1.2rem 1.9rem;
  }

  .hero-main-logo {
    width: min(250px, 84%);
    margin-left: auto;
    margin-right: auto;
  }

  .brand-logos {
    justify-content: center;
  }

  .split-hero-content .cta-row {
    display: block;
  }

  .member-access-row {
    margin-top: 18px;
  }

  .split-hero-content .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
    background: #22a6de;
    color: #FFFFFF;
  }
}
