/* HABERLER SAYFASI */
.news {
  padding: 60px 0 80px;
}

/* Başlık – Playfair Display */
.news-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* Açıklama – Poppins */
.news-intro {
  font-size: 15px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Liste */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Kart */
.news-card {
  background-color: #f7eadc;
  border-radius: 16px;
  padding: 18px 20px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* Üst satır */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #e2c29b;
  color: #6f4a3c;
  font-size: 11px;
}

/* Tarih */
.news-date {
  opacity: 0.75;
}

/* Kart başlığı – Playfair Display */
.news-card-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

/* Kart metni – Poppins */
.news-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Link */
.news-link {
  display: inline-block;
  font-size: 13px;
  color: #6f4a3c;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(111, 74, 60, 0.4);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.news-link:hover {
  color: #5a3a2f;
  border-color: #5a3a2f;
  transform: translateY(-1px);
}

/* Hover kart efekti */
.news-card:hover {
  transform: translateY(-4px);
  background-color: #f1ddc3;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* MOBİL */
@media (max-width: 768px) {
  .news {
    padding-top: 40px;
  }

  .news-card {
    padding: 16px 14px 18px;
  }
}
