/* SON EKLENENLER SAYFASI */
.latest {
  padding: 60px 0 80px;
}

/* Başlık – Playfair Display */
.latest-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* Açıklama – Poppins */
.latest-intro {
  font-size: 15px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Grid */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Kart */
.latest-card {
  background-color: #f7eadc;
  border-radius: 16px;
  padding: 16px 16px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.latest-card:hover {
  transform: translateY(-4px);
  background-color: #f1ddc3;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

/* Görsel */
.latest-img {
  width: 100%;
  height: 320px;       
  object-fit: cover;   
  border-radius: 14px;
}

/* Kart başlığı – Playfair Display */
.latest-card-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* Kart metni – Poppins */
.latest-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

/* Etiket */
.latest-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  color: #6f4a3c;
  background-color: #e2c29b;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
}

/* MOBİL */
@media (max-width: 768px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .latest-img {
    max-height: 260px;
    object-fit: cover;
  }
}
