/* ===== Download Page — page-download.css ===== */

.download_list_wrapper { display: flex; flex-direction: column; gap: 15px; }

.dl_card { display: flex; align-items: center; justify-content: space-between; background: #fff; padding: 25px; border-radius: 12px; border: 1px solid #eee; box-shadow: var(--shadow-card); transition: all 0.3s ease; }
.dl_card:hover { transform: translateX(6px); border-color: rgba(2, 160, 225, 0.35); box-shadow: var(--shadow-card-hover); }

.dl_info_wrap { display: flex; align-items: center; gap: 20px; }
.dl_icon { width: 56px; height: 56px; background: rgba(2, 160, 225, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 26px; }
.dl_text h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.dl_meta { font-size: 13px; color: #888; display: flex; gap: 15px; align-items: center; }
.dl_meta i { margin-right: 4px; color: #bbb; }

.dl_btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px; background: #f4f6f9; color: var(--primary-blue); font-weight: 700; font-size: 14px; border-radius: 8px; text-decoration: none; transition: 0.3s; white-space: nowrap; flex-shrink: 0; }
.dl_card:hover .dl_btn { background: var(--primary-gradient); color: #fff; box-shadow: var(--shadow-btn); }

.dl_cta_bar { display: flex; align-items: center; justify-content: space-between; background: var(--primary-blue-light); border: 1px solid rgba(2,160,225,0.2); border-radius: 10px; padding: 14px 22px; margin-bottom: 24px; font-size: 14px; color: #555; }
.dl_cta_bar i { margin-right: 6px; color: var(--primary-blue); }
.dl_cta_bar a { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-blue); color: #fff; padding: 8px 18px; border-radius: 7px; font-weight: 700; text-decoration: none; font-size: 14px; transition: 0.2s; }
.dl_cta_bar a:hover { filter: brightness(1.1); }

@media (max-width: 768px) {
  .dl_cta_bar { flex-direction: column; gap: 12px; text-align: center; }
  .dl_cta_bar a { width: 100%; justify-content: center; }
  .dl_card { flex-direction: column; align-items: flex-start; gap: 18px; }
  .dl_btn { width: 100%; justify-content: center; }
  .dl_card:hover { transform: none; }
}
