* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f6f8;
  color: #1f2933;
}

img {
  display: block;
  max-width: 100%;
}

header {
  align-items: center;
  background: #003f87;
  color: white;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 15px clamp(16px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 20;
}

header h2 {
  margin: 0;
}

.brand {
  align-items: center;
  color: white;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  background: white;
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  padding: 3px;
  width: 42px;
}

.brand span {
  line-height: 1.1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: white;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 20px;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.page-hero {
  background: #102a43;
  border-radius: 8px;
  color: white;
  margin: 24px auto 0;
  max-width: 1180px;
  padding: clamp(46px, 8vw, 82px) clamp(16px, 4vw, 48px);
  width: calc(100% - clamp(32px, 8vw, 96px));
}

.page-hero h1,
.page-hero p {
  max-width: 780px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  margin-top: 0;
}

.page-hero p:last-child {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
}

.hero {
  align-items: end;
  background: #0055b8;
  color: white;
  display: grid;
  height: clamp(360px, 44.44vw, 640px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px) clamp(16px, 4vw, 48px) clamp(46px, 7vw, 72px);
  position: relative;
}

.hero::after {
  background:
    linear-gradient(0deg, rgba(0, 25, 55, 0.86), rgba(0, 41, 89, 0.42) 38%, rgba(0, 63, 135, 0.04) 72%),
    linear-gradient(90deg, rgba(0, 25, 55, 0.3), rgba(0, 63, 135, 0.02) 65%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero__image {
  height: 100%;
  inset: 0;
  object-fit: contain;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero__content {
  max-width: 560px;
  padding: 0;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 20, 45, 0.9);
  z-index: 1;
}

.carousel-dots {
  bottom: 18px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  z-index: 2;
}

.carousel-dots button {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
  width: 10px;
}

.carousel-dots button.is-active {
  background: #f7c948;
  width: 28px;
}

.hero h1 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  margin: 0 0 6px;
}

.hero p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 0 12px;
  max-width: 410px;
}

.hero .btn {
  font-size: 0.82rem;
  padding: 7px 11px;
  text-shadow: none;
}

/* Temporarily hidden until featured sponsor ads are ready. */
.featured-sponsors-section {
  display: none;
}

.intro-page-hero {
  background: linear-gradient(135deg, #4b1d6b, #0077c8 55%, #f7a600);
}

.intro-story {
  max-width: 920px;
}

.intro-story > section {
  margin-bottom: 42px;
}

.intro-story h2 {
  color: #003f87;
  margin-bottom: 12px;
}

.intro-story p,
.intro-list {
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-list {
  padding-left: 24px;
}

.intro-list li + li {
  margin-top: 8px;
}

.intro-motto {
  border-left: 5px solid #f7c948;
  padding-left: 24px;
}

.intro-quote {
  color: #003f87;
  font-size: 1.35rem !important;
  font-weight: 700;
}

.intro-contact {
  background: #f4f8fc;
  margin-bottom: 0 !important;
  padding: clamp(22px, 4vw, 38px);
}

.lion-page-hero {
  background: linear-gradient(135deg, #4b1d6b, #0077c8 55%, #f7a600);
}

.lion-creed {
  max-width: 860px;
}

.lion-creed > p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0 0 24px;
}

.lion-creed__lead {
  color: #003f87;
  font-size: clamp(1.35rem, 3vw, 1.8rem) !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

.lion-creed__callout {
  background: #f4f8fc;
  border-left: 6px solid #f7c948;
  margin: 40px 0;
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
}

.lion-creed__callout p,
.lion-creed__callout strong,
.lion-creed__callout span {
  display: block;
}

.lion-creed__callout strong {
  color: #003f87;
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 10px 0;
}

.lion-creed__callout span {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.lion-creed__closing {
  background: linear-gradient(135deg, #4b1d6b, #0077c8 55%, #f7a600);
  border-radius: 8px;
  color: white;
  margin-top: 40px;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
}

.lion-creed__closing h2 {
  color: #f7c948;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 8px 0 16px;
}

.lion-creed__action {
  margin-top: 28px;
  text-align: center;
}

.success-page-hero {
  background: linear-gradient(135deg, #4b1d6b, #0077c8 55%, #f7a600);
}

.success-essay {
  max-width: 860px;
}

.success-essay > section {
  margin-bottom: 42px;
}

.success-essay h2 {
  color: #003f87;
  margin-bottom: 12px;
}

.success-essay p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.success-essay__lead {
  color: #6b3e1f;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 700;
  line-height: 1.45 !important;
  margin-bottom: 42px;
}

.success-essay__quote {
  border-left: 6px solid #f7c948;
  color: #6b3e1f;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 32px 0;
  padding: 16px 0 16px 24px;
}

.success-essay__closing {
  background: linear-gradient(135deg, #4b1d6b, #0077c8 55%, #f7a600);
  border-radius: 8px;
  color: white;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
}

.success-essay__closing h2 {
  color: #f7c948;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.success-essay__closing strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 20px;
}

.success-essay__byline {
  color: #52606d;
  font-style: italic;
  text-align: right;
}

.btn {
  background: #f7c948;
  border-radius: 6px;
  color: #102a43;
  display: inline-block;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none;
}

.btn-secondary {
  background: white;
  color: #003f87;
  margin-left: 8px;
}

.quick-actions {
  background: #102a43;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-actions a {
  background: #003f87;
  color: white;
  font-weight: 700;
  padding: 18px;
  text-align: center;
  text-decoration: none;
}

.quick-actions a:hover,
.quick-actions a:focus {
  background: #0055b8;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 36px clamp(16px, 4vw, 48px);
}

.section h2 {
  margin: 0 0 18px;
}

.community-links-section {
  padding-bottom: 42px;
  padding-top: 42px;
  text-align: center;
}

.community-links-section h2 {
  color: #003f87;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 24px;
}

.community-links-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.community-link {
  align-items: center;
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  border-top: 4px solid #f7c948;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  color: #003f87;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 150px;
  padding: 22px 14px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.community-link:hover,
.community-link:focus-visible {
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.14);
  transform: translateY(-3px);
}

.community-link:focus-visible {
  outline: 3px solid rgba(0, 85, 184, 0.25);
  outline-offset: 3px;
}

.community-link__icon {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #0055b8;
  display: inline-flex;
  height: 200px;
  justify-content: center;
  width: 200px;
}

.community-link__icon img {
  height: 200px;
  object-fit: contain;
  width: 200px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  padding: 18px;
}

.overview-section {
  position: relative;
  z-index: 2;
}

.overview-card {
  border-top: 5px solid #f7c948;
  overflow: hidden;
  padding: 0;
}

.overview-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.overview-card h3 {
  color: #003f87;
  margin: 16px 18px 10px;
}

.overview-card p {
  color: #52606d;
  line-height: 1.55;
  margin: 0 18px 18px;
}

.service-section {
  padding-top: 10px;
}

.service-card {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  padding: 18px;
}

.service-card h3 {
  color: #003f87;
  margin: 0 0 8px;
}

.service-card p {
  color: #52606d;
  line-height: 1.55;
  margin: 0;
}

.update-card {
  color: #102a43;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
}

.update-card__date {
  color: #52606d;
  font-size: 0.85rem;
  font-weight: 600;
}

.facebook-page {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(280px, 500px) minmax(260px, 1fr);
}

.facebook-embed-card {
  background: #fff;
  height: 900px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-color: #1877f2 #d9e2ec;
  scrollbar-width: auto;
  width: 100%;
}

.facebook-embed-card::-webkit-scrollbar {
  width: 16px;
}

.facebook-embed-card::-webkit-scrollbar-track {
  background: #d9e2ec;
  border-left: 1px solid #bcccdc;
}

.facebook-embed-card::-webkit-scrollbar-thumb {
  background: #1877f2;
  border: 3px solid #d9e2ec;
  border-radius: 999px;
}

.facebook-embed-card::-webkit-scrollbar-thumb:hover {
  background: #0d5dc4;
}

.facebook-embed-card iframe {
  display: block;
  margin-inline: auto;
  max-width: 100%;
}

.facebook-page__info h2 {
  color: #003f87;
  margin-top: 0;
}

.facebook-page__info p:not(.eyebrow) {
  color: #52606d;
  line-height: 1.65;
}

.club-news-feed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-inline: auto;
  max-width: 820px;
}

.club-news-feed__intro {
  background: #f4f8fc;
  border-left: 5px solid #f5c400;
  border-radius: 10px;
  padding: clamp(22px, 4vw, 36px);
  text-align: center;
}

.club-news-feed__intro .eyebrow {
  margin-bottom: 8px;
}

.club-news-feed__intro p:not(.eyebrow) {
  margin: 0 auto 22px;
  max-width: 620px;
}

.facebook-feed-shell {
  align-self: center;
  border: 2px solid #1877f2;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.18);
  max-width: 524px;
  overflow: hidden;
  width: 100%;
}

.facebook-feed-shell__header {
  align-items: center;
  background: #1877f2;
  color: #fff;
  display: flex;
  gap: 12px;
  padding: 14px 18px;
}

.facebook-feed-shell__header strong,
.facebook-feed-shell__header span {
  display: block;
}

.facebook-feed-shell__header strong {
  font-size: 1rem;
}

.facebook-feed-shell__header div > span {
  font-size: 0.78rem;
  margin-top: 2px;
  opacity: 0.9;
}

.facebook-feed-shell__icon {
  align-items: flex-end;
  background: #fff;
  border-radius: 5px;
  color: #1877f2;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  line-height: 30px;
  width: 34px;
}

.club-news-hub {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 524px);
}

.club-news-hub__feed {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.club-news-hub__facebook-note {
  color: #627d98;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 14px 4px 0;
  text-align: center;
}

.club-news-hub__facebook-note a,
.club-news-text-link {
  color: #0055b8;
  font-weight: 700;
}

.club-news-sidebar {
  align-content: start;
  display: grid;
  gap: 20px;
  grid-column: 1;
  grid-row: 1;
}

.club-news-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.1);
  padding: clamp(20px, 3vw, 28px);
}

.club-news-panel .eyebrow {
  margin: 0 0 6px;
}

.club-news-panel h2 {
  color: #003f87;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  margin: 0 0 18px;
}

.club-news-panel--meeting {
  background: #eaf4ff;
  border-left: 5px solid #f5c400;
}

.club-news-panel--meeting > p:not(.eyebrow) {
  line-height: 1.6;
}

.club-news-panel--join {
  background: #003f87;
  color: #fff;
}

.club-news-panel--join .eyebrow,
.club-news-panel--join h2 {
  color: #f5c400;
}

.club-news-panel--join > p:not(.eyebrow) {
  line-height: 1.6;
}

.club-news-events {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.club-news-event {
  border-left: 4px solid #f5c400;
  padding-left: 14px;
}

.club-news-event__date {
  color: #0055b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.club-news-event h3 {
  color: #102a43;
  font-size: 1rem;
  margin: 0 0 5px;
}

.club-news-event p:last-child {
  color: #627d98;
  font-size: 0.86rem;
  line-height: 1.4;
  margin: 0;
}

.club-news-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.club-news-actions .button {
  text-align: center;
}

.button--light {
  background: #fff;
  color: #003f87;
}

.club-news-sponsor-button {
  align-items: center;
  background: linear-gradient(110deg, #f5c400 0%, #ffe678 48%, #f5c400 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #003f87;
  display: flex;
  font-size: 1.05rem;
  font-weight: 800;
  justify-content: center;
  overflow: hidden;
  padding: 16px 28px;
  position: relative;
  transition: background-position 0.35s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.club-news-sponsor-button:hover,
.club-news-sponsor-button:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  color: #003f87;
  transform: translateY(-3px);
}

.club-news-sponsor-button__arrow {
  font-size: 1.25rem;
  margin-left: 9px;
  transition: transform 0.25s ease;
}

.club-news-sponsor-button:hover .club-news-sponsor-button__arrow,
.club-news-sponsor-button:focus-visible .club-news-sponsor-button__arrow {
  transform: translateX(5px);
}

.sponsor-banner {
  background: #fff7d6;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 12px clamp(16px, 4vw, 48px);
}

.sponsor-banner__link {
  background: white;
  border: 2px dashed #d69e2e;
  border-radius: 8px;
  color: #102a43;
  display: block;
  aspect-ratio: 400 / 75;
  flex: 0 1 400px;
  height: auto;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: min(400px, 100%);
}

.sponsor-banner__link img {
  height: 100%;
  object-fit: fill;
  width: 100%;
}

.sponsor-banner__link span,
.ad-card span {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 6px;
  color: #102a43;
  font-weight: 700;
  padding: 8px 12px;
  position: relative;
  text-align: center;
}

.ad-grid {
  align-items: stretch;
}

.featured-sponsors-section {
  padding-bottom: 18px;
  padding-top: 18px;
}

.ad-card {
  aspect-ratio: 5 / 3;
  background: white;
  border: 2px dashed #9fb3c8;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.ad-card img {
  height: 100%;
  object-fit: fill;
  width: 100%;
}

.scroller {
  background: #102a43;
  overflow: hidden;
  padding: 18px 0;
}

.scroll-track {
  animation: scroll 24s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.scroll-track:empty {
  animation: none;
  min-height: 120px;
}

.scroller:hover .scroll-track,
.scroller:focus-within .scroll-track {
  animation-play-state: paused;
}

.scroll-item {
  align-items: center;
  background: transparent;
  color: #102a43;
  border-radius: 8px;
  display: flex;
  font-weight: 700;
  height: 120px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 240px;
}

.scroll-item img {
  height: 100%;
  inset: 0;
  object-fit: contain;
  padding: 6px;
  position: absolute;
  width: 100%;
}

.scroll-item span {
  padding: 8px;
  position: relative;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-track {
    animation: none;
  }

  .club-news-sponsor-button,
  .club-news-sponsor-button__arrow {
    transition: none;
  }

  .scroller {
    overflow-x: auto;
  }
}

.directory-controls {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 2fr) minmax(180px, 1fr);
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: #52606d;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  background: white;
  border: 1px solid #bcccdc;
  border-radius: 6px;
  color: #1f2933;
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  resize: vertical;
}

.business {
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.business--premium {
  border-color: #f7c948;
  box-shadow: 0 10px 26px rgba(247, 201, 72, 0.2);
}

.business__logo {
  aspect-ratio: 7 / 4;
  background: #e6edf5;
  border-bottom: 1px solid #d9e2ec;
  object-fit: cover;
  width: 100%;
}

.business__logo--empty {
  align-items: center;
  color: #0055b8;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
}

.business__content {
  padding: 0 18px 18px;
}

.business__badge {
  background: #f7c948;
  border-radius: 999px;
  color: #102a43;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.business h3 {
  margin: 0 0 8px;
}

.business p {
  margin: 0 0 10px;
}

.business__category {
  color: #52606d;
  font-weight: 700;
}

.business__meta {
  color: #52606d;
  font-size: 0.95rem;
}

.business__link {
  color: #0055b8;
  display: inline-block;
  font-weight: 700;
  margin-top: 8px;
}

.officer img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.officer h3 {
  margin: 14px 0 6px;
}

.officer p {
  color: #52606d;
  margin: 0 0 10px;
}

.officer__email {
  color: #0055b8;
  display: inline-block;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.leadership-status {
  color: #52606d;
  margin: 12px 0 0;
}

.leadership-status:empty {
  display: none;
}

.contact-callout {
  background: white;
  border-top: 1px solid #d9e2ec;
  max-width: none;
  text-align: center;
}

.contact-callout p {
  color: #52606d;
  margin: 0 auto 18px;
  max-width: 640px;
}

.contact-page {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
}

.contact-location {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  padding-top: 10px;
}

.contact-location[hidden] {
  display: none;
}

.contact-location__details h2 {
  color: #003f87;
}

.contact-location__details > p:not(.eyebrow) {
  color: #52606d;
  line-height: 1.6;
  margin-bottom: 22px;
}

.contact-map {
  border: 2px solid #d9e2ec;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.12);
  min-height: 340px;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 340px;
  width: 100%;
}

.contact-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}

.contact-intro p {
  color: #52606d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  justify-self: start;
}

.form-note {
  color: #52606d;
  font-size: 0.92rem;
  margin: 0;
}

.news-hero {
  background: #102a43;
  color: white;
  padding: clamp(48px, 8vw, 84px) clamp(16px, 4vw, 48px);
}

.news-hero > div {
  margin: 0 auto;
  max-width: 1180px;
}

.eyebrow {
  color: #f7c948;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.news-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: 0 0 12px;
}

.news-hero p:last-child {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

.news-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.news-feed {
  display: grid;
  gap: 22px;
}

.post-card {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  overflow: hidden;
}

.post-card img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  width: 100%;
}

.post-card__body {
  padding: 22px;
}

.post-meta {
  color: #52606d;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.post-card h2 {
  color: #102a43;
  margin: 0 0 10px;
}

.post-card p {
  line-height: 1.6;
}

.post-card p:last-of-type {
  color: #52606d;
  margin: 0 0 14px;
}

.post-card a,
.widget a {
  color: #0055b8;
  font-weight: 700;
}

.news-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 86px;
}

.widget {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.widget h2 {
  color: #102a43;
  font-size: 1.15rem;
  margin: 0;
}

.widget a {
  text-decoration: none;
}

.widget p {
  color: #52606d;
  line-height: 1.5;
  margin: 0;
}

.mini-form {
  display: grid;
  gap: 10px;
}

.mini-form input {
  border: 1px solid #bcccdc;
  border-radius: 6px;
  font: inherit;
  padding: 10px 12px;
}

.mini-form button {
  background: #f7c948;
  border: 0;
  border-radius: 6px;
  color: #102a43;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 10px 12px;
}

footer {
  background: #003f87;
  color: white;
  margin-top: 36px;
  padding: 18px;
  text-align: center;
}

footer p {
  margin: 0;
}

.site-footer {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  margin-top: 36px;
  padding: 28px clamp(16px, 4vw, 48px);
  text-align: left;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer .brand {
  margin-bottom: 10px;
}

.site-footer p {
  line-height: 1.55;
}

.site-footer a {
  color: white;
}

.events-list {
  display: grid;
  gap: 18px;
}

.event-card {
  align-items: center;
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 92px 1fr;
  padding: 18px;
}

.event-date {
  background: #003f87;
  border-radius: 8px;
  color: white;
  padding: 14px 10px;
  text-align: center;
}

.event-date span,
.event-date strong {
  display: block;
}

.event-date strong {
  font-size: 2rem;
}

.event-card h2 {
  color: #102a43;
  margin: 0 0 8px;
}

.event-category {
  color: #003f87;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px !important;
  text-transform: uppercase;
}

.event-labels {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.event-labels .event-category {
  margin: 0 !important;
}

.event-status {
  border-radius: 999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 9px;
  text-transform: uppercase;
}

.event-status--upcoming {
  background: #167c3b;
}

.event-status--passed {
  background: #c62828;
}

.event-card p {
  color: #52606d;
  line-height: 1.55;
  margin: 0;
}

.event-meta {
  font-weight: 700;
  margin-top: 10px !important;
}

.event-address {
  margin-top: 6px !important;
}

.event-map {
  color: #0055b8;
  font-weight: 700;
  margin-left: 6px;
}

.sponsor-page-hero {
  background: #003f87;
}

.tier-card {
  display: grid;
  gap: 12px;
}

.tier-card h3,
.tier-card p {
  margin: 0;
}

.tier-price {
  color: #003f87;
  font-size: 1.4rem;
  font-weight: 700;
}

.sponsor-preview .sponsor-banner {
  margin: 0 0 20px;
  padding-left: 0;
  padding-right: 0;
}

.sponsor-placement-examples {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-example {
  background: white;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  padding: 22px;
}

.sponsor-example > h3 {
  color: #003f87;
  margin: 0 0 8px;
}

.sponsor-example > p {
  color: #52606d;
  line-height: 1.55;
  margin: 0 0 18px;
}

.sponsor-example__scroller {
  background: #102a43;
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
}

.sponsor-example__logo {
  align-items: center;
  display: flex;
  flex: 0 0 180px;
  height: 100px;
  justify-content: center;
}

.sponsor-example__logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.sponsor-example__directory {
  margin: 0 auto;
  max-width: 360px;
}

.sponsor-example__directory .business__logo {
  background: #f4f6f8;
  object-fit: contain;
  padding: 16px;
}

@media (max-width: 760px) {
  .sponsor-placement-examples {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 1.05rem;
    min-width: 0;
  }

  .brand img {
    height: 36px;
    width: 36px;
  }

  .brand span {
    overflow-wrap: anywhere;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
  }

  nav {
    background: #003f87;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 22px rgba(16, 42, 67, 0.2);
    display: none;
    gap: 0;
    grid-template-columns: 1fr;
    left: 0;
    padding: 8px 14px 12px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .nav-open nav {
    display: grid;
  }

  nav a {
    border-radius: 6px;
    padding: 11px 8px;
  }

  nav a:hover,
  nav a:focus {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
  }

  .grid-3:not(.ad-grid) {
    grid-template-columns: 1fr;
  }

  .featured-sponsors-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-sponsors-section h2 {
    font-size: 1.35rem;
  }

  .ad-grid {
    gap: 8px;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .featured-sponsors-section .ad-card {
    border-width: 1px;
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: center;
  }

  .grid-4,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .community-links-section {
    padding-bottom: 32px;
    padding-top: 32px;
  }

  .community-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-link {
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 14px 8px;
    text-align: center;
  }

  .community-link__icon {
    flex: 0 1 200px;
    height: auto;
    max-width: 200px;
    width: 100%;
  }

  .community-link__icon img {
    aspect-ratio: 1;
    height: auto;
    max-width: 200px;
    width: 100%;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-actions a {
    font-size: 0.92rem;
    padding: 12px 8px;
  }

  .cta {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .cta .btn {
    padding: 8px 10px;
    text-align: center;
  }

  .btn-secondary {
    margin: 0;
  }

  .hero {
    align-items: stretch;
    background: white;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    padding: 0;
  }

  .hero h1 {
    color: #003f87;
    font-size: 1.3rem;
  }

  .hero p {
    color: #334e68;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .page-hero {
    border-radius: 6px;
    margin-top: 14px;
    padding: 34px 18px;
    width: calc(100% - 28px);
  }

  .hero::after {
    display: none;
  }

  .hero__image {
    aspect-ratio: 16 / 9;
    height: auto;
    inset: auto;
    object-fit: contain;
    position: relative;
  }

  .hero__content {
    background: white;
    border-bottom: 1px solid #d9e2ec;
    max-width: none;
    padding: 16px 18px 20px;
    text-shadow: none;
    width: 100%;
  }

  .carousel-dots {
    bottom: auto;
    left: 16px;
    right: auto;
    top: calc(56.25vw - 24px);
  }

  .overview-section {
    margin-top: 0;
  }

  .directory-controls {
    grid-template-columns: 1fr;
  }

  .grid.grid-3.directory-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-grid .business {
    gap: 10px;
    min-width: 0;
  }

  .directory-grid .business__content {
    min-width: 0;
    padding: 0 10px 12px;
  }

  .directory-grid .business h3 {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .directory-grid .business__category,
  .directory-grid .business__meta,
  .directory-grid .business__link {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .directory-grid .business__badge {
    font-size: 0.68rem;
    padding: 4px 7px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-location {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .facebook-page {
    grid-template-columns: 1fr;
  }

  .club-news-hub {
    grid-template-columns: 1fr;
  }

  .club-news-hub__feed,
  .club-news-sidebar {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .facebook-embed-card {
    justify-self: center;
  }

  .news-sidebar {
    position: static;
  }

  .sponsor-banner__link {
    min-height: 0;
  }

  .event-card {
    grid-template-columns: 1fr;
  }
}
