.page-downloads-list .downloads-list-body {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.download-card:hover {
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

.download-card__icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    border-radius: 10px;
    background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    font-size: 1.15rem;
}

.download-card__icon span {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.download-card__main {
    flex: 1;
    min-width: 0;
}

.download-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.download-card__summary {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.download-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.45rem;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.download-card__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.download-card__btn:hover {
    background: #1d4ed8;
    color: #fff;
}

@media (max-width: 767.98px) {
    .download-card {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .download-card__btn {
        width: 100%;
        justify-content: center;
    }
}
