.blog-listing-section {
  padding-bottom: 110px;
}

/* ---- Grid kapsayıcı: main.css'i tamamen ez ---- */
.blog-grid.tj_blog_grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  flex-wrap: unset;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

@media (max-width: 991px) {
  .blog-grid.tj_blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .blog-grid.tj_blog_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---- Kart: main.css margin/padding ezme ---- */
.blog-grid .tj_blog_item_standard {
  width: 100% !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tj-color-theme-bg-2, #f7f5f2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-grid .tj_blog_item_standard:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* ---- Görsel: tam genişlik, sabit oran ---- */
.blog-grid .tj_blog_item_standard .blog_image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  background: var(--at-neutral-900, #111);
}

.blog-grid .tj_blog_item_standard .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-grid .tj_blog_item_standard:hover .blog_image img {
  transform: scale(1.05);
}

/* ---- İçerik: border kaldır, padding düzenle ---- */
.blog-grid .tj_blog_item_standard .blog_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px !important;
  border: none !important;
  border-top-width: 0 !important;
background: #fcf8f0;
}

/* ---- Meta ---- */
.blog-grid .tj_blog_item_standard .blog_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-grid .tj_blog_item_standard .blog_meta_item.date span {
  font-size: 12px;
  color: var(--at-neutral-700, #888);
  font-weight: 500;
}

.blog-grid .tj_blog_item_standard .blog_content .category {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 50px;
  background: rgba(0,0,0,0.07);
  color: var(--tj-color-heading-primary, #0a0a0a) !important;
  border-color: transparent !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-grid .tj_blog_item_standard .blog_content .category:hover {
  background: var(--tj-color-heading-primary, #0a0a0a);
  color: #fff !important;
}

/* ---- Başlık ---- */
.blog-grid .tj_blog_item_standard .blog_title {
  font-size: clamp(16px, 1.6vw, 20px) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0 0 8px !important;
}

/* ---- Açıklama ---- */
.blog-grid .tj_blog_item_standard .blog_desc {
  flex: 1;
  margin-top: 0 !important;
  font-size: 14px !important;
  line-height: 1.65;
  color: var(--at-neutral-700, #666);
}

.blog-grid .tj_blog_item_standard .blog_desc p {
  margin: 0;
}

/* ---- Buton ---- */
.blog-grid .tj_blog_item_standard .blog_btn {
  margin-top: 20px;
  justify-content: flex-start;
}

/* ---- Filtre header ---- */
.blog-filter-wrap.tj_blog_grid_header {
  margin-bottom: 40px;
  align-items: center !important;
}

/* ---- Boş mesaj ---- */
.blog-empty {
  margin: 36px 0 0;
  text-align: center;
  font-weight: 600;
  color: var(--at-neutral-700, #777);
}

/* ---- Animasyon ---- */
.blog-item {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-hidden {
  display: none !important;
}

.blog-fade-out {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.blog-fade-in {
  animation: blogFadeIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes blogFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575px) {
  .blog-listing-section {
    padding-bottom: 70px;
  }
  .blog-filter-wrap.tj_blog_grid_header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 28px;
  }
}
