/* CNW Trending Posts - extracted from inline <style>
   Notlar:
   - Gereksiz tekrar eden media query'ler kaldırıldı (height aynıydı).
   - Stil sadece .trending-part kapsamına alınarak diğer blokları etkilemesi engellendi.
*/

/* GENEL KAPSAYICI */
.trending-part .mag-post-single{
  position:relative;
  display:flex;
  flex-direction:column;
  margin-bottom:0;
  height:420px;
  background:#fff;
  border-radius:0;
  overflow:hidden;
  box-shadow:0 2px 5px rgba(0,0,0,.1);
}

/* RESİM ALANI */
.trending-part .mag-post-image{
  position:relative;
  width:100%;
  height:200px;
  overflow:hidden;
  flex-shrink:0;
}

.trending-part .mag-post-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

/* İÇERİK ALANI (BAŞLIK + HABER İÇERİĞİ) */
.trending-part .mag-post-content{
  padding:15px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
  height:calc(100% - 200px);
}

/* BAŞLIK (3 satır + ...) */
.trending-part .mag-post-title{
  margin:0 0 4px;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  min-height:0;
}

.trending-part .mag-post-title a{
  color:#000;
  text-decoration:none;
}

.trending-part .mag-post-title a:hover{
  text-decoration:underline;
  color:#f43e3d;
}

/* HABER İÇERİĞİ */
.trending-part .news-excerpt{
  flex-grow:1;
  margin-top:0;
  background:transparent;
  border:none;
  color:#333;
  text-align:left;
  font-size:13px;
  line-height:1.5;
  padding:0;
  overflow:hidden;
  word-break:break-word;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:6;
  text-overflow:ellipsis;
  max-height:calc(1.5em * 6);
}

/* FLASH LABEL */
.trending-part .flash-news-label{
  position:absolute;
  top:15px;
  left:10px;
  background-color:#f43e3d;
  color:#fff;
  padding:4px 10px;
  font-size:10px;
  font-weight:700;
  border-radius:3px;
  text-transform:uppercase;
  z-index:3;
  width:100px;
  overflow:hidden;
  white-space:nowrap;
}

.trending-part .flash-news-label::after{
  content:"|";
  opacity:0;
  animation:cnw-trend-blink .7s infinite;
}

@keyframes cnw-trend-blink{
  0%,100%{opacity:0}
  50%{opacity:1}
}

/* Image overlay + meta */
.trending-part .image-meta-overlay{
  position:absolute;
  left:0;
  bottom:0;
  padding:15px;
  background:linear-gradient(transparent, rgba(0,0,0,.8));
  color:#fff;
  width:100%;
  text-align:left;
  z-index:2;
}

.trending-part .mag-post-meta{
  color:rgba(255,255,255,.9);
  font-size:11px;
  display:flex;
  align-items:center;
  margin-top:5px;
}

.trending-part .mag-post-meta i{
  margin-right:5px;
  font-size:12px;
}

.trending-part .mag-post-meta a{
  color:inherit;
  text-decoration:none;
}