#forexpulse-blog-section {
  background-color: #f4fcfb;
  padding: 70px 20px;
  text-align: center;
}

.forexpulse-blog-heading {
  font-size: 2.5rem;
  color: #003c3c;
  margin-bottom: 10px;
}

.forexpulse-blog-subheading {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.forexpulse-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.forexpulse-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forexpulse-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.forexpulse-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.forexpulse-blog-content {
  padding: 20px;
  text-align: left;
}

.forexpulse-blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #00c194;
}

.forexpulse-blog-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.forexpulse-blog-read {
  color: #003c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.forexpulse-blog-read:hover {
  color: #00c194;
}
