@charset "UTF-8";
  
.news-header {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}
  
.news-title {
  font-size: 36px;
  margin: 0;
}
  
.news-sub {
  font-size: 14px;
  opacity: 0.8;
}
  
.news {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 20px;
}
  
.news-c {
  border: 1px solid #fff;
  background: #ffffffbf;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.news-c:hover {
  transform: scale(1.03);
  opacity: 0.7;
}
  
.news-c img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
  
.card-body {
  padding: 14px;
}
  
.card-title {
  margin: 0 0 6px;
  font-size: 18px;
}
  
.card-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.card-text{
  text-align: center;
}
a{
  text-decoration: none;
  color: #510a4b;
}
  