.blog-wrapper {
  background: #fff7eb;
  padding: 60px 20px;
  width:100%;
	
}
span.author-avatar img {
    border-radius: 50%;
}
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
flex-direction:row
}
.blog-grid1 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
flex-direction:row
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-card .blog-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}
.blog-content {
  padding: 20px;
  flex-grow: 1;
}
.blog-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  font-size: 14px;
  color: #f78c2c;
}
.blog-footer a {
  text-decoration: none;
  color: #f78c2c;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card .share-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
    .blog-grid {
      display: flex;
flex-direction:column;

  }
}
.custom-pagination {
  text-align: center;
  margin: 40px 0;
  font-family: inherit;
}

.custom-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.custom-pagination .page-numbers:hover {
  background-color: #000000;
  border-color: #999;
  color: #fff;
}

.custom-pagination .current {
  background-color: #ff7f00;
  color: white;
  border-color: #ff7f00;
  font-weight: bold;
}
