.touch-youtube-links,
.touch-page-links {
    margin-bottom: 24px;
}

.touch-downloads-grid {
    --touch-vdd-primary: #ff6600;
    --touch-vdd-icon-bg: rgba(255, 102, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 16px;
    margin-top: 20px;
}

.touch-download-card {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-decoration: none !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.touch-download-card:hover,
.touch-download-card:focus-visible {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.touch-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-inline-end: 16px;
    border-radius: 8px;
    background: var(--touch-vdd-icon-bg);
    color: var(--touch-vdd-primary);
    flex: 0 0 auto;
}

.touch-download-icon svg,
.touch-action-icon svg {
    display: block;
}

.touch-download-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.touch-download-title {
    margin-bottom: 2px;
    overflow: hidden;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.touch-download-subtitle {
    color: #64748b;
    font-size: 12px;
}

.touch-action-icon {
    display: flex;
    align-items: center;
    margin-inline-start: 12px;
    color: var(--touch-vdd-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
    flex: 0 0 auto;
}

.touch-download-card:hover .touch-action-icon,
.touch-download-card:focus-visible .touch-action-icon {
    opacity: 1;
}

@media (hover: none) {
    .touch-action-icon {
        opacity: 1;
    }
}
