/* HERO Bölümü */
.haber-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.haber-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}
.haber-hero .hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.haber-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.haber-hero p {
  font-size: 16px;
}
.kategori {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 15px;
  color: #fff;
}
.etiket-duyuru { background: #230b68; }
.etiket-haber { background: #2980b9; }
.etiket-faaliyet { background: #27ae60; }

/* Ana Container */
.haber-detay-container {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 30px;
}
.haber-detay-icerik {
  flex: 2;
}
.haber-detay-icerik p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Galeri Alanı */
.haber-galeri {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.haber-galeri img {
  width: 32%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.haber-galeri img:hover {
  transform: scale(1.05);
}

/* Eğer tek fotoğraf varsa */
.haber-galeri img:only-child {
  width: 100%;
  max-width: 400px; 
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mobil */
@media (max-width: 768px) {
  .haber-galeri {
    flex-direction: column;
  }
  .haber-galeri img {
    width: 100%;
    height: auto;
  }
}
/* Sidebar */
.haber-sidebar {
  width: 350px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.haber-sidebar h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #230b68;
}

.sidebar-haber {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: none; /* Alt çizgi kalksın */
}

.sidebar-haber img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.sidebar-haber p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Hover efekti */
.sidebar-haber:hover img {
  transform: scale(1.05);
}

.sidebar-haber:hover p {
  color: #230b68;
}


/* Responsive */
@media (max-width: 992px) {
  .haber-detay-container {
    flex-direction: column;
  }
  .haber-sidebar {
    margin-top: 20px;
  }
}

/* Responsive Güncellemeler */

@media (max-width: 1200px) {
  .haber-detay-container {
    padding: 0 15px;
    gap: 20px;
  }
  .haber-sidebar {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .haber-detay-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }
  .haber-detay-icerik {
    flex: none;
    width: 100%;
  }
  .haber-sidebar {
    width: 100%;
    padding: 15px;
  }
  .haber-sidebar h3 {
    font-size: 20px;
  }
  .haber-galeri {
    flex-direction: column;
  }
  .haber-galeri img {
    width: 100%;
    height: auto;
  }
  .haber-hero h1 {
    font-size: 24px;
  }
  .haber-hero p {
    font-size: 14px;
  }
  .kategori {
    font-size: 11px;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .haber-hero h1 {
    font-size: 20px;
  }
  .haber-hero p {
    font-size: 12px;
  }
  .sidebar-haber p {
    font-size: 14px;
  }
  .sidebar-haber img {
    height: 140px;
  }
}
