/* Blog-specific styles */
.blog-hero {
  background: linear-gradient(135deg, var(--hydranthub-blue) 0%, var(--hydranthub-dark-blue) 100%);
  color: white;
  padding: 100px 20px 80px;
  margin-top: 64px;
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-hero-content p {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.blog-posts {
  padding: 80px 20px;
  background: var(--light-gray);
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

.blog-tag {
  display: inline-block;
  background: var(--hydranthub-blue);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-card h2 {
  margin: 15px 0;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover {
  color: var(--hydranthub-blue);
}

.blog-meta {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  color: var(--hydranthub-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--hydranthub-dark-blue);
}

.blog-cta {
  background: linear-gradient(135deg, var(--hydranthub-blue) 0%, var(--hydranthub-dark-blue) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.blog-cta h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: white;
}

.blog-cta p {
  font-size: 1.3em;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Article page styles */
.article-header {
  background: linear-gradient(135deg, var(--hydranthub-blue) 0%, var(--hydranthub-dark-blue) 100%);
  color: white;
  padding: 100px 20px 60px;
  margin-top: 64px;
  text-align: center;
}

.article-meta {
  font-size: 1em;
  opacity: 0.9;
  margin-bottom: 20px;
}

.article-title {
  font-size: 3.2em;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background: white;
}

.article-content h2 {
  color: var(--hydranthub-blue);
  font-size: 2em;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-content h3 {
  color: var(--text-primary);
  font-size: 1.5em;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.article-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.article-content ul, .article-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 12px;
  font-size: 1.05em;
}

.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.highlight-box {
  background: var(--success-light);
  border-left: 4px solid var(--success-green);
  padding: 25px;
  margin: 35px 0;
  border-radius: 8px;
}

.highlight-box p {
  margin: 0;
  color: var(--text-primary);
}

.back-to-blog {
  display: inline-block;
  color: var(--hydranthub-blue);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: var(--hydranthub-dark-blue);
}

@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 2.2em;
  }
  
  .blog-hero-content p {
    font-size: 1.1em;
  }
  
  .blog-card {
    padding: 30px 25px;
  }
  
  .blog-card h2 {
    font-size: 1.5em;
  }
  
  .article-title {
    font-size: 2.2em;
  }
  
  .article-content h2 {
    font-size: 1.6em;
  }
  
  .article-content h3 {
    font-size: 1.3em;
  }
}