.news-image-wrap {
  height: 100px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
h2 {
  margin-bottom: 1em;
  margin-top: 0;
  color: #111;
}

/* Simple, mobile-friendly news page styles */
.news-section {
  background: #fff;
  margin-bottom: 1.5em;
  padding: .1em;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.news-title {
  font-size: 1.2em;
  margin-bottom: 0.3em;
  color: #222;
}
.news-meta {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 0.5em;
}
.news-description {
  font-size: 1em;
  margin-bottom: 0.7em;
  color: #333;
}
.news-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 0.5em;
}
.news-image {
  max-width: 140px;
  height: auto !important;
  border-radius: 4px;
  display: block;
  object-fit: contain;
}
.no-news {
  text-align: center;
  color: #999;
  margin-top: 2em;
}

@media (max-width: 600px) {
  .news-section {
    padding: 0.7em;
  }
  .news-title {
    font-size: 1em;
  }
  .news-image-wrap {
    width: 100px;
    height: 70px;
  }
}
