/* Blog Grid Styles */
.blog-main {
  background-color: #f7f7f7;
  min-height: 600px;
}

.blog-grid { 
  margin-top: 30px; 
}

.blog-card { 
  display: block; 
  background: #fff; 
  border-radius: 10px; 
  overflow: hidden; 
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
  color: inherit; 
  text-decoration: none; 
  transition: all 0.3s; 
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.blog-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
  text-decoration: none; 
  color: inherit;
  border-color: #a4c639;
}

.blog-thumb img { 
  width: 100%; 
  height: 220px; 
  object-fit: cover; 
  display: block; 
}

.blog-body { 
  padding: 20px; 
}

.blog-body h3 { 
  margin: 0 0 12px; 
  font-size: 22px; 
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.blog-body p { 
  margin: 0 0 15px; 
  color: #666; 
  font-size: 15px;
  line-height: 1.5;
}

.blog-body .meta { 
  font-size: 13px; 
  color: #999; 
  display: block;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

/* Article Styles */
.article-main {
  background-color: #fff;
  padding: 60px 0;
  min-height: 600px;
}

.article-content {
  max-width: 840px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 30px;
}

.article-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px;
  line-height: 1.3;
}

.article-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 12px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

.article-cta {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.article-cta .filled-button {
  background-color: #a4c639;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.article-cta .filled-button:hover {
  background-color: #92b32f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.back-to-blog {
  display: inline-block;
  margin-bottom: 20px;
  color: #a4c639;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

.back-to-blog:hover {
  color: #92b32f;
  text-decoration: none;
  transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-body h3 {
    font-size: 20px;
  }
  
  .article-header h1 {
    font-size: 28px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
}