.dwk-blog1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dwk-blog1-item {
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dwk-blog1-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dwk-blog1-content {
  padding: 10px;
}

.dwk-blog1-content .entry-title {
  font-size: 16px;
  margin: 5px 0;
}

.dwk-blog1-content .entry-title a {
  color: #000;
  text-decoration: none;
}

.dwk-blog1-content .post-meta {
  font-size: 12px;
  color: #777;
}

.dwk-blog1-loadmore-wrap {
  text-align: center;
  margin-top: 20px;
}

#dwk-blog1-loadmore {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

#dwk-blog1-loadmore:hover {
  background: #000;
}

@media (max-width: 992px) {
  .dwk-blog1-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dwk-blog1-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
  .dwk-blog1-thumb img {
    height: 140px; 
  }
}
