

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.sponsor-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-card img.sponsor-logo {
  max-width: 100%;
  height: auto;
  max-height: 120px;
}
:root {
  --dark: #111111;
  --teal: #00b4d8;
  --bg: #f4f7f6;
  --gray-text: #4a4a4a;
  --line: #d8dcdb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--dark);
}

header.site-header {
  background: var(--dark);
  border-bottom: 4px solid var(--teal);
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-inner img.logo {
  height: 56px;
  width: 56px;
}

.header-text h1 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.5px;
}

.header-text p {
  color: var(--teal);
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

nav.site-nav {
  background: #1a1a1a;
}

nav.site-nav .nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}

nav.site-nav a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 14px 16px;
  display: inline-block;
  border-bottom: 3px solid transparent;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: #ffffff;
  border-bottom: 3px solid var(--teal);
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.hero {
  text-align: center;
  padding: 36px 20px 44px;
}

.hero h2 {
  font-size: 30px;
  margin: 18px 0 6px;
}

.hero .tagline {
  color: var(--teal);
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
}

.hero img.hero-logo {
  height: 130px;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 16px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 20px;
}

.card h3 {
  margin-top: 0;
  font-size: 18px;
}

.section-title {
  background: var(--dark);
  color: #ffffff;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 18px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.resource-card h4 {
  margin: 8px 0 6px;
  font-size: 15px;
}

.resource-card p {
  color: var(--gray-text);
  font-size: 13px;
  min-height: 40px;
}

.btn {
  display: inline-block;
  background: var(--teal);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 6px;
}

.btn:hover {
  opacity: 0.9;
}

.coach-card {
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  color: var(--gray-text);
}

.coach-card h4 {
  color: var(--dark);
  margin: 0 0 4px;
}

footer {
  text-align: center;
  padding: 24px;
  color: #888;
  font-size: 12px;
}

.coach-avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--teal);
}

.coach-avatar-initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--dark);
  color: #ffffff;
  font-weight: bold;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 3px solid var(--teal);
}

.coach-role {
  color: var(--teal);
  font-weight: bold;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}


.photo-ticker {
  width: 100%;
  overflow: hidden;
  background: #000000;
  border-bottom: 3px solid var(--teal);
}

.photo-ticker-track {
  display: flex;
  width: max-content;
  animation: photoTickerScroll 32s linear infinite;
}

.photo-ticker-track:hover {
  animation-play-state: paused;
}

.photo-ticker-track img {
  height: 220px;
  width: 340px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes photoTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .photo-ticker-track img {
    height: 140px;
    width: 220px;
  }
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 0 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}



.page-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--dark);
  margin: 24px 0 16px;
}


.gallery-embed {
  display: block;
  width: 100%;
  max-width: 960px;
  height: 700px;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
@media (max-width: 700px) {
  .gallery-embed {
    height: 480px;
  }
}
