/* Gündem Kartları Grid Düzeltmesi - Menünün Altındaki 4 Kart */
.gundem-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 30px;
}

.gundem-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gundem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gundem-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gundem-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
}

.gundem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gundem-card-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.gundem-card-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gundem-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gundem-card-time {
  font-size: 12px;
  color: #999;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .gundem-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .gundem-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

