.modern-blog-container{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.modern-blog-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:34px;
  align-items:start;
}

/* SOL */
.modern-blog-left{}

/* KART */
.modern-blog-card{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:20px;
  padding:20px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow:0 10px 28px rgba(2,8,23,.06);
  margin-bottom:22px;
  background:#fff;
  transition:.2s ease;
}

.modern-blog-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 45px rgba(2,8,23,.10);
  border-color:rgba(11,43,85,.18);
}

.modern-blog-image img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.modern-blog-placeholder{
  width:100%;
  height:200px;
  border-radius:14px;
  background:#f1f5f9;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#64748b;
  font-weight:600;
}

.modern-blog-title{
  font-size:22px;
  font-weight:800;
  margin:10px 0 8px;
  line-height:1.2;
}

.modern-blog-title a{
  text-decoration:none;
  color:#0f172a;
}

.modern-blog-title a:hover{
  color:#0b2b55;
}

.modern-blog-meta{
  font-size:13px;
  color:#64748b;
}

.modern-blog-excerpt{
  font-size:14px;
  line-height:1.7;
  color:#475569;
  margin-top:8px;
}

.modern-blog-btn{
  display:inline-block;
  margin-top:12px;
  background:#0b2b55;
  color:#fff;
  padding:9px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.modern-blog-btn:hover{
  background:#123a73;
}

.modern-blog-empty{
  padding:18px;
  border:1px dashed rgba(15,23,42,.20);
  border-radius:14px;
  color:#64748b;
  background:#fff;
}

/* SAĞ SİDEBAR */
.modern-blog-sidebar{
  position:sticky;
  top:110px; /* header yüksekliğine göre ayarlanır */
}

.mb-widget{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 28px rgba(2,8,23,.05);
  margin-bottom:18px;
}

.mb-widget-title{
  font-weight:900;
  color:#0f172a;
  margin:0 0 12px;
  font-size:14px;
}

/* Arama */
.mb-widget form.search-form{
  display:flex;
  gap:10px;
}

.mb-widget .search-field{
  flex:1;
  border:1px solid rgba(15,23,42,.12);
  border-radius:12px;
  padding:10px 12px;
  outline:none;
}

.mb-widget .search-submit{
  border:none;
  border-radius:12px;
  padding:10px 14px;
  background:#0b2b55;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.mb-widget .search-submit:hover{
  background:#123a73;
}

/* Liste */
.mb-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.mb-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px dashed rgba(15,23,42,.10);
  padding-bottom:10px;
}

.mb-list li:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.mb-list a{
  color:#0f172a;
  text-decoration:none;
  font-weight:650;
}

.mb-list a:hover{
  color:#0b2b55;
}

/* Son yazılar */
.mb-recent{
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.mb-recent span{
  color:#64748b;
  font-size:12px;
}

/* Etiketler */
.mb-tags a{
  display:inline-block;
  margin:6px 6px 0 0;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(11,43,85,.08);
  border:1px solid rgba(11,43,85,.18);
  color:#0b2b55;
  text-decoration:none;
  font-weight:800;
}

.mb-tags a:hover{
  background:rgba(11,43,85,.14);
}

/* Pagination */
.modern-pagination{
  margin-top:26px;
}

.modern-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  margin-right:8px;
  text-decoration:none;
  color:#0f172a;
  background:#fff;
  font-weight:800;
}

.modern-pagination .page-numbers.current{
  background:#0b2b55;
  color:#fff;
  border-color:#0b2b55;
}

/* Responsive */
@media(max-width:980px){
  .modern-blog-grid{
    grid-template-columns:1fr;
  }
  .modern-blog-sidebar{
    position:static;
    top:auto;
  }
}

@media(max-width:900px){
  .modern-blog-card{
    grid-template-columns:1fr;
  }
  .modern-blog-image img,
  .modern-blog-placeholder{
    height:220px;
  }
}
/* Video/Embed medya alanı */
.modern-blog-media{
  width:100%;
  height:200px;
  border-radius:14px;
  overflow:hidden;
  background:#0b1220; /* video yüklenirken hoş dursun */
}

.modern-blog-media iframe,
.modern-blog-media video,
.modern-blog-media embed,
.modern-blog-media object{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* mobilde mevcut ayarınla uyumlu */
@media(max-width:900px){
  .modern-blog-media{
    height:220px;
  }
}