.news-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1em;
  color: #eee;
}

.news-section h1 {
  text-align: center;
  font-size: 2em;
  color: #e29b4b;
  margin-bottom: .5em;
}

.news-section .intro-text {
  text-align: center;
  color: #ccc;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.news-entry {
  margin-bottom: 3em;
  padding-bottom: 2em;
    background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 2em;
    border-radius: 12px;
}

.news-entry h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 0.3em;
}

.news-date {
  font-size: 0.9em;
  color: #aaa;
  margin-bottom: 1em;
}

.news-image {
  margin-bottom: 1em;
  text-align: left;
}

.news-image img {
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.news-content {
  font-size: 1.05em;
  line-height: 1.6;
  color: #eee;
}
@media (max-width:768px) {
    .news-section .intro-text {
        padding-left: 1em;
        padding-right: 1em;
    }
    .news-content, .news-section {
       padding:0;
    }
    .news-section h1 {
        color: #fff;
    }
    .news-image img {
  max-width: 80%;
        text-align: center;
    }
}