/* Governance Page Specific Styles */


.toolkit-button-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.blog-post-container {
  grid-column: 2 / span 8;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
  font-family: var(--font-merula);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
}

.hero-text {
  margin-top: 32px;
}



/* Hero Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-default);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #fff;
}

.stat-label {
  font-family: var(--font-default);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
  }

  .hero-text {
    margin-top: 12px;
  }

  .toolkit-button-container {
    padding-top: 1rem;
  }
  
  .outline-btn {
    padding: 0.75rem 1.5rem;
    font-size: 12px;
  }
  .blog-post-container {
    grid-column: 1 / span 10;
  }
}

@media (max-width: 480px) {
  .hero-title-col {
    grid-column: 1 / span 10;
  }
  
  .hero-button-col {
    grid-column: 1 / span 10;
    grid-row: 2;
  }
  
  .hero-section {
    padding-top: 1rem;
  }
  
  .hero-section h1 {
    font-size: clamp(20px, 8vw, 32px);
    line-height: 1.1;
  }

  .hero-text {
    margin-top: 12px;
    grid-column: 1 / span 10;
  }
  
  .toolkit-button-container {
    padding-top: 1rem;
    justify-content: flex-start;
  }
  
  .outline-btn {
    padding: 0.5rem 1rem;
    font-size: 11px;
  }
  
  /* Blog posts full width on mobile */
  .blog-post-container {
    grid-column: 1 / span 10;
  }
}
