/* Blog Hero Section Styles */
/* Uses site-grid-rails.css for layout and style.css for typography/colors */

.blog-hero {
  background-color: #17968c;
  padding: 4rem 0;
  min-height: 20vh;
  display: flex;
  align-items: center;
}

.blog-hero__content {
  text-align: center;
  color: var(--ica-green-deep);
}

.blog-hero__image {
  margin-bottom: 2rem;
}

.blog-hero__image img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.blog-hero__subtitle {
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: white;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-hero {
    padding: 3rem 0;
    min-height: 20vh;
  }
  
}
