
.news-search {
  margin: 1.5rem 0 2.5rem;
  display: flex;
  gap: .75rem;
}
.news-search input {
  flex: 1;
  padding: .6rem .8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.news-search button {
  padding: .6rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: #5a3e2b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.news-search button:hover {
  background: #7a563c;
}

.news-item {
  background: #fff8f0;
  border: 1px solid #e0c9a6;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  cursor: grab;
}
.news-item h2 {
  margin-top: 0;
  color: #4a2c1a;
}

.news-meta {
  font-size: 0.85rem;
  color: #777;
  line-height: 1rem;
}

.news-excerpt {
  opacity: 0.85;
  margin-bottom: 5px;
  line-height: 1.1rem;
}
.news-excerpt mark {
  background: #ffe7a3;
}

.read-more {
  display: inline-block;
  margin-top: 0.1rem;
  color: #4a2c1a;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}
