.blog-section {
  padding: 60px 0;
  background: #f9fbff;
  text-align: center;
}

.blog-section h2 {
  font-size: 30px;
  font-weight: 600;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

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

/* IMAGE */
.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CATEGORY TAG */
.blog-image .badge,
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #eaf3ff;
  color: #1a73e8;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
}

/* CONTENT */
.blog-content {
  padding: 18px;
}

.blog-content h5,
.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p,
.blog-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

/* BUTTON */
.read-btn,
.blog-card a {
  text-decoration: none;
  font-weight: 500;
  color: #1a73e8;
}

.view-all {
  margin-top: 40px;
}