body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8fcff;
  color: #222;
}
.news-hero {
  background-size: cover;
  background-position: center;
  padding: 60px 0 40px 0;
  color: #fff;
  text-align: center;
}
.news-hero-content {
  background: rgba(24,24,24,0.55);
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 16px;
}
.news-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.news-main {
  background: #fff;
}
.news-featured {
  flex: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-bottom: 2rem;
}
.news-featured img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-featured-content {
  padding: 1.5rem;
}
.news-featured-content h2 {
  margin: 0 0 1rem 0;
}
.news-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.news-card {
  background: #f8fcff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.news-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.news-card h3 {
  margin: 1rem 1rem 0.5rem 1rem;
  font-size: 1.1rem;
}
.news-card p {
  margin: 0 1rem 0.5rem 1rem;
  color: #444;
}
.news-date {
  margin: 0 1rem;
  font-size: 0.9rem;
  color: #8b0000;
}
.news-sidebar {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 1.5rem;
  min-width: 220px;
  max-width: 260px;
  margin-left: 1rem;
  height: fit-content;
}
.news-sidebar h4 {
  margin-top: 0;
}
.news-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.news-sidebar li {
  margin-bottom: 0.7rem;
}
.news-sidebar a {
  color: #8b0000;
  text-decoration: none;
}
@media (max-width: 900px) {
  .news-container {
    flex-direction: column;
  }
  .news-sidebar {
    margin-left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}