.gundem-section {
  padding: 80px 20px;
  background-color: #fdf6ec;
  font-family: "Google Sans", sans-serif;
}

.gundem-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.gundem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gundem-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gundem-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.gundem-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Overlay */
.gundem-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  height: 200px; /* 🔥 SABİT YÜKSEKLİK */
}

.gundem-category {
  background-color: var(--bg-accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 8px;
}

.gundem-headline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gundem-description {
  font-size: 0.9rem;
  line-height: 1.4;
}

.gundem-date {
  font-size: 0.75rem;
  color: #dddddd;
  margin-top: 10px;
}

/* Responsive */
/* =====================
   GÜNDEM SECTION - MOBILE
===================== */
@media (max-width: 768px) {
  .gundem-section {
    padding: 50px 15px; /* Daha dar padding */
  }

  .gundem-title {
    font-size: 2rem; /* Başlık küçültüldü */
    margin-bottom: 30px;
  }

  .gundem-grid {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 20px; /* Daha dar boşluk */
  }

  .gundem-card img {
    height: 250px; /* Mobilde daha kısa */
  }

  .gundem-overlay {
    padding: 12px;
  }

  .gundem-category {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .gundem-headline {
    font-size: 1rem;
  }

  .gundem-description {
    font-size: 0.85rem;
  }

  .gundem-date {
    font-size: 0.65rem;
  }
}

/* Daha küçük ekranlar (telefon) */
@media (max-width: 480px) {
  .gundem-section {
    padding: 40px 10px;
  }

  .gundem-title {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .gundem-card img {
    height: 200px;
  }

  .gundem-category {
    font-size: 0.6rem;
  }

  .gundem-headline {
    font-size: 0.95rem;
  }

  .gundem-description {
    font-size: 0.8rem;
  }

  .gundem-date {
    font-size: 0.6rem;
  }
}
