  #latest-article{
        width: 100%;
        float: left;
    }
    .latest-blogs {
  padding: 80px 0;
  background: #ffffff;
}

.latest-container {
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  line-height: 1.4;
}

.blog-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
margin-bottom: 18px;
}



.blog-date {
  font-size: 13px;
  color: #777;
}

.blog-btn {
  background: #f5a25d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-btn:hover {
  background: #e88b3a;
}


@media only screen and (min-width: 701px) and (max-width: 1001px) {
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.blog-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
    text-align: start;
    line-height: 1.4;
}
.blog-btn {
    background: #f5a25d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

}

@media only screen and (min-width: 301px) and (max-width: 700px) {
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.blog-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
    text-align: start;
    line-height: 1.4;
  }
  .blog-btn {
    background: #f5a25d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}
}