/* bk_c_list_download.css */
.download-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
  }
  .download-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .download-item {
    margin-bottom: 24px;
  }
  .download-item .news-date {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
  }
  .download-item .news-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
  }
  .download-link {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    margin-bottom: 8px;
    transition: background 0.2s;
  }
  .download-link:hover {
    background: #eef;
  }
  .download-icon {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #007bff;
  }
  .file-name {
    flex: 1;
  }
  .file-size {
    font-size: 0.9rem;
    color: #555;
    margin-left: 12px;
  }
  @media (max-width: 576px) {
    .download-link {
      flex-direction: column;
      align-items: flex-start;
    }
    .file-size {
      margin-left: 0;
      margin-top: 6px;
    }
  }
  .news-link {
    display: inline-block;
    padding: 6px 24px 6px 12px;   /* 上右下左：多留 24px 給箭頭 */
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;            /* 讓 ::after 參考此定位 */
    transition: background 0.2s;
  }
  
  .news-link::after {
    content: '➔';
    position: absolute;
    top: 50%;
    right: 8px;                    /* 箭頭距右邊 8px */
    transform: translateY(-50%);
    font-size: 1rem;
    color: #fff;
  }
  
  .news-link:hover {
    background: #0056b3;
  }
  