/* ZoemDoef Custom Styles - Hitchhiker's Guide Theme */

/* Hero section styling */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #311b92 0%, #4527a0 50%, #512da8 100%);
  color: white;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.hero h3 {
  font-weight: 300;
  opacity: 0.9;
  color: white;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.hero strong {
  color: #ffeb3b;
  font-size: 1.5rem;
}

.hero em {
  color: rgba(255, 255, 255, 0.7);
}

/* Intro section */
.intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--md-typeset-color);
  line-height: 1.8;
}

/* Grid cards styling (fallback for non-Insiders) */
.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.grid.cards > ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grid.cards > ul > li {
  background: var(--md-code-bg-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid.cards > ul > li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.grid.cards > ul > li p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.grid.cards > ul > li hr {
  border: none;
  border-top: 1px solid var(--md-default-fg-color--lightest);
  margin: 1rem 0;
}

/* Icon sizing in grid cards */
.grid.cards .lg {
  font-size: 2rem;
}

.grid.cards .middle {
  vertical-align: middle;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--md-default-fg-color--lightest);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-cta a {
  color: var(--md-accent-fg-color);
}

/* Section landing pages */
.section-hero {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.section-hero h1 {
  font-size: 2.5rem;
}

/* Coming soon badge */
.coming-soon {
  display: inline-block;
  background: var(--md-accent-fg-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Article list styling */
.article-list {
  margin: 2rem 0;
}

.article-list .article-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.article-list .article-item:last-child {
  border-bottom: none;
}

.article-list .article-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.article-list .article-meta {
  font-size: 0.875rem;
  opacity: 0.7;
}
