/* YEREL BASIN BANNERINI DA KAPSAR */
.page-header {
  position: relative;
  background-color: var(--primary-color);
  background-image:
    linear-gradient(135deg, rgba(20, 33, 61, 0.95) 0%, rgba(20, 33, 61, 0.8) 100%),
    repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.03) 0px, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.03) 0px, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 10px);
  padding: 80px 0;
  margin-bottom: 0;
  text-align: center;
  border-bottom: 4px solid var(--secondary-color);
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: none;
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .page-header h1 {
    font-size: 1.75rem;
  }
}
/* ===================================
   YEREL BASIN LISTING PAGE STYLES
   =================================== */

/* PAGE BANNER (Slider Style Replicated) */
.page-banner-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem; /* Navbar ile slider arası boşluk */
  margin-bottom: 2rem;
}

.page-banner {
  position: relative;
  width: 95%; /* Slider genişliği ile aynı */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  /* Aspect Ratio Trick: 1500w / 430h = ~28.66% padding-top */
  height: 0;
  padding-top: 28.66%; 
}

.page-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* RESPONSIVE BANNER */
@media (max-width: 768px) {
  .page-banner {
    width: 95%; /* Mobilde de aynı genişlik */
    border-radius: 20px; /* Slider ile aynı radius */
    margin-top: 20px; /* Slider mobil boşluğu ile aynı */
  }

  .page-banner img {
    height: 100%;
  }
}




/* BLOG SECTION */
.blog-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for a list-like feel or keep 3 */
  gap: 30px;
  max-width: 1000px; /* Limit width for better readability */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: left; /* Teksleri sola hizala */
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0; /* Hafif bir çerçeve */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* İçerikleri sola hizala */
  gap: 15px;
  min-height: auto; /* Yükseklik içeriğe göre */
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e0e0e0;
  transition: background 0.3s ease;
}

.blog-card:hover {
  transform: translateX(5px); /* Sağa doğru hafif kayma */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: #bbdefb;
}

.blog-card:hover::before {
  background: var(--secondary-color); /* Gold accent */
}

.blog-icon {
  font-size: 2rem;
  color: var(--secondary-color); /* Gold icon */
  background: var(--primary-color); /* Navy BG */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.blog-card p {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}
