/* Claude update below */
:root {
  --accent: #0352a6;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e2e2e2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

.hero {
  background: linear-gradient(160deg, #0b2a4a 0%, #0352a6 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 50px;
}

.hero h1 { margin: 0 0 10px; font-size: 40px; }

/* Claude update below (Item 3: editable hero image overlay) */
.hero.hasImage {
  position: relative;
}

.hero.hasImage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,42,74,0.82) 0%, rgba(3,82,166,0.78) 100%);
}

.hero.hasImage > * {
  position: relative;
  z-index: 1;
}
/* Claude update end */

.tagline {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 17px;
  opacity: 0.92;
}

.heroLinks { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.heroBtn {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 14px;
}

.heroBtn:hover { background: rgba(255,255,255,0.15); }

main { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }

h2 { font-size: 28px; margin: 10px 0 6px; text-align: center; }

.contactNote {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.card .imgWrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
}

.card .imgWrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

.card .body { padding: 14px 16px 18px; }

.card h3 { margin: 0 0 6px; font-size: 17px; }

.card h3 a { color: var(--text); text-decoration: none; }
.card h3 a:hover { color: var(--accent); }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.badge.upcoming { color: #1a7f37; }

.card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

.siteFooter {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px;
}

.siteFooter a { color: #999; font-size: 12px; text-decoration: none; }

@media (max-width: 500px) {
  .hero h1 { font-size: 28px; }
}
/* Claude update end */
