/* Kategori barı */
.moletik-category-bar {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.moletik-category-scroll {
  display: flex;
  gap: 10px;
}

.moletik-cat-btn {
  padding: 8px 14px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  color: #333;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.moletik-cat-btn:hover {
  background-color: #e1e1e1;
  color: #000;
}

.moletik-cat-btn.active {
  background-color: #588e83; /* patina */
  color: #fff;
  border-color: #588e83;
}


/* Post kutusu */
.moletik-post {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

/* Görsel */
.moletik-post-thumbnail img {
  width: auto;
  height: 200px;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* İçerik */
.moletik-post-content {
  flex: 1;
  font-family: 'Open Sans', sans-serif;
}

/* Kategori isimleri */
.moletik-categories a {
  font-size: 12px;
  margin-right: 8px;
  text-decoration: none;
  color: seagreen;
  font-weight: 600;
}

/* Başlık */
.moletik-title a {
  font-size: 23px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 6px;
}

/* Meta bilgiler */
.moletik-meta {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  line-height: 1.5;
}

/* Reklam kutusu */
.moletik-reklam {
  background: #f8f8f8;
  border: 1px dashed #ccc;
  padding: 20px;
  margin: 30px 0; /* ← üst ve alt boşluk */
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: #999;
}


/* Responsive */
@media (max-width: 768px) {
  .moletik-post {
    flex-direction: column;
  }

  .moletik-post-thumbnail img {
    width: 100%;
  }
}
