.news-item {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden; /* برای جلوگیری از بیرون‌زدگی float */
}

.news-thumb img {
  float: right !important;
  width: 200px !important;
  margin: 0 0 8px 16px !important;
  border-radius: 10px !important;
}

.news-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

.news-excerpt {
  margin: 0;
  line-height: 1.5;
  color: #555;
}

.news-item::after {
  content: "";
  display: block;
  clear: both;
}

/* موبایل */
@media (max-width: 768px) {
  .news-thumb img {
    float: none;
    width: 100%;
    margin: 0 0 12px 0;
    display: block;
  }
}
