/* ================= BLOG PAGE ================= */

/* BLOG HERO */
.blog-hero{
  background-image: url(image/1000_F_88489022_bbaCEY4zKLS4KkkESsZ5nhNatMoHsRcJ.jpg);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}
/* BLOG SECTION */
.blog-section{
  padding:80px 20px;
  background:#f8f9fa;
}

/* GRID */
.blog-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* CARD */
.blog-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;                 /* image fit fix */
  border:1px solid #eee;
  transition:.35s ease;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* IMAGE */
.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

/* CONTENT */
.blog-content{
  padding:25px;
  text-align:left;
}

.blog-content .date{
  font-size:13px;
  color:#777;
  display:block;
  margin-bottom:6px;
}

.blog-content h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

.blog-content p{
  font-size:15px;
  color:#555;
  line-height:1.6;
  margin-bottom:16px;
}

/* READ MORE */
.blog-content a{
  font-size:14px;
  font-weight:500;
  color:#1f2933;
  text-decoration:none;
  border-bottom:2px solid #1f2933;
  padding-bottom:3px;
  transition:.3s ease;
}

.blog-content a:hover{
  color:#000;
  border-color:#000;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .blog-grid{
    grid-template-columns:1fr;
  }
}

