.dwk-grid6 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* Ortak kart stilleri */
.dwk-grid6-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* İlk kartı büyük yap */
.dwk-grid6-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.dwk-grid6-big {
  position: relative;
  min-height: 600px;
  max-height: 600px; /* ekrana göre taşmasın */
}

.dwk-grid6-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Overlay */
.dwk-grid6-big .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #fff;
}
.dwk-grid6-big .meta-category {
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #fff;
}
.dwk-grid6-big .entry-title {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}
.dwk-grid6-big .entry-title a {
  color: #fff;
  text-decoration: none;
}
.dwk-grid6-big .view-post {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* Küçük kartlar */
.dwk-grid6-small {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.dwk-grid6-small img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}
.dwk-grid6-small .meta-category {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 5px;
}
.dwk-grid6-small .entry-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.dwk-grid6-small .entry-title a {
  color: #000;
  text-decoration: none;
}
.dwk-grid6-small .post-meta {
  font-size: 12px;
  color: #888;
  margin-top: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .dwk-grid6 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dwk-grid6-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .dwk-grid6-big {
    min-height: 400px;
    max-height: 500px;
  }
  .dwk-grid6-big img {
    height: 100%;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .dwk-grid6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dwk-grid6-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .dwk-grid6-big {
    min-height: 250px;
    max-height: 350px;
  }
  .dwk-grid6-small {
    padding: 8px;
  }
  .dwk-grid6-small img {
    height: 140px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  .dwk-grid6-small .entry-title {
    font-size: 13px;
    line-height: 1.3;
  }
  .dwk-grid6-small .post-meta {
    font-size: 11px;
  }
}
