/* Hero styles extracted from styles.css */
.hero {
  display: grid;
  place-items: center;
  margin: 5rem 0 0.5rem 0;
  padding: 3rem 0 0.5rem 0;
  text-align: center;
}

.hero-inner {
  display: grid;
  gap: 14px;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  /* Match navbar button gradient */
  background: linear-gradient(180deg, #1e2228, #0b0d10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 400;
  letter-spacing: 0.3px;
  width: max-content;
  margin: 0 auto 2rem auto;
}

.hero-title {
  font-size: 4rem;
  margin: 0;
  font-weight: 700;
  width: 65%;
  margin: 0 auto;
  line-height: 60px;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 400;
  width: 65%;
  margin: 0 auto;
  line-height: 30px;

}
