/*Ana container ve hero*/

.category-hero {
  padding: 30px 0;
  max-width: 80%;
  margin: 0 auto;
}

.category-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.category-title {
  font-size: 36px;
  font-weight: 700;
  color: #02335E; 
  margin: 0;
}

.category-search input[type="search"] {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  width: 220px;
}

.category-search button {
  padding: 10px 15px;
  border: none;
  background: #02335E;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 8px;
}

.category-breadcrumb {
  margin-top: 15px;
  font-size: 14px;
}


/* Featured post: Görsel solda, içerik sağda */
.featured-post {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0; /* Görsel ve içerik bitişik */
  background: #fff;
  border-radius: 16px;
  overflow: hidden; /* Yuvarlak köşeler için */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Görsel alanı */
.featured-post .post-thumbnail {
  flex: 0 0 50%;
}

.featured-post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Metin alanı */
.featured-post .post-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Başlık ve metin stilleri */
.featured-post .post-title {
  font-size: 28px;
  color: #02335E;
  margin-bottom: 15px;
}

.featured-post .post-excerpt {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Mobil görünüm */
@media (max-width: 1024px) {
  .featured-post {
    flex-direction: column;
  }
  .featured-post .post-thumbnail {
    flex: 0 0 auto;
    width: 100%;
  }
}


/* Yazı grid bölümü*/
.posts-grid {
  max-width: 80%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  padding: 0 20px;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  
}


.post-card:hover {
  transform: translateY(-5px);
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  
}

.post-title {
  font-size: 20px;
  font-weight: 600;
  color: #02335E;
  margin-bottom: 10px;
}

.post-excerpt {
  font-size: 15px;
  color: #666;
}

/*Responsive ayarlar*/
@media (max-width: 1024px) {

  .category-featured {
	  flex-wrap: wrap;
	}
  .featured-left, .featured-right {
    flex: 0 0 100%;
	flex-direction: column;
  }
  .featured-right {
    margin-top: 30px;
  }
  .category-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .category-title {
    font-size: 26px;
  }
  .category-search input[type="search"] {
    width: 100%;
  }
  .category-search button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
