.news-page-section {
  background: #0d325b;
  min-height: 100vh;
  padding: 60px 0;
}
.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.news-title {
  font-size: 2.3rem;
  color: #ffe000;
  margin-bottom: 45px;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 1px 3px 12px rgba(0,0,0,0.1);
}
.news-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.news-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  padding: 30px 28px 22px 28px;
  max-width: 300px;
  min-width: 260px;
  flex: 1 1 300px;
  text-align: left;
  transition: transform 0.28s, box-shadow 0.28s;
  border-left: 6px solid #ffe000;
  margin-bottom: 15px;
}
.news-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 8px 28px rgba(13,50,91,0.14);
}
.news-date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 10px;
}
.news-date i {
  color: #d72638;
  margin-right: 7px;
}
.news-headline {
  font-size: 1.28rem;
  color: #0d325b;
  margin-bottom: 12px;
  font-weight: 700;
}
.news-text {
  font-size: 1.06rem;
  color: #273259;
  margin-bottom: 18px;
}
.news-text b {
  font-weight: 700;
  color: #0d325b;
}
.news-more {
  color: #ffe000;
  background: #0d325b;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.22s, color 0.22s;
  border: 2px solid #ffe000;
}
.news-more:hover {
  background: #ffe000;
  color: #0d325b;
  border-color: #0d325b;
}

/* Haber Detay Stili */
.news-detail-section {
  background: #f7f9fc;
  min-height: 100vh;
  padding: 60px 0 70px 0;
}
.news-detail-container {
  background: #fff;
  border-radius: 18px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 6px 38px rgba(13,50,91,0.13);
  padding: 36px 30px 32px 32px;
  position: relative;
}
.back-to-news {
  display: inline-block;
  color: #0d325b;
  background: #ffe000;
  font-weight: 600;
  border-radius: 6px;
  padding: 7px 14px;
  margin-bottom: 18px;
  text-decoration: none;
  font-size: 1.04rem;
  transition: background 0.22s, color 0.22s;
}
.back-to-news i {
  margin-right: 5px;
}
.back-to-news.bottom-link {
  margin-top: 24px;
  background: #e8e8e8;
  color: #0d325b;
  border: 1px solid #0d325b;
}
.news-detail-date {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}
.news-detail-date i {
  color: #d72638;
  margin-right: 8px;
}
.news-detail-title {
  font-size: 2rem;
  color: #0d325b;
  margin-bottom: 22px;
  font-weight: 800;
}
.news-detail-text {
  color: #273259;
  font-size: 1.16rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.news-detail-text b {
  color: #0d325b;
}

/* Responsive */
@media (max-width: 900px) {
  .news-cards { flex-direction: column; align-items: center; gap: 24px; }
  .news-card { 
    max-width: 95vw; 
    min-width: 0; 
    padding: 20px 10px 14px 16px;
    background-color: white !important;  /* Buraya da ekle! */
  }
  .news-detail-container { padding: 20px 5vw 20px 5vw; }
}
