/* FORCE WHITE BACKGROUND FOR BLOG */

body,
.home-main,
.home-grid,
.blog-wrapper{
  background:#ffffff !important;
}

/* BLOG HERO */
.blog-hero{
  padding:60px 20px;
  text-align:center;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.blog-title{
  font-size:32px;
  font-weight:900;
  color:#1A3552;
}

.blog-sub{
  margin-top:8px;
  color:#64748b;
}

/* GRID */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.blog-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(2,6,23,.08);
  transition:.2s ease;
}

.blog-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(2,6,23,.15);
}

.blog-thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.blog-meta{
  padding:16px;
}

.blog-meta h3{
  font-size:16px;
  font-weight:800;
  color:#1A3552;
  margin-bottom:6px;
}

.blog-excerpt{
  font-size:13px;
  color:#64748b;
  margin-bottom:10px;
}

.blog-date{
  font-size:12px;
  color:#9ca3af;
}

/* MOBILE */
@media(max-width:992px){
  .blog-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .blog-grid{
    grid-template-columns:1fr;
  }
}