.elementor-824 .elementor-element.elementor-element-8711b39{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-824 .elementor-element.elementor-element-8711b39{--content-width:1300px;}}/* Start custom CSS *//* BLOG WRAPPER */
.blog-wrapper {
  background: #f6f8fb;
  padding: 40px 0;
}

/* TITLE */
.blog-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1e2a3e;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img-wrap {
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BADGE */
.blog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #044f9b; /* NAVY FROM HEADER */
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}

/* CONTENT */
.blog-content {
  padding: 18px;
}

.blog-date {
  color: #E8511B; /* ORANGE FROM HEADER */
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e2a3e;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* BUTTON */
.blog-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #044f9b;
  border-radius: 30px;
  color: #044f9b;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.blog-btn:hover {
  background: #E8511B;
  border-color: #E8511B;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px){
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */