.news-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--heading);
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 5px solid var(--brand);
}

.news-item.important {
  border-left-color: #e74c3c;
  background: #fffaf5;
}

.news-date {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.news-title {
  font-size: 1.35rem;
  margin: 0 0 1rem 0;
  color: var(--heading);
}

.news-body {
  line-height: 1.7;
  color: #444;
}

.current-lang {
  color: #888;
  font-weight: 500;
  cursor: default;
  opacity: 0.7;
}


.lang-switch {
  white-space: nowrap;
}