/* Newsroom — editorial paper */
.eg-page.eg-news {
  font-family: "Inter", system-ui, sans-serif;
  background: #f8f5ef;
  color: #1c1917;
}

.news-mast {
  max-width: 720px;
  margin-bottom: 40px;
}

.news-mast h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.1rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 12px;
  color: #0c0a09;
}

.news-mast p {
  margin: 0;
  color: #57534e;
  font-size: 1.02rem;
  line-height: 1.65;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 780px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card .body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b45309;
  font-weight: 600;
}

.news-card h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  margin: 8px 0 10px;
  color: #0c0a09;
}

.news-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.55;
  flex: 1;
}

.news-card a {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b45309;
  text-decoration: none;
}

.news-card a:hover {
  text-decoration: underline;
}
