.featured-news {
  background: #f8f9fa;
  border-radius: 12px;
}

.news-image img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-content {
  padding: 2rem 2rem 0 0;
  text-align: right;
}

.news-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.news-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.link-desc {
  background-color: #266C57;
  border-color: #266C57;
  color: #fff;
  padding: 5px 20px;
  font-weight: 500;
}

.link-desc:hover {
  text-decoration: none;
  color: #fff;
  background-color: #256652;
  border-color: #256652;

}

.news-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem .8rem;
}

.news-item:nth-child(2n) {
  background: #f5f5f5;
}

.news-item:hover {
  background: #f5f5f5;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-left: 20px;
}

.news-item-title {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 991px) {
  .featured-news {
    padding: 2rem;
  }

  .news-content {
    padding: 0;
    margin-top: 1.5rem;
  }

  .news-title {
    font-size: 1.5rem;
  }
}

/* 移动端适配 - 添加到 news.css 文件末尾 */

@media (max-width: 991px) {
  .featured-news {
    padding: 1.5rem;
  }

  .news-content {
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
  }

  .news-title {
    font-size: 1.3rem;
  }

  .news-desc {
    font-size: 1rem;
  }

  .link-desc {
    display: inline-block;
    margin-bottom: 1rem;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .news-item:nth-child(2n) {
    background: #fff;
  }

  .news-date {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }

  .news-item-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .featured-news {
    padding: 1rem;
  }

  .news-title {
    font-size: 1.2rem;
  }

  .news-desc {
    font-size: 0.95rem;
  }

  .news-item-title {
    font-size: 0.95rem;
  }
}