/* =============================================
   VoresKalundborg – Nyheder
   Placering: /css/nyheder.css
   ============================================= */

.news-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: #2C2C2C;
  background: #EBE4D1;
  border-radius: 14px;
  padding: 12px;
  transition: background 0.15s;
}

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

.news-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(44, 44, 44, 0.1);
  flex-shrink: 0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-text {
  flex: 1;
  min-width: 0;
}

.news-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #1E2E1E;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-date {
  font-size: 12px;
  color: rgba(44, 44, 44, 0.75);
  margin-top: 5px;
}
