.blog-section {
  padding: 120px 20px;
  background: #fff;
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.blog-head h2 {
  font-size: 44px;
  font-weight: 800;
}

.blog-head p {
  color: #666;
}

.view-more {
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

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

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.08);
  transition: .4s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.blog-img {
  position: relative;
  height: 260px;
}

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

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

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

.meta {
  font-size: 13px;
  color: #777;
  display: flex;
  gap: 15px;
}

.blog-content h3 {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 700;
}

/* FOOTER */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-btn {
  background: #f3f4f6;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

/* RESPONSIVE */
@media(max-width:992px){
  .blog-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:576px){
  .blog-grid{grid-template-columns:1fr;}
  .blog-head{flex-direction:column;align-items:flex-start;gap:15px;}
}
