/* Grid */
.dw-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 50px 0;
  padding: 0 10px;
}

/* Kart */
.dw-news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.dw-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Görsel */
.dw-news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}
.dw-news-card:hover .dw-news-thumb img {
  transform: scale(1.05);
}

/* Başlık */
.dw-news-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 18px 20px;
  color: #222;
  line-height: 1.4;
  flex: 1; /* başlık alanı esnek, butonu alta iter */
}

/* Açıklama gizli */
.dw-news-card p { display: none; }

/* Alt bant buton */
.dw-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #6c4d2f;
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  transition: background .3s ease;
}
.dw-btn:hover {
  background: #543a23;
}
