.dwk-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.dwk-grid1 article {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.dwk-grid1 article:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dwk-grid1 .post-thumbnail {
  position: relative !important;
  display: block !important;
  width: 100% !important;
}
.dwk-grid1 .post-thumbnail img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}
.dwk-grid1 .post-thumbnail > a {
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  z-index: auto !important;
  background: none !important;
}
.dwk-grid1 .post-thumbnail .post-more {
  display: none !important;
}

.dwk-grid1 .meta-category {
  margin: 10px 15px 0;
  font-size: 10px;
  text-transform: uppercase;
  color: #666;
}

.dwk-grid1 .entry-title {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 15px;
}
.dwk-grid1 .entry-title a {
  color: #23282d !important;
  text-decoration: none;
}
.dwk-grid1 .entry-title a:hover {
  color: #555 !important;
}

.dwk-grid1 .post-meta {
  font-size: 12px;
  color: #999;
  margin: 0 15px 15px !important;
  display: flex;
  flex-direction: row;    /* 👉 YAN YANA */
  align-items: center;
  gap: 8px;               /* aralarındaki boşluk */
  padding: 0;
}

.dwk-grid1 .post-meta li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block;  /* satır içi yan yana */
}


.dwk-grid1 .post-meta a {
  color: #666;
  text-decoration: none;
}
.dwk-grid1 .post-meta a:hover {
  color: #555;
}

@media (max-width: 1024px) {
  .dwk-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dwk-grid1 {
    grid-template-columns: repeat(2, 1fr); 
  }
  .dwk-grid1 .post-thumbnail img {
    height: 150px !important; 
  }
}
