/* Google Fonts */
body {
  font-family: 'Open Sans', sans-serif;
}

/* Kategori Barı */
.moletik-category-bar {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.moletik-category-scroll {
  display: flex;
  gap: 10px;
}

.moletik-cat-btn {
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  background-color: #f0f0f0;
  color: #333;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.moletik-cat-btn:hover {
  background-color: #e0e0e0;
}

.moletik-cat-btn.active {
  background-color: #588E83;
  color: #fff;
}

/* Postlar */
.moletik-post {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.moletik-post-thumbnail {
  width: 40%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.moletik-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moletik-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Kategori etiketleri */
.moletik-categories {
  margin-bottom: 8px;
}

.moletik-cat {
  font-size: 12px;
  color: #999;
  margin-right: 10px;
}

.moletik-cat a {
  text-decoration: none;
  color: #999;
}

.moletik-cat a:hover {
  text-decoration: underline;
}

/* Başlık */
/* Başlık stili - masaüstü */
#moletik-post-container .moletik-title {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 30px !important;
  letter-spacing: -1px !important;
  margin: 0 0 8px 0 !important;
}

/* Başlık bağlantı stili */
#moletik-post-container .moletik-title a {
  color: #222 !important;
  text-decoration: none !important;
}

/* Başlık hover stili */
#moletik-post-container .moletik-title a:hover {
  color: #588E83 !important;
}

/* Mobilde başlık boyutu küçültme */
@media (max-width: 768px) {
  #moletik-post-container .moletik-title {
    font-size: 21px !important;
    line-height: 28px !important;
  }
}



/* Meta bilgiler */
.moletik-meta {
  font-size: 13px;
  line-height: 18px;
  color: #777;
}

/* Reklam kutusu */
.moletik-reklam {
  background: #f8f8f8;
  border: 1px dashed #ccc;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: #999;
}

/* Load More Butonu */
#moletik-load-more {
  padding: 10px 20px;
  font-size: 15px;
  margin: 20px auto;
  display: block;
  background-color: #588E83;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#moletik-load-more:hover {
  background-color: #406e66;
}

/* Mobil */
@media (max-width: 768px) {
  .moletik-post {
    flex-direction: column;
  }

  .moletik-post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

    .moletik-post-content {
        margin-top: -15px !important;
        margin-bottom: 10px;
    }
}


