/* Genel kutu */
.customnews-wrapper {
  background: #f7f7f7;
  padding: 12px;
  border-radius: 8px;
}

/* Arama formu: aynı satırda (desktop). Mobilde stack olacak */
.customnews-filters-form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}

.customnews-filters-form input[type="text"] {
  flex: 1 1 auto;
  min-width: 160px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Tarih inputları daha dar */
.customnews-filters-form input[type="date"] {
  width: 120px;   /* sadece gg/aa/yyyy sığacak kadar */
  padding: 7px 8px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
}

/* Ara butonu */
.customnews-filters-form .btn-search {
  background: #25aab9;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.customnews-filters-form .btn-search:hover {
  background: #1d8995;
}

/* Grid: 3 sütun desktop, 2 tablet, 1 mobil */
.customnews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .customnews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customnews-filters-form input[type="date"] {
    flex: 0 0 120px;
  }
}

@media (max-width: 600px) {
  .customnews-grid {
    grid-template-columns: 1fr;
  }
  .customnews-filters-form {
    flex-direction: column;
    align-items: stretch;
  }
  .customnews-filters-form input[type="date"],
  .customnews-filters-form input[type="text"] {
    width: 100%;
  }
}

/* Kart tasarımı */
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: transform 0.18s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.news-info {
  padding: 10px;
}

.news-title {
  font-size: 14px;   /* minimal başlık boyutu */
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
}

.news-title a {
  color: #222;
  text-decoration: none;
}

.news-title a:hover {
  color: #25aab9;
}

.news-date {
  color: #777;
  font-size: 13px;
  margin: 0;
}

/* Sayfalama stil */
.haber-pagination {
  text-align: center;
  margin-top: 16px;
}

.haber-pagination ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 6px;
}

.haber-pagination a,
.haber-pagination span {
  display: block;
  padding: 7px 10px;
  background: #f0f0f0;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.haber-pagination .active span,
.haber-pagination a:hover {
  background: #25aab9;
  color: #fff;
}
