<style>
.news-box {
  margin-top: 15px;
}

.news-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #000;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  transition: 0.2s;
}

.news-item:hover {
  background: #f5f5f5;
}

/* รูป */
.news-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

/* เนื้อหา */
.news-content {
  flex: 1;
}

.news-title {
  font-size: 14px;
  margin-bottom: 5px;
}

.news-meta {
  font-size: 13px;
  color: #777;
}

/* .. Mobile */
@media (max-width: 600px) {
  .news-item {
    flex-direction: column;
  }

  .news-item img {
    width: 100%;
    height: auto;
  }
}
</style>
