/* ============================================
   杞挱鍥句笅鏂 鍗＄墖寮忓睍绀烘牱寮
   鑳屾櫙鑹诧細#3c4854锛堟繁鐏拌摑鑹诧級
   甯冨眬锛? 涓崱鐗囧苟鎺掑睍绀
   ============================================ */

/* --- 鏁翠綋瀹瑰櫒 --- */
.news-cards-banner {
    background: #3c4854;
    color: #fff;
    margin: 10px 0 10px 0;
    padding: 24px 0;
    position: relative;
    z-index: 10;
  }
  
  /* 鏍囬鏍 */
  .news-cards-header {
    display: flex;
    background: rgba(0, 0, 0, 0.15);
    padding: 0 24px;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .news-cards-header .news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* 鍐呭鍖哄煙 */
  .news-cards-content {
    display: flex;
    gap: 20px;
    padding: 0 24px;
  }
  
  /* --- 鍗＄墖鏍峰紡 --- */
  .news-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .news-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* 涓嶅悓鍗＄墖棰滆壊 */
  .news-card-company {
    border-top: 4px solid #007BC8;
  }
  
  .news-card-company:hover {
    background: rgba(0, 123, 200, 0.15);;
    /* background: rgba(76, 175, 80, 0.15); */
  }
  
  .news-card-industry {
    border-top: 4px solid #70B74A;
  }
  
  .news-card-industry:hover {
    background: rgba(111, 186, 68, 0.15);
  }
  
  .news-card-public {
    border-top: 4px solid #E83820;
  }
  
  .news-card-public:hover {
    background: rgba(232, 56, 32, 0.15);
  }
  
  /* 鍗＄墖鍥炬爣 */
  .news-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  /* 鍗＄墖鏍囬 */
  .news-card-body .news-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  }
  
  /* 鍒楄〃鏍峰紡 */
  .news-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .news-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .news-card-item:last-child {
    margin-bottom: 0;
  }
  
  .news-card-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .news-card-item a {
    flex: 1;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s;
    word-break: break-word;
  }
  
  .news-card-item a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .news-card-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-left: 12px;
  }
  
  /* --- 绉诲姩绔€傞厤 --- */
  @media screen and (max-width: 992px) {
    .news-cards-content {
      flex-direction: column;
      gap: 16px;
      padding: 0 20px;
    }
  
    .news-card {
      padding: 16px;
    }
  }
  