
.touch-downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 20px; }
.touch-download-card { display: flex; align-items: center; padding: 16px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; text-decoration: none !important; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.touch-download-card:hover { border-color: #cbd5e1; box-shadow: 0 4px 6px rgba(0,0,0,0.06); transform: translateY(-2px); }
.touch-download-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; margin-inline-end: 16px; flex-shrink: 0; color: var(--touch-vdd-primary, #ff6600); background: var(--touch-vdd-icon-bg, rgba(255, 102, 0, 0.08)); }
.touch-download-info { display: flex; flex-direction: column; overflow: hidden; flex-grow: 1; }
.touch-download-title { color: #1e293b; font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.touch-download-subtitle { color: #64748b; font-size: 12px; }
.touch-action-icon { opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: center; color: var(--touch-vdd-primary, #ff6600); }
.touch-download-card:hover .touch-action-icon { opacity: 1; }
