
.news-footer{
    padding-bottom:60px;
}
        
.news-body{
    padding: 50px;
}
        
/*   */
  
  .side-news-section-holder{
    -webkit-align-items: normal;
    -ms-flex-align: normal;
    align-items: normal;
      
  }
      
.news-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  padding: 24px 28px;
  transition: box-shadow 0.25s ease;
}

.news-card:hover {
  box-shadow: 0 5px 16px rgba(0,0,0,0.12);
}

.news-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.news-header h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  color: #3f51b5;
}

.news-header .material-icons {
  color: #3f51b5;
  font-size: 24px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: #fafafa;
}

.news-link {
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

.news-link:hover {
  color: #3f51b5;
}

.news-date {
  font-size: 0.85rem;
  color: #757575;
  margin-left: 12px;
  white-space: nowrap;
}


      /* =======================
   NEWS SECTION (Scoped)
======================= */

.news-section {
  /*margin: 40px auto;*/
  /*max-width: 850px;*/
  margin-top:8px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== Featured News ===== */

.featured-news-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 28px;
  transition: box-shadow 0.3s ease;
}

.featured-news-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.featured-news-header {
  display: flex;
  align-items: center;
  /*gap: 10px;*/
  /*border-bottom: 2px solid #e0e0e0;*/
  padding-bottom: 10px;
  /*margin-bottom: 18px;*/
}

.featured-news-header h2 {
  font-size: 1.4rem;
  color: #3f51b5;
  margin: 0;
  font-weight: 500;
}

.featured-news-header .material-icons {
  color: #3f51b5;
}

.featured-news-content {
  display: flex;
  flex-direction: column;
  /*gap: 8px;*/
  border-top: 2px solid #f0f0f0;
  margin-bottom:16px;
  
}

.featured-news-link {
    margin-top: 8px;
  text-decoration: none;
  color: inherit;
}

.featured-news-title {
  font-size: 1.3rem;
  color: #212121;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.featured-news-link:hover .featured-news-title {
  color: #3f51b5;
}

.featured-news-summary {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 4px 0 8px;
}

.featured-news-date {
  font-size: 0.85rem;
  color: #757575;
}

/* ===== Other News ===== */

.other-news-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  padding: 22px 28px;
}

.other-news-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}

.other-news-header h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3f51b5;
  margin: 0;
}

.other-news-header .material-icons {
  color: #3f51b5;
}

.other-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.other-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.other-news-item:last-child {
  border-bottom: none;
}

.other-news-item:hover {
  background: #fafafa;
}

.other-news-link {
  text-decoration: none;
  color: #212121;
  font-weight: 500;
  flex: 1;
  line-height: 1.4;
}

.other-news-link:hover {
  color: #3f51b5;
}

.other-news-date {
  font-size: 0.8rem;
  color: #757575;
  white-space: nowrap;
}